.elementor-2984 .elementor-element.elementor-element-0b8b622{--display:flex;}.elementor-2984 .elementor-element.elementor-element-e1569dd{width:100%;max-width:100%;top:-2px;}body:not(.rtl) .elementor-2984 .elementor-element.elementor-element-e1569dd{left:2px;}body.rtl .elementor-2984 .elementor-element.elementor-element-e1569dd{right:2px;}/* Start custom CSS for html, class: .elementor-element-e1569dd *//* ==================== RESET & GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #374151;
    background-color: #FFFFFF;
    line-height: 1.5;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo-text, .nav-links a, .cta-button-contact, .office-city, .faq-question {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1A3C6E;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== GOOGLE FONTS IMPORT ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&family=Poppins:wght@400;500;600;700&display=swap');

/* ==================== RESET AND BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

/* ==================== HEADER BASE ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #1A3C6E;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

/* ==================== HEADER INNER ==================== */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 48px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ==================== BRAND IDENTITY ==================== */
.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    line-height: 1;
}

/* ==================== HAMBURGER BUTTON ==================== */
.menu-toggle-input {
    display: none;
}

.hamburger-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    z-index: 10001;
}

.hamburger-label span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation when menu is open */
input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translateY(7.5px);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7.5px);
}

/* ==================== MAIN NAV DESKTOP ==================== */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

/* Hide all sub-checkboxes on desktop */
input#services-toggle,
input#destinations-toggle,
input#company-toggle {
    display: none;
}

/* Nav Link Base */
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    color: #FFFFFF;
    padding: 8px 13px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
    white-space: nowrap;
    user-select: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Active state */
.nav-link.active {
    color: #F97316;
    font-weight: 600;
}

/* Dropdown label specific */
.dropdown-label {
    cursor: pointer;
}

/* Chevron styling */
.chevron {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease;
    margin-left: 2px;
    line-height: 1;
    transform: rotate(90deg);
}

/* ==================== DROPDOWN MENUS DESKTOP ==================== */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    min-width: 230px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Desktop hover to show dropdown */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Chevron rotation on hover */
.has-dropdown:hover .chevron {
    transform: rotate(-90deg);
}

/* Dropdown section label */
.dropdown-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 10px 20px 4px;
    pointer-events: none;
    display: block;
}

/* Dropdown menu items */
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    transition: all 0.15s;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: #EEF2FF;
    color: #2563EB;
    border-left-color: #F97316;
    padding-left: 23px;
}

/* ==================== CTA BUTTON ==================== */
.cta-button {
    background: #F97316;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 25px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    transition: all 0.25s;
    display: inline-block;
}

.cta-button:hover {
    background: #ea6c0a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.nav-cta {
    margin-left: 10px;
}

/* ==================== TABLET AND MOBILE BREAKPOINT (max-width 1023px) ==================== */
@media (max-width: 1023px) {
    .header-inner {
        padding: 0 20px;
        height: 64px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-tagline {
        font-size: 9.5px;
    }

    /* Show hamburger on tablet/mobile */
    .hamburger-label {
        display: flex;
    }

    /* Mobile nav panel - hidden by default */
    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #1A3C6E;
        z-index: 9998;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
    }

    /* Open menu when checkbox is checked */
    input#main-menu-toggle:checked ~ .main-nav {
        max-height: 100vh;
    }

    /* Mobile nav list styles */
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 8px 0 16px 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        font-size: 15px;
        padding: 14px 24px;
        width: 100%;
        justify-content: space-between;
        border-radius: 0;
    }

    /* CTA button in mobile menu */
    .nav-cta {
        margin-left: 0;
        padding: 16px 20px;
    }

    .cta-button {
        display: block;
        text-align: center;
        border-radius: 25px;
        padding: 13px 20px;
        font-size: 15px;
    }

    /* ==================== MOBILE DROPDOWN MENUS CRITICAL ==================== */
    /* Reset desktop dropdown positioning for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.25);
        min-width: unset;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    /* Override desktop hover behavior for mobile - prevent hover from opening dropdowns */
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 0;
        transform: none;
    }

    /* Open Services dropdown when its checkbox is checked */
    input#services-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Open Destinations dropdown when its checkbox is checked */
    input#destinations-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Open Company dropdown when its checkbox is checked */
    input#company-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Rotate chevron when sub-dropdown is open */
    input#services-toggle:checked ~ .dropdown-label .chevron,
    input#destinations-toggle:checked ~ .dropdown-label .chevron,
    input#company-toggle:checked ~ .dropdown-label .chevron {
        transform: rotate(-90deg);
    }

    /* Mobile dropdown item styles */
    .dropdown-menu li a {
        padding: 12px 24px 12px 40px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        border-left: none;
        display: block;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #FFFFFF;
        padding-left: 44px;
        border-left: none;
    }

    /* Mobile dropdown section label */
    .dropdown-section-label {
        color: rgba(255, 255, 255, 0.45);
        padding: 10px 24px 4px 40px;
        font-size: 9px;
    }
}

