/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0056b3;
    --dark-blue: #003d82;
    --accent-blue: #007bff;
    --light-blue: #e3f2fd;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
    margin: 0;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

section {
    padding: 80px 0;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* iframe helpers */
iframe {
    width: 100%;
    border: none;
    display: block;
}

.header-iframe {
    height: 150px;
    position: relative;
    z-index: 1000;
}

.footer-iframe {
    height: 620px;
}

/* Header / Navigation */
header {
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 25px;
}

.top-left a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.top-left a i {
    color: var(--white);
    font-size: 14px;
}

.top-left a:hover {
    color: var(--light-blue);
}

.top-right {
    display: flex;
    gap: 15px;
}

.top-right a {
    color: var(--white);
    font-size: 17px;
    transition: var(--transition);
}

.top-right a:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
}

/* --- GLOBAL MOBILE NAV RESET (SHUT OFF ON DESKTOP) --- */
.mobile-toggle-input,
.nav-toggle,
.mobile-label {
    display: none;
}

/* --- HEADER STYLES --- */
.main-header {
    background-color: var(--white);
    padding: 12px 0;
    border-bottom: 3px solid var(--primary-blue);
}

.main-header .container,
.top-bar .container {
    max-width: 100% !important;
    padding: 0 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    margin-left: 80px;
}

.logo-main {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-a {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    font-style: italic;
    margin-right: -2px;
}

.logo-icon-wrap {
    margin-bottom: 8px;
    margin-right: 4px;
}

.logo-icon {
    font-size: 18px;
    color: var(--primary-blue);
}

.logo-text {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-blue);
}

.logo-text .yellow {
    color: var(--primary-blue);
}

.logo-footer {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-top: -5px;
    text-transform: uppercase;
}

.logo-footer .yellow {
    color: var(--white);
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--dark-blue);
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    color: var(--light-blue);
}


.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-links li a {
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-blue);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a i {
    font-size: 11px;
    opacity: 0.8;
}

/* Auth Buttons */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.nav-btn-signin {
    padding: 7px 18px !important;
    border: 1.5px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
}

.nav-btn-signin::after {
    display: none !important;
}

.nav-btn-signin:hover {
    background-color: var(--light-blue);
}

.nav-btn-signup {
    padding: 8px 20px !important;
    background-color: var(--primary-blue);
    color: white !important;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.nav-btn-signup::after {
    display: none !important;
}

.nav-btn-signup:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.3);
}

@media (max-width: 991px) {
    .nav-auth {
        flex-direction: column;
        width: 100%;
        padding: 20px 30px;
        margin-left: 0;
        gap: 15px;
    }

    .nav-btn-signin,
    .nav-btn-signup {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   REPLACE the entire "Multi-level Dropdown Logic" section in your 
   global.css with this block. Everything else stays the same.
   ========================================================================== */

/* ---- DESKTOP DROPDOWN BASE ---- */
.dropdown {
    position: relative;
}

/* Both flat and nested share the same dropdown-menu base styles */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border-top: 3px solid var(--primary-blue);
    list-style: none;
    padding: 8px 0;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* DESKTOP: Show on hover for NESTED dropdowns */
.dropdown:not(.flat-nav-item):hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DESKTOP: Show flat dropdown on hover too */
.flat-nav-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---- DROPDOWN MENU ITEMS (shared) ---- */
.dropdown-menu li {
    position: relative;
    width: 100%;
}

.dropdown-menu li a {
    color: var(--primary-blue) !important;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: background 0.2s, padding-left 0.2s;
    white-space: nowrap;
}

/* Remove the underline animation from nav for dropdown items */
.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background-color: var(--light-blue);
    color: var(--dark-blue) !important;
    padding-left: 26px;
}

/* ---- FLAT DROPDOWN: no caret-right, no submenu ---- */
.flat-dropdown li a {
    justify-content: flex-start;  /* no space-between since no arrow */
    gap: 8px;
}

.flat-dropdown li a i {
    display: none;  /* hide any accidental caret icons */
}

/* ---- NESTED DROPDOWN: second level submenu ---- */
.has-submenu {
    position: relative;
}

.has-submenu > .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 240px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border-top: 3px solid var(--primary-blue);
    list-style: none;
    padding: 8px 0;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Submenu items */
.submenu li a {
    color: var(--primary-blue) !important;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    display: block;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, padding-left 0.2s;
}

.submenu li a::after {
    display: none !important;
}

.submenu li a:hover {
    background-color: var(--light-blue);
    color: var(--dark-blue) !important;
    padding-left: 26px;
}


/* ==========================================================================
   MOBILE NAV (max-width: 991px) — full sidebar with accordion dropdowns
   ========================================================================== */
@media (max-width: 991px) {

    .mobile-toggle-input {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
        font-size: 22px;
        color: var(--dark-blue);
        cursor: pointer;
        z-index: 10001;
        padding: 10px 13px;
        background-color: var(--light-blue);
        border-radius: 8px;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-toggle:hover {
        background-color: var(--primary-blue);
        color: white;
    }

    /* Sidebar */
    .nav-links {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: var(--dark-blue);
        flex-direction: column !important;
        padding: 80px 0 30px 0;
        gap: 0 !important;
        transition: right 0.35s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 10000;
        overflow-y: auto;
        display: flex !important;
    }

    /* Show sidebar when main toggle is checked */
    #nav-toggle-check:checked ~ .nav-links {
        right: 0;
    }

    /* Top-level nav items */
    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .nav-links > li > a {
        padding: 14px 25px !important;
        color: white !important;
        font-size: 14px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
    }

    .nav-links > li > a:hover {
        background-color: rgba(255,255,255,0.08);
        color: var(--light-blue) !important;
    }

    /* Mobile label overlays for accordion toggle */
    .mobile-label {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 48px;
        cursor: pointer;
        z-index: 10;
    }

    /* Don't block clicks inside submenu */
    .submenu .mobile-label,
    .dropdown-menu li:not(.has-submenu) .mobile-label {
        display: none !important;
    }

    /* Dropdown/submenu: hidden by default on mobile */
    .dropdown-menu,
    .submenu {
        position: static !important;
        width: 100% !important;
        min-width: unset !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        border-top: none !important;
        background: rgba(0,0,0,0.2) !important;
        padding: 0 !important;
    }

    /* Show dropdown when radio/checkbox is checked */
    .mobile-toggle-input:checked ~ .dropdown-menu,
    .mobile-toggle-input:checked ~ .submenu {
        display: block !important;
    }

    /* Dropdown items on mobile */
    .dropdown-menu li a {
        padding: 12px 20px 12px 35px !important;
        color: rgba(255,255,255,0.85) !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        white-space: normal !important;
        background: transparent !important;
        justify-content: space-between;
    }

    .dropdown-menu li a:hover {
        background-color: rgba(255,255,255,0.08) !important;
        color: white !important;
        padding-left: 35px !important;
    }

    /* Submenu items on mobile */
    .submenu li a {
        padding: 11px 20px 11px 50px !important;
        color: rgba(255,255,255,0.75) !important;
        font-size: 12px !important;
        background: transparent !important;
        white-space: normal !important;
    }

    .submenu li a:hover {
        color: white !important;
        background-color: rgba(255,255,255,0.08) !important;
        padding-left: 50px !important;
    }

    /* Make all links in dropdowns clickable on mobile */
    .dropdown-menu li a,
    .submenu li a,
    .flat-dropdown li a {
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    /* Flat dropdown on mobile — same as nested dropdown items */
    .flat-dropdown li a {
        padding: 12px 20px 12px 35px !important;
        color: rgba(255,255,255,0.85) !important;
        justify-content: flex-start !important;
        font-size: 13px !important;
    }

    .flat-dropdown li a i {
        display: none !important;
    }
}


/* Hero Section */
.hero-section {
    background-color: var(--dark-blue);
    padding: 80px 0;
    color: var(--white);
    margin-top: -20px;
    /* Moves the section up */
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-form-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    flex: 1;
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
    /* Shifted down as requested */
}

.form-inputs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.form-inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
    font-family: inherit;
}

.consult-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.consult-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.hero-content .hero-button {
    width: auto;
    padding: 10px 24px;
    max-width: 200px;
    display: inline-flex;
    justify-content: center;
    margin: 35px auto 0;
}


.hero-content {
    flex: 1.2;
    text-align: center;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.hero-content h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
    text-align: center;
}

.hero-content h3 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

/* Pricing Strip */
.pricing-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -40px;
    gap: 20px;
}

.pricing-box {
    background-color: var(--primary-blue);
    padding: 22px 25px;
    border-radius: 8px;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin: 0 auto;
}

.pricing-box h4 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-box p {
    font-size: 13.5px;
    color: var(--light-blue);
    font-weight: 700;
}

/* Service Headings */
.section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 35px;
    margin-top: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-blue);
}

/* Know Our Services */
.know-services {
    padding-bottom: 60px;
}

.services-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.services-img {
    flex: 1;
}

.services-img img {
    width: 100%;
    border-radius: 12px;
}

.services-list {
    flex: 1;
}

.service-check-list {
    list-style: none;
}

.service-check-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
    cursor: pointer;
}

.service-check-list li a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
}

.service-check-list li:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

/* Affiliate Steps */
.affiliate-steps {
    padding: 60px 0;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.affiliate-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.affiliate-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-blue);
    display: grid;
    place-items: center;
    font-size: 24px;
}

.affiliate-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 0;
}

.affiliate-step {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.affiliate-card p {
    color: #555;
    line-height: 1.8;
    flex-grow: 1;
}

@media (max-width: 900px) {
    .affiliate-grid {
        grid-template-columns: 1fr;
    }
}

/* Best Plans Slider */
.best-plans {
    padding-bottom: 0;
}

.plans-static-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.plans-viewport {
    max-width: 1100px;
    /* Show cards in a row, allow horizontal scroll on smaller screens */
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 10px;
}

.plans-slider-wrapper {
    display: flex;
    width: 100%;
    gap: 30px;
    padding: 20px 0;
    justify-content: center;
    scroll-snap-type: x mandatory;
}

.plans-slider-wrapper>.plan-card {
    scroll-snap-align: start;
}

.plan-card {
    border: 1px solid #e0f2f1;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    background: white;
    width: 340px;
    /* Balanced card width */
    flex-shrink: 0;
    box-sizing: border-box;
}

.plan-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    background-color: var(--light-blue);
}

.plan-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    min-height: 44px;
}

.plan-price {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 14px;
    font-weight: 400;
    color: #0b0b0b;
}
/* DELETE OR COMMENT THIS OUT */
.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    min-height: 180px;
}

.plan-features li {
    padding: 6px 0 6px 20px;
    font-size: 13.5px;
    color: #080808;
    position: relative;
}

.plan-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.plan-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.plan-btn:hover {
    background-color: var(--dark-blue);
    color: white;
}

/* Banking Partner Slider */
.banking-partners {
    padding-bottom: 60px;
    overflow: hidden;
}

.partners-viewport {
    width: 100%;
    margin: 0 auto;
}

.partners-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    justify-content: space-between;
}

.partners-slider-wrapper img {
    height: 75px;
    /* Increased from 50px */
    width: auto;
    max-width: 220px;
    /* Increased from 180px */
}

.partner-pill {
    min-width: 180px;
    padding: 20px 18px;
    background: #ffffff;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    color: var(--primary-blue);
    font-weight: 700;
}


/* Testimonials (Revised) */
.testimonials-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.testi-summary-bar {
    background: white;
    padding: 12px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    margin: 0 auto 50px;
    display: flex;
    max-width: 1060px;
    /* Wider to match image proportion */
    justify-content: space-between;
    /* To separate content and google logo */
    align-items: center;
}

.google-logo-sm {
    width: 22px;
    opacity: 0.8;
}

.summary-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-left .stars {
    color: #ffc107;
    font-size: 15px;
    display: flex;
    gap: 4px;
}

.rating-num {
    font-weight: 800;
    /* Bold black */
    font-size: 17px;
    color: #000;
}

.review-count {
    color: #999;
    /* Light gray */
    font-size: 12px;
}

.testi-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #444;
    /* Darker like in image */
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow.prev {
    left: -50px;
}

.slider-arrow.next {
    right: -50px;
}

.slider-arrow:hover {
    color: var(--primary-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-stars {
    color: #ffc107;
    font-size: 12px;
}

.testi-time {
    color: #888;
    font-size: 11px;
    margin-left: 8px;
    font-weight: 400;
}

.google-logo {
    width: 20px;
}

.testi-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.avatar.pink {
    background-color: #d81b60;
}

.avatar.brown {
    background-color: #8d6e63;
}

.avatar.purple {
    background-color: #7e57c2;
}

.user-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a237e;
    /* Navy blue from image */
}

.testi-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pagination-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50%;
}

.dot.active {
    width: 8px;
    height: 8px;
    background-color: #5c6bc0;
}

.page-info {
    font-size: 12px;
    color: #888;
}

/* Recent Blogs */
.recent-blogs-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition);

}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card h4 {
    margin-bottom: 12px;
    color: #090909;
    font-size: 18px;
}

.blog-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* Difference Section Slider (One-by-One Focused) */
.difference-section {
    padding: 80px 0 30px 0;
    text-align: center;
}

.difference-section .accent-line {
    width: 50px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: -10px auto 20px;
}

.difference-section .section-subtext {
    margin-bottom: 50px;
    color: #777;
    font-size: 14px;
}

.diff-slider-viewport {
    max-width: 1300px;
    /* Width for 3 cards + gaps */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.diff-slider-wrapper {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: diffSlideThreeAtOnce 25s infinite;
    padding: 20px 0;
}

.diff-slider-wrapper:hover {
    animation-play-state: paused;
}

@keyframes diffSlideThreeAtOnce {

    /* 0% to 18% - Cards 1, 2, 3 visible */
    0%,
    18% {
        transform: translateX(0);
    }

    /* 20% to 38% - Cards 2, 3, 4 visible (Shift by 1 card: 400 + 40 = 440px) */
    20%,
    38% {
        transform: translateX(-440px);
    }

    /* 40% to 58% - Cards 3, 4, 5 visible */
    40%,
    58% {
        transform: translateX(-880px);
    }

    /* 60% to 78% - Cards 4, 5, 1 visible */
    60%,
    78% {
        transform: translateX(-1320px);
    }

    /* 80% to 98% - Cards 5, 1, 2 visible */
    80%,
    98% {
        transform: translateX(-1760px);
    }

    /* 100% - Loop back smoothly */
    100% {
        transform: translateX(-2200px);
    }
}

.diff-card {
    background: white;
    width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: left;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.diff-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.diff-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.diff-card-content {
    padding: 25px;
}

.diff-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
}

.diff-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.diff-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.diff-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
}

.diff-dots .dot.active {
    background-color: var(--primary-blue);
}

/* Contact Section with Overlap */
.contact-section {
    position: relative;
    padding: 40px 0 80px;
    background-color: #fafafa;
}

.contact-card {
    display: flex;
    max-width: 1100px;
    margin: 0 auto 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
}

.contact-info-panel {
    background-color: var(--primary-blue);
    padding: 60px 45px;
    width: 38%;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text strong {
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
    color: var(--light-blue);
}

.contact-text p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form-panel {
    padding: 60px 50px;
    width: 62%;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form .form-group,
.contact-form .form-row {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    background-color: #fcfcfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.05);
}

.form-btn-wrapper {
    text-align: left;
    margin-top: 20px;
}

.contact-submit {
    background-color: var(--primary-blue);
    color: white;
    padding: 14px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.contact-submit:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
}

/* Footer & Media Queries (Restored) */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--white);
}

.footer-list li a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-list li a:hover {
    color: var(--light-blue);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.contact-info .info-block {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--white);
}

.policy-text a {
    color: var(--light-blue);
}

/* Sitemap / Map Page Styles */
.map-hero {
    background-color: var(--primary-blue);
    padding: 80px 0;
    color: white;
    min-height: calc(100vh - 800px);
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
}

.map-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.map-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-list li {
    margin-bottom: 12px;
    font-size: 14px;
}

.map-list li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.map-list li a:hover {
    color: var(--light-blue);
}

/* Service Page Hero (common-dropdown) */
.service-hero {
    background-color: var(--primary-blue);
    padding: 60px 0;
    color: white;
}

.service-hero-flex {
    display: flex;
    align-items: center;
    gap: 100px;
}

.service-form-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 460px;
    color: #333;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.service-form-card .form-group {
    margin-bottom: 15px;
}

.service-form-card input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.service-form-card input:focus {
    border-color: var(--primary-blue);
}

.btn-consult {
    width: 100%;
    display: block;
    margin: 10px auto 15px;
    padding: 12px 25px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-consult:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.contact-wa {
    text-align: center;
    font-size: 14px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

.contact-wa i {
    font-size: 22px;
    color: #25D366;
    /* WhatsApp Green */
}

.service-title-info {
    flex: 1;
}

.service-title-info h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
}

.service-title-info p {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

/* Service Steps Section (Section 3) */
.service-steps {
    padding: 0 0 60px 0;
    background-color: #ffffff;
}

.steps-flex {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.steps-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.steps-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.mini-consultation-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    background-color: #fff;
    outline: none;
    transition: var(--transition);
}

.mini-consultation-form input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
}

.price-highlight {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 25px 0;
    display: block;
}

.btn-consult-mini {
    width: 100%;
    max-width: 280px;
    padding: 14px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-consult-mini:hover {
    background-color: #00695c;
    transform: translateY(-2px);
}

.contact-wa-mini {
    margin-top: 20px;
    font-size: 14px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    width: 100%;
    max-width: 280px;
}

.contact-wa-mini i {
    font-size: 22px;
    color: #25D366;
}

/* Accordion Styles */
.steps-accordion-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-blue);
}

.accordion-header {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    color: #333;
}

.accordion-header i {
    font-size: 16px;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

/* Open states for native details/summary */
details[open] .accordion-header {
    color: var(--primary-blue);
}

details[open] .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 30px 22px 30px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

.accordion-content ol,
.accordion-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove default details arrow */
details summary::-webkit-details-marker {
    display: none;
}

details summary {
    list-style: none;
    outline: none;
}

/* Response Section for mobile */
@media (max-width: 900px) {
    .steps-flex {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps-form-area {
        text-align: center;
    }

    .steps-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-consult-mini,
    .contact-wa-mini {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Service FAQ Section (Section 4) */
.service-faq {
    padding: 40px 0 0 0;
}

.faq-main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #0b0b0b;
    background-color: #e5e0e0;
}

.faq-desc-block {
    margin-bottom: 40px;
}

.faq-desc-block h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.faq-desc-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 1000px;
}

.faq-flex {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.faq-title {
    font-size: 38px;
    font-weight: 100;
    color: #333;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .faq-flex {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-title-area {
        text-align: center;
    }
}

/* ==========================================================================
   Responsive Design (Consolidated at Bottom)
   ========================================================================== */

/* Tablet & Smaller Laptops (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .pricing-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -20px;
    }

    .services-flex {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .partners-slider-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 36px;
    }

    .partners-slider-wrapper img {
        max-width: 180px;
        height: 60px;
    }

    .testimonials-grid,
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        flex-direction: column;
    }

    .contact-info-panel,
    .contact-form-panel {
        width: 100%;
        padding: 40px;
    }

    .footer-grid,
    .map-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* common-dropdown responsiveness */
    .service-hero-flex {
        flex-direction: column-reverse;
        gap: 50px;
        text-align: center;
    }

    .service-title-info h1 {
        font-size: 38px;
    }

    .service-title-info p {
        font-size: 20px;
    }

    .service-form-card {
        margin: 0 auto;
    }

    .plans-static-grid {
        gap: 20px;
    }

    .steps-flex,
    .faq-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-form-area,
    .faq-title-area {
        text-align: center;
    }

    .steps-desc,
    .faq-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-consult-mini,
    .contact-wa-mini {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Phones & Tablets (768px) */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .top-bar {
        display: none;
        /* Hide top bar on mobile to save space */
    }

    .header-iframe {
        height: 100px;
        margin-bottom: 0;
    }

    /* If the nav-links are too long, stack them or hide */
    .nav-links {
        display: none;
        /* Usually a hamburger menu would go here */
    }

    .logo-a {
        font-size: 36px;
    }

    .logo-text {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .pricing-strip {
        grid-template-columns: 1fr;
    }

    .partners-slider-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .partners-slider-wrapper img {
        max-width: 140px;
        height: 50px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        z-index: 9999;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        /* Stronger shadow on white */
    }

    .nav-links li a {
        color: #333333;

    }

    /* --- PURE CSS MOBILE NAVIGATION (NO JS) --- */
    @media (max-width: 991px) {

        /* Hide the standard checkbox inputs globally */
        .mobile-toggle-input {
            display: none !important;
        }

        .nav-toggle {
            display: flex;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            z-index: 10001;
            padding: 12px 15px;
            background-color: var(--dark-blue);
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 77, 64, 0.3);
        }

        .nav-toggle:hover {
            background-color: var(--primary-blue);
            box-shadow: 0 6px 16px rgba(0, 86, 179, 0.4);
            transform: translateY(-2px);
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--dark-blue);
            flex-direction: column;
            padding-top: 80px;
            gap: 0;
            transition: 0.4s ease-in-out;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            overflow-y: auto;
            display: flex !important;
            border-left: 4px solid var(--primary-blue);
        }

        /* Show Sidebar when main toggle checked */
        #nav-toggle-check:checked~.nav-links {
            right: 0;
        }

        .nav-links li {
            width: 100%;
            position: relative;
        }

        .nav-links li:hover {
            background-color: rgba(0, 109, 90, 0.08);
        }

        .nav-links li.has-submenu {
            position: relative;
        }

        /* Style for submenu parent items */
        .nav-links li.has-submenu>a {
            pointer-events: none;
            color: #fff !important;
        }

        .nav-links li a {
            padding: 15px 30px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            color: white !important;
            transition: var(--transition);
        }

        .nav-links li a:hover {
            color: var(--primary-green) !important;
            font-weight: 600;
        }

        /* Mobile-Only Labels that toggle dropdowns */
        .mobile-label {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            background: rgba(0, 0, 0, 0);
            display: block;
        }

        /* Don't block clicks on submenu items */
        .submenu .mobile-label {
            display: none;
        }

        /* Only apply label overlay to has-submenu items, not to submenu */
        .has-submenu>.mobile-label {
            height: 50px;
            z-index: 10;
        }

        /* Make dropdown links not clickable on mobile, let label handle toggle */
        .dropdown>a,
        .has-submenu>a {
            pointer-events: none;
        }

        /* Ensure labels are clickable */
        .mobile-label {
            pointer-events: auto;
        }

        /* Allow clicks on submenu items - OVERRIDE parent restrictions */
        .submenu li {
            pointer-events: auto !important;
            position: relative;
            z-index: 5;
        }

        .submenu li a {
            pointer-events: auto !important;
            display: block;
            cursor: pointer;
        }

        /* Ensure dropdown menu items are clickable on mobile */
        .dropdown-menu li:not(.has-submenu) a {
            pointer-events: auto !important;
            color: #fff !important;
        }

        /* Style for dropdown items without submenus */
        .dropdown-menu li:not(.has-submenu) a:hover {
            background-color: rgba(0, 109, 90, 0.2);
            color: var(--accent-yellow) !important;
        }

        /* Menus hidden by default */
        .dropdown-menu,
        .submenu {
            position: static !important;
            width: 100% !important;
            display: none !important;
            box-shadow: none !important;
            padding-left: 15px;
            background: var(--dark-blue);
            opacity: 1 !important;
            visibility: hidden !important;
            transform: none !important;
            top: auto !important;
            left: auto !important;
        }

        /* Dropdown menu items (parent category items) */
        .dropdown-menu li.has-submenu a {
            color: #fff !important;
            padding: 15px 30px;
        }

        .dropdown-menu li.has-submenu a:hover {
            background-color: rgba(0, 109, 90, 0.2);
            color: var(--accent-yellow) !important;
        }

        /* Sub-menu specific color for depth */
        .submenu {
            background: var(--primary-blue) !important;
            padding-left: 20px;
        }

        .submenu li {
            width: 100%;
        }

        .submenu li a {
            display: block;
            padding: 12px 15px;
            color: var(--white) !important;
            font-weight: 500;
            transition: var(--transition);
            pointer-events: auto !important;
            cursor: pointer !important;
            text-decoration: none;
        }

        .submenu li a:hover {
            background-color: rgba(0, 109, 90, 0.1);
            font-weight: 600;
        }

        /* Toggle visibility via checkbox */
        .mobile-toggle-input:checked~.dropdown-menu,
        .mobile-toggle-input:checked~.submenu {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        /* Submenu nested within dropdown-menu */
        .has-submenu input[type="checkbox"]:checked~.submenu {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .dropdown-menu li a,
        .submenu li a {
            pointer-events: auto !important;
        }

        .dropdown-menu li:not(.has-submenu) a {
            pointer-events: auto !important;
            cursor: pointer !important;
        }

        .mobile-toggle-input:checked+a i,
        .mobile-toggle-input:checked+label+a i {
            transform: rotate(180deg);
        }
    }

    @media (max-width: 768px) {
        .nav-toggle {
            display: block;
        }
    }

    .testimonials-grid,
    .blogs-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-iframe {
        height: 1500px;
    }

    .footer-socials {
        justify-content: center;
    }

    .info-block {
        text-align: center;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 26px;
    }
}

/* Small Phones (480px) */
@media (max-width: 480px) {
    .map-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .plan-card,
    .diff-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-title-info h1 {
        font-size: 32px;
    }

    .plans-static-grid {
        grid-template-columns: 1fr;
    }
}

/* Terms Page Styling */
.terms-hero {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 50px;
}

.terms-hero h1 {
    font-size: 48px;
    font-family: 'Outfit', serif;
    margin-bottom: 15px;
    font-weight: 500;
}

.terms-hero p {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero strong {
    font-weight: 800;
    letter-spacing: 1px;
}

.terms-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.terms-content h3 {
    margin-top: 30px;
    color: var(--primary-blue);
}

/* ==== Terms, Privacy & Legal Pages Styling =====*/

/* Legal Page Hero Section */
.legal-page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 60px 30px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 30px;
}

.legal-page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.legal-page-hero p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

.legal-page-hero .subtitle-text {
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 1px;
    color: var(--light-blue);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px 20px 30px;
    background-color: #ffffff;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-content {
    background-color: #ffffff;
    padding: 0;
    border-radius: 0;
    line-height: 1.8;
}

.legal-content>p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    text-align: justify;
}

.legal-section {
    margin-bottom: 12px;
    padding: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    margin-top: 0;
}

.legal-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 8px 0;
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    margin: 10px 0;
    padding-left: 25px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 6px;
}

.legal-section strong {
    color: #333;
    font-weight: 700;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-page-hero {
        padding: 50px 20px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        margin-bottom: 20px;
    }

    .legal-page-hero h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .legal-page-hero p {
        font-size: 14px;
    }

    .content-wrapper {
        padding: 30px 20px 40px 20px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .legal-section h2 {
        font-size: 17px;
    }

    .legal-section p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .legal-page-hero {
        padding: 40px 15px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .legal-page-hero h1 {
        font-size: 24px;
    }

    .legal-page-hero p {
        font-size: 13px;
    }

    .content-wrapper {
        padding: 30px 15px 50px 15px;
    }

    .page-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .legal-section h2 {
        font-size: 15px;
    }

    .legal-section p,
    .legal-section ul,
    .legal-section ol {
        font-size: 12px;
    }
}

/* Contact Section Styles */
.contact-section {
    background-color: #fafafa;
    padding: 40px 0 80px 0;
}

.contact-section .section-heading {
    margin-bottom: 60px;
}

.contact-container {
    max-width: 1300px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 15px;
    padding: 35px 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    color: var(--light-blue);
}

.contact-info-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--light-blue);
}

.contact-info-text p {
    font-size: 13px;
    opacity: 0.95;
    line-height: 1.5;
    color: white;
}

.contact-form-box {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: var(--transition);
    background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
    margin-top: 5px;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-content {
        gap: 40px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-box {
        padding: 30px 20px;
        gap: 20px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-item {
        gap: 15px;
    }

    .contact-submit-btn {
        width: 100%;
        align-self: center;
    }
}


/* Flat dropdown — no submenu arrow, items just stack directly */
.flat-dropdown li a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
    color: #003399; /* match your nav link color */
    font-weight: 500;
    transition: background 0.2s;
}

.flat-dropdown li a:hover {
    background-color: #f0f4ff;
    color: #001f7a;
}


