/* 
 * Main CSS for Debt Relief Hub
 * Primary Color: #1d543e
 * Typography: Inter (body), Outfit (headings)
 */

:root {
    --primary-color: #0f3f33; /* Dark green */
    --primary-light: #165b4a;
    --primary-dark: #092820;
    --accent-color: #d1f428; /* Neon yellow/lime */
    --accent-hover: #bce015;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-main: #ffffff;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --border-color: #eaeaea;
    
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 16px rgba(29, 84, 62, 0.08);
    --shadow-lg: 0 15px 30px rgba(29, 84, 62, 0.12);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    --container-width: 1200px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    /* overflow-x: hidden removed to prevent breaking sticky positioning */
}



h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--primary-dark);
}

img, picture, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 30px;
}

.text-center { text-align: center; }
.d-block { display: block; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 3rem; }
.p-4 { padding: 1.5rem; }
.text-sm { font-size: 0.85rem; color: var(--text-muted); }

/* Backgrounds */
.hero-bg-grid {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.grid-bg {
    background-color: var(--bg-main);
    background-image: 
        linear-gradient(rgba(29, 84, 62, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 84, 62, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Glass & Cards */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(209, 244, 40, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 244, 40, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

/* Header & Menu */
.site-header {
    background: var(--primary-color);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site {
    position: relative;
    width: 100%;
}

.site-header--scrolled {
    background: rgba(15, 63, 51, 0.95); /* Semi-transparent version of primary-color */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 15px 20px;
    position: relative;
    transition: padding 0.3s ease;
}

.site-header--scrolled .header-container {
    padding: 10px 20px;
}

.custom-logo-link img {
    max-height: 45px;
    width: auto;
    display: block;
}

.site-branding .logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-branding .logo span {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu > li > a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 10px 0;
}

.nav-menu > li > a:hover {
    color: var(--accent-color);
}

/* Mega Menu */
.has-mega-menu {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.mega-card {
    padding: 20px;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.mega-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.mega-card i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mega-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.mega-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.text-link {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    padding: 0;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    position: absolute;
    left: 3px;
    top: 14px;
    transition: background 0.2s ease-out;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: currentColor;
    transition: all 0.2s ease-out;
    left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-menu-toggle.active .hamburger { background: transparent; }
.mobile-menu-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.mobile-menu-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }

/* Hero Section */
.hero-section {
    padding: 120px 0 140px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.trust-badge-top {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
}

.trust-badge-top i {
    color: var(--accent-color);
}

.hero-text h1 {
    font-size: 4.2rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-text h1 span {
    color: var(--accent-color);
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark);
    margin-left: -15px;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    margin-left: -15px;
    border: 2px solid var(--primary-dark);
    position: relative;
    z-index: 10;
}

.trust-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-lg);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    margin-left: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.trust-card h4 {
    color: var(--white);
    margin: 0 0 5px 0;
    font-size: 16px;
}

.trust-card p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bounce-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Services */
.services-overview {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.service-card.highlighted {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(1.02);
}

.service-card.highlighted h3, .service-card.highlighted p {
    color: var(--white);
}

.service-card.highlighted .service-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.service-card.highlighted .text-link {
    color: var(--accent-color);
}

.service-card.highlighted::before {
    content: 'Recommended';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
}

.steps-container {
    grid-template-columns: repeat(4, 1fr);
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -25%;
    width: 50%;
    height: 2px;
    background: var(--border-color);
    border-top: 2px dashed var(--primary-light);
}

.step-item:last-child::after {
    display: none;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-item h3 {
    font-size: 18px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Lead Form */
.lead-form-section {
    padding: 100px 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 6px;
    background: var(--bg-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.progress-steps-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-steps-label span.active {
    color: var(--primary-color);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
select, textarea,
.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    background: #f7f9f8;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    color: var(--primary-dark);
}

input:focus, select:focus, textarea:focus, .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(209, 244, 40, 0.2);
    transform: translateY(-1px);
}

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-btn {
    flex: 1;
    min-width: 120px;
    padding: 18px 10px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    background: var(--white);
    transition: all 0.2s ease;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 15px;
}

.radio-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.radio-btn input {
    display: none;
}

.radio-btn.selected {
    background: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

/* Modern Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin: 30px 0;
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    background: var(--white);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
}

.comparison-table th:first-child { border-top-left-radius: 12px; }
.comparison-table th:last-child { border-top-right-radius: 12px; }

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--bg-light); }

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}
.badge-success { background: #e8f5e9; color: #2e7d32; }
.badge-danger { background: #ffebee; color: #c62828; }

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.privacy-note {
    margin-top: 15px;
    text-align: center;
    color: var(--text-muted);
}

/* Page Templates */
.page-hero {
    padding: 80px 0;
}

.page-hero-inner {
    max-width: 780px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.page-hero h1 span {
    color: var(--accent-color);
}

.page-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--white);
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.hero-trust-row span i {
    color: var(--accent-color);
    margin-right: 6px;
}

/* Stats Strip */
.stats-strip {
    background: var(--primary-dark);
    padding: 40px 0;
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Items */
.faq-item {
    border-radius: var(--border-radius);
    background: var(--bg-light);
    margin-bottom: 15px;
    padding: 25px;
}

.faq-q {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.faq-q i {
    color: var(--primary-color);
    margin-right: 8px;
}

.faq-a {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-trust-row {
        gap: 15px;
    }
    .hero-cta-group {
        flex-direction: column;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
}

.content-container {
    grid-template-columns: 2.5fr 1fr;
    padding: 60px 20px;
}

.seo-longform {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.seo-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.seo-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.seo-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

.benefits-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefits-list li {
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 16px;
    color: var(--text-main);
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 15px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.seo-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.seo-content ul:not(.benefits-list) {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style: disc;
}

.in-content-cta {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
}

/* Timeline */
.process-timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-light);
}

/* Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all 0.2s ease;
}

.sidebar-links li a i {
    color: var(--primary-color);
    font-size: 12px;
    transition: transform 0.2s ease;
}

.sidebar-links li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.sidebar-links li a:hover i {
    transform: translateX(4px);
}

/* Requirement Cards */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0 35px 0;
}

.requirement-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.req-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.req-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.req-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: #dfdfdf;
    padding-top: 80px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto 60px auto;
    padding: 0 20px;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    align-items: start;
    gap: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
}

.footer-col ul {
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-col a {
    color: #dfdfdf;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.brand-col .logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.brand-col .logo span {
    color: var(--accent-color);
}

.trust-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.legal-links a {
    color: #aaa;
    margin-left: 15px;
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

.floating-call-mobile {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content, .content-container {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .services-grid, .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .trust-card {
        margin: 0 auto;
    }
    
    .has-mega-menu {
        position: relative !important;
    }
    
    .mega-menu {
        position: static !important;
        display: none; 
        box-shadow: none;
        border: none;
        padding: 10px 0 0 0;
        background: transparent;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    
    .has-mega-menu:hover .mega-menu {
        display: block;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .mega-card {
        background: rgba(255,255,255,0.05);
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .mega-card h3 {
        color: var(--white);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        gap: 20px;
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu > li > a {
        color: var(--white);
        font-size: 1.1rem;
        display: block;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-cta .btn {
        display: none; /* hide top CTA unles hamburger used */
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services-grid, .steps-container, .footer-container, .form-row, .seo-longform, .content-container, .blog-grid {
        grid-template-columns: 1fr !important;
    }
    
    .floating-call-mobile {
        display: flex;
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .step-item::after { display: none; }
    
    .hero-text h1 { font-size: 2.2rem; }
    
    /* Responsive Buttons & Tap Targets */
    .btn {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-actions {
        flex-direction: column-reverse;
        gap: 15px;
    }
    
    .step-actions .btn {
        width: 100%;
        margin-left: 0 !important;
    }
}

/* Outline buttons on light backgrounds (Related Services, In-Content CTAs, Qualification Forms) */
.related-services-block .btn-outline,
.in-content-cta .btn-outline,
.multi-step-form .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.related-services-block .btn-outline:hover,
.in-content-cta .btn-outline:hover,
.multi-step-form .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