/* ==================== SMALL MOBILE (max-width 480px) ==================== */
@media (max-width: 480px) {
    .brand-name {
        font-size: 15px;
    }

    .brand-tagline {
        display: none;
    }

    .header-inner {
        height: 60px;
    }

    .main-nav {
        top: 60px;
    }
}

/* ==================== ACTIVE STATES ==================== */
.nav-link.active {
    color: #F97316;
    font-weight: 600;
}

/* Accessibility focus styles */
.nav-link:focus-visible,
.cta-button:focus-visible,
.brand:focus-visible,
.hamburger-label:focus-visible {
    outline: 2px solid #F97316;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==================== SECTION 2: PAGE HERO ==================== */
.contact-hero {
    background: linear-gradient(135deg, #1A3C6E 0%, #2563EB 100%);
    padding: 4rem 0;
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    color: #FFFFFF;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.breadcrumb {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ==================== SECTION 3: CONTACT OVERVIEW STRIP ==================== */
.contact-overview {
    background-color: #F97316;
    padding: 3rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.overview-item {
    position: relative;
    color: white;
}

.overview-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background-color: rgba(255,255,255,0.3);
}

.icon-circle-white {
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #F97316;
    font-size: 1.3rem;
}

.overview-label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.overview-value {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

/* ==================== SECTION 4: MAIN CONTACT SECTION ==================== */
.main-contact {
    background-color: #F8F9FA;
    padding: 5rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 3rem;
}

.contact-form-col h2, .contact-info-col h2 {
    margin-bottom: 1.5rem;
}

.form-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.half {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}

.submit-btn {
    width: 100%;
    background-color: #2563EB;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1A3C6E;
    transform: translateY(-2px);
}

/* Contact Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: #EEF2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    color: #6B7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-value {
    color: #111827;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-sub {
    color: #6B7280;
    font-size: 0.8rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #16A34A;
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c3a;
    transform: translateY(-2px);
}

.follow-us {
    text-align: center;
}

.follow-label {
    color: #6B7280;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons-contact a {
    width: 40px;
    height: 40px;
    background-color: #EEF2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons-contact a:hover {
    background-color: #2563EB;
    color: white;
    transform: translateY(-3px);
}

/* ==================== SECTION 5: MAP EMBED PLACEHOLDER ==================== */
.map-section {
    width: 100%;
}

.map-placeholder {
    width: 100%;
    height: 380px;
}

.embed-map-responsive {
    position: relative;
    width: 100%;
    height: 100%; /* parent ki 380px height use karega */
    padding-bottom: 0; /* original padding-bottom override */
}

.embed-map-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.embed-map-frame {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* ==================== SECTION 6: GLOBAL OFFICES SECTION ==================== */
/* -----------------------------------------------
    GLOBAL OFFICES - SLIDING ANIMATION STYLES
    WordPress Compatible
----------------------------------------------- */

.global-offices {
    width: 100%;
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin: 2rem 0;
}

.global-offices .container {
    padding: 3rem 2rem;
}

.global-offices h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e2b3c, #2c4b6e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
    text-align: center;
    font-family: inherit;
}

.global-offices .offices-subtext {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #4a627a;
    margin-bottom: 2.5rem;
    padding-bottom: 0.5rem;
    display: block;
    width: 100%;
    /* Center the text properly */
    margin-left: auto;
    margin-right: auto;
    /* Remove border-bottom to keep clean */
    border-bottom: none;
}

/* Slider Wrapper */
.global-offices .offices-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
    padding: 0.5rem 0;
}

/* Sliding Track - Horizontal Scroll with smooth animation */
.global-offices .offices-slider-track {
    display: flex;
    gap: 1.8rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    padding: 1rem 0.25rem 2rem 0.25rem;
    cursor: grab;
    scroll-snap-type: x mandatory;
}

.global-offices .offices-slider-track:active {
    cursor: grabbing;
}

/* Custom Scrollbar */
.global-offices .offices-slider-track::-webkit-scrollbar {
    height: 6px;
}

.global-offices .offices-slider-track::-webkit-scrollbar-track {
    background: #e9eef3;
    border-radius: 20px;
}

.global-offices .offices-slider-track::-webkit-scrollbar-thumb {
    background: #b9cadc;
    border-radius: 20px;
}

.global-offices .offices-slider-track::-webkit-scrollbar-thumb:hover {
    background: #8fa3b9;
}

/* Office Cards */
.global-offices .office-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 1.6rem 1.2rem 1.8rem;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid rgba(203, 213, 225, 0.4);
    text-align: center;
}

.global-offices .office-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

.global-offices .office-flag {
    font-size: 3.6rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.global-offices .office-city {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    color: #0f2b3d;
    letter-spacing: -0.2px;
}

.global-offices .office-address {
    font-size: 0.9rem;
    color: #4b5e77;
    margin: 0.5rem 0 0.25rem;
    line-height: 1.4;
    font-weight: 500;
}

.global-offices .office-phone {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c6e9e;
    margin-top: 0.6rem;
}

.global-offices .office-phone:empty,
.global-offices .office-address:empty {
    display: none;
}

/* Navigation Arrows & Dots */
.global-offices .slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.global-offices .nav-arrow {
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 60px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #2c4b6e;
    user-select: none;
}

.global-offices .nav-arrow:hover {
    background: #eef3fc;
    border-color: #bdd3e8;
    transform: scale(1.03);
}

.global-offices .nav-arrow:active {
    transform: scale(0.97);
}

.global-offices .dots-container {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.global-offices .dot {
    width: 8px;
    height: 8px;
    background-color: #cbdae9;
    border-radius: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.global-offices .dot.active {
    background: linear-gradient(90deg, #2c6e9e, #3f8dbd);
    width: 24px;
}

.global-offices .scroll-hint {
    text-align: center;
    font-size: 0.75rem;
    color: #8ba3bc;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 700px) {
    .global-offices .container {
        padding: 1.8rem 1.2rem;
    }
    .global-offices h2 {
        font-size: 1.9rem;
    }
    .global-offices .office-card {
        flex: 0 0 260px;
        padding: 1.3rem 1rem;
    }
    .global-offices .office-flag {
        font-size: 2.8rem;
    }
    .global-offices .office-city {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .global-offices .office-card {
        flex: 0 0 240px;
    }
    .global-offices .nav-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }
}

/* ==================== SECTION 7: FAQ SECTION (PURE CSS ACCORDION) ==================== */
.faq-section {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
}

.faq-checkbox {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #2563EB;
}

.faq-question i {
    color: #2563EB;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-checkbox:checked + .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #374151;
    line-height: 1.6;
    padding: 0;
}

.faq-checkbox:checked + .faq-question + .faq-answer {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

/* ==================== SECTION 8: CTA BANNER ==================== */
.cta-banner-contact {
    background-color: #2563EB;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner-contact h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-banner-contact p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button-contact {
    background-color: #F97316;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-contact:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #16A34A;
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c3a;
    transform: scale(1.05);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* ==================== SECTION 9: FOOTER ==================== */
.footer {
    background-color: #0F172A;
    padding: 3rem 2rem 1rem;
    color: #6B7280;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p, .footer-col a {
    color: #6B7280;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: 0.2s;
}

.footer-col a:hover {
    color: white;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #F97316;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    font-size: 0.8rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1A3C6E;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 12px 20px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-content {
        position: static;
        background-color: #1A3C6E;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 1rem;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        color: #EEF2FF;
    }
    
    .cta-nav {
        margin-left: 0;
    }
    
    /* Hero Mobile */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    /* Overview Strip Mobile */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-item:not(:last-child)::after {
        display: none;
    }
    
    /* Contact Layout Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    /* Offices Grid Mobile */
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        font-size: 0.9rem;
    }
    
    /* Typography Mobile */
    h2 {
        font-size: 1.6rem;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons a {
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .info-icon {
        margin-bottom: 0.5rem;
    }
    
    .whatsapp-float {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        bottom: 1rem;
        right: 1rem;
    }
}/* End custom CSS */