/* =========================================================
   MYINSTANTCOOL
   HOME PAGE STYLES
========================================================= */

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #FFFFFF; /* White Background (60%) */
    color: #1A2430; /* Ink Body Text */
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   VARIABLES & PALETTE MAPPING
========================================================= */

:root {
    /* Primary Colors */
    --navy-primary: #0A2240;  /* Deep Navy: Header, nav, footer, cards, hero cover */
    --accent-blue: #4FA3E3;   /* Energy Blue: WhatsApp CTAs, links, icons, highlights (10%) */
    --logo-ice: #92D3F5;      /* Ice Blue: Accent fill on navy background */
    --surface-bg: #E9F2F8;    /* Pale Blue-Gray: Cards & Section Backgrounds (30%) */
    
    /* Supporting Neutrals */
    --navy-hover: #10417A;    /* Deep Blue: Hover states, sub-headers */
    --text-ink: #1A2430;      /* Ink: Body text on white */
    --text-muted: #5A6B7A;    /* Muted: Captions, secondary text */
    --line-border: #CBDCEB;   /* Line: Dividers, table borders */
    --white: #FFFFFF;         /* Background / Whitespace */
    --status-green: #28A745;  /* Status Green: Open / success */

    --radius: 16px;
    --container: 1200px;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER & NAVBAR FIXES (LOGO SIZE + ONE-LINE ALIGNMENT)
========================================================= */

/* Header Height & Layout Fix */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #FFFFFF !important;
    z-index: 99999 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    padding: 10px 0 !important; /* Header height compact kar di hai */
    border-bottom: 1px solid #E5E7EB !important;
}

.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Logo Image Fix - Size Controlled */
.logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.logo img {
    max-height: 50px !important; /* Logo height fix */
    width: auto !important;
    object-fit: contain !important;
}

/* Nav Menu One-Line Alignment */
.main-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important; /* Compact spacing */
    margin: 0 !important;
    padding: 0 !important;
}

/* Prevent Multiline Wrap & Clean Typography */
.main-nav .nav-link,
.dropdown-toggle {
    color: #1F2937 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    text-transform: uppercase !important;
    white-space: nowrap !important; /* Tekst ko ek line mein rakhega */
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 6px 0 !important;
    transition: color 0.2s ease !important;
}

.main-nav .nav-link:hover,
.dropdown:hover .dropdown-toggle {
    color: #FF6B00 !important;
}

/* Arrow styling */
.dropdown-toggle .arrow {
    font-size: 10px !important;
    color: #FF6B00 !important;
    font-weight: 800 !important;
    transition: transform 0.25s ease !important;
}

.dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg) !important;
}

/* Dropdown Container */
.dropdown {
    position: relative !important;
    display: inline-block !important;
}

/* Sub-Menu Floating Box */
.dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 230px !important;
    background: #FFFFFF !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    padding: 8px 0 !important;
    margin-top: 5px !important;
    list-style: none !important;
    z-index: 1000000 !important;
}
/* Dropdown container ko 2 columns mein divide karne ke liye */
.dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr)); /* 2 columns banaye ga */
    gap: 8px; /* Items ke darmiyan space */
    max-height: 80vh; /* Agar screen choti ho toh scrollbar aa jaye */
    overflow-y: auto;
    padding: 12px;
    min-width: 380px; /* Multi-column ke liye dropdown width barhani hogi */
}

/* Optional: Mobile screen par single column ho jaye taake layout kharab na ho */
@media (max-width: 768px) {
    .dropdown-menu {
        grid-template-columns: 1fr;
        min-width: 100%;
    }
}
.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    display: block !important;
    width: 100% !important;
}

.dropdown-menu li a {
    display: block !important;
    padding: 10px 18px !important;
    color: #374151 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-transform: none !important;
    white-space: nowrap !important;
    transition: background 0.2s ease, color 0.2s ease !important;
}

.dropdown-menu li a:hover {
    background: #F3F4F6 !important;
    color: #FF6B00 !important;
}

/* WhatsApp Button Single-Line Fix */
.nav-button {
    background: #2563EB !important;
    color: #FFFFFF !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    white-space: nowrap !important; /* Button text break nahi hoga */
    display: inline-block !important;
    transition: background 0.2s ease !important;
}

.nav-button:hover {
    background: #1D4ED8 !important;
}

/* =========================================================
   DROPDOWN HOVER & DELAY FIX
========================================================= */

/* Dropdown Container */
.dropdown {
    position: relative !important;
    display: inline-block !important;
}

/* SUB MENU BOX */
.dropdown-menu {
    display: block !important; /* Hide via opacity & visibility for smooth delay */
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 250px !important;
    background: #FFFFFF !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    z-index: 100000 !important;

    /* Transition Delay for closing smoothly (0.3 sec ruka rahega) */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
    transform: translateY(10px) !important;
}

/* INVISIBLE HOVER BRIDGE: Mouse aur dropdown ke beech gap fill karta hai */
.dropdown-menu::before {
    content: "" !important;
    position: absolute !important;
    top: -15px !important; /* Gap ko bridge karega */
    left: 0 !important;
    width: 100% !important;
    height: 15px !important;
    background: transparent !important;
}

/* SHOW MENU ON HOVER WITH NO DELAY ON OPENING */
.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition-delay: 0s !important; /* Foran open ho ga */
}
/* =========================================================
   HERO
========================================================= */

/* =========================================================
   HERO SECTION STYLES (VIDEO BG ADJUSTED RIGHT TO LEFT)
========================================================= */

.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 90px;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white, #FFFFFF);
    overflow: hidden;
}

/* Video Background (Positioned to display properly from Right to Left) */
/* Video Background (Zoomed Out & Positioned Right to Left) */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    /* Zoom Out adjustment: scale(0.75) lowers the size of the video */
    transform: translate(-50%, -50%) scale(0.75); 
    object-fit: cover;
    object-position: 85% center;
}

/* Outer Hero background color for zoomed out video edges */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 90px;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white, #FFFFFF);
    overflow: hidden;
    background-color: #0A2240; /* Dark fallback background for zoom out spacing */
}
/* 40% Dark Overlay Opacity */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 34, 64, 0.45);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Left Content Styles */
.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 650px; /* Gives perfect layout space for text */
}

.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(10, 34, 64, 0.65);
    border: 1px solid #4FA3E3;
    color: #92D3F5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    width: fit-content;
}

.hero h1 {
    font-size: clamp(36px, 4.5vw, 54px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 12px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    display: block;
    color: #92D3F5;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #4FA3E3;
    margin-bottom: 14px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 15px;
    color: #F0F6FA;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 580px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 34, 64, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.hero-point .check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: #4FA3E3;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #4FA3E3;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(79, 163, 227, 0.4);
}

.btn-primary:hover {
    background: #3B8ECB;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(10, 34, 64, 0.65);
    border: 1px solid #CBDCEB;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-trust {
    display: flex;
    gap: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #92D3F5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-actions, .hero-trust {
        justify-content: center;
    }

    .hero-video-bg {
        object-position: center;
    }
}

/* =========================================================
   QUICK STATS
========================================================= */

.quick-stats {
    background: var(--surface-bg);
    border-bottom: 1px solid var(--line-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--line-border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item strong {
    color: var(--navy-primary);
    font-size: 24px;
    font-weight: 900;
}

.stat-item span {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}


/* =========================================================
   SECTIONS & HEADINGS
========================================================= */

.section {
    padding: 90px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    margin-top: 10px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    color: var(--navy-primary);
    font-weight: 900;
}

.section-heading h2 span {
    color: var(--navy-hover);
}

.section-heading p {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   PROBLEM SECTION
========================================================= */

.problem-section {
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.problem-card {
    padding: 30px 24px;
    background: var(--surface-bg);
    border: 1px solid var(--line-border);
    border-radius: var(--radius);
    transition: transform 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.problem-number {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 800;
    margin-bottom: 10px;
}

.problem-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--navy-primary);
    color: var(--logo-ice);
    font-size: 20px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--navy-primary);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.safety-notice {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 40px;
    padding: 20px;
    background: #FFF9E6;
    border: 1px solid #FFE58F;
    border-radius: 12px;
}

.safety-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FAAD14;
    color: var(--white);
    font-weight: 900;
}

.safety-notice strong {
    color: #D48806;
    font-size: 14px;
}

.safety-notice p {
    color: var(--text-ink);
    font-size: 13px;
    margin-top: 2px;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    background: var(--surface-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line-border);
    border-radius: var(--radius);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
}

.service-card.featured {
    border: 2px solid var(--accent-blue);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--accent-blue);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--surface-bg);
    color: var(--accent-blue);
    font-size: 20px;
}

.service-arrow {
    color: var(--text-muted);
    font-size: 20px;
}

.service-card:hover .service-arrow {
    color: var(--accent-blue);
}

.service-tag {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.service-card h3 {
    color: var(--navy-primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.service-price {
    color: var(--navy-primary);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 6px;
}

.service-price small {
    color: var(--text-muted);
    font-size: 11px;
}

.second-price {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.service-card > p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-hover {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--line-border);
}

.service-hover strong {
    color: var(--navy-primary);
    font-size: 12px;
}

.service-hover ul {
    list-style: none;
    margin: 8px 0;
}

.service-hover li {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.service-hover li::before {
    content: "✓ ";
    color: var(--accent-blue);
    font-weight: 800;
}

.learn-more {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   CLEAN NOTE
========================================================= */

.clean-note-section {
    padding-top: 0;
    background: var(--surface-bg);
}

.clean-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line-border);
}

.clean-note-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface-bg);
    color: var(--accent-blue);
    font-weight: 900;
}

.clean-note h3 {
    color: var(--navy-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.clean-note p {
    color: var(--text-muted);
    font-size: 13px;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.price-card {
    padding: 35px;
    border-radius: var(--radius);
    background: var(--surface-bg);
    border: 1px solid var(--line-border);
}

.price-card.highlighted {
    border: 2px solid var(--accent-blue);
    background: var(--white);
}

.price-label {
    color: var(--accent-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.price-card h3 {
    color: var(--navy-primary);
    font-size: 22px;
    margin: 10px 0;
}

.big-price {
    color: var(--navy-primary);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.price-card p {
    color: var(--text-muted);
    font-size: 13px;
    min-height: 60px;
    margin-bottom: 18px;
}

.price-card a {
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   INSTALLATION
========================================================= */

.installation-section {
    background: var(--surface-bg);
}

.installation-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.installation-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--navy-primary);
    margin-bottom: 18px;
}

.installation-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 16px;
}

.installation-box {
    padding: 35px;
    border-radius: var(--radius);
    background: var(--navy-primary);
    color: var(--white);
}

.installation-box-header span {
    color: var(--logo-ice);
    font-size: 11px;
    font-weight: 800;
}

.installation-box-header strong {
    color: var(--white);
    font-size: 36px;
    display: block;
}

.installation-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.included-title {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.included-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.included-list li {
    color: var(--line-border);
    font-size: 13px;
}

.included-list span {
    color: var(--accent-blue);
    margin-right: 8px;
}

.installation-box small {
    color: var(--text-muted);
    font-size: 11px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-main-card {
    padding: 40px;
    border-radius: var(--radius);
    background: var(--navy-primary);
    color: var(--white);
    text-align: center;
}

.about-symbol {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--logo-ice);
    font-size: 40px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 auto 20px;
}

.about-word {
    font-size: 22px;
    font-weight: 900;
}

.about-main-card p {
    color: var(--line-border);
    font-size: 13px;
    margin-top: 8px;
}

.about-floating-card {
    margin-top: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    background: var(--surface-bg);
    border: 1px solid var(--line-border);
    text-align: center;
}

.about-floating-card strong {
    display: block;
    color: var(--navy-primary);
    font-size: 24px;
}

.about-floating-card span {
    color: var(--text-muted);
    font-size: 11px;
}

.about-content h2 {
    color: var(--navy-primary);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 18px;
}

.about-content > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.value-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--line-border);
}

.value-item > span {
    color: var(--accent-blue);
    font-weight: 800;
}

.value-item strong {
    color: var(--navy-primary);
    font-size: 14px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 12px;
}


/* =========================================================
   WHY US
========================================================= */

.why-section {
    background: var(--surface-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    padding: 25px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line-border);
}

.why-number {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-card h3 {
    color: var(--navy-primary);
    font-size: 16px;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 12px;
}


/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
    padding: 90px 0;
    background: var(--navy-primary);
    color: var(--white);
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 50px;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 46px);
    margin-top: 10px;
    color: var(--white);
}

.cta-content p {
    color: var(--line-border);
    font-size: 15px;
    margin-top: 15px;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-action strong {
    color: var(--logo-ice);
    font-size: 18px;
    margin-top: 15px;
}

.cta-action small {
    color: var(--line-border);
    font-size: 11px;
    margin-top: 4px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--line-border);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    color: var(--navy-primary);
    font-size: 16px;
    font-weight: 700;
}

.faq-item summary span {
    color: var(--accent-blue);
    font-size: 20px;
}

.faq-answer {
    padding-bottom: 22px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
}


/* =========================================================
   NEXT STEPS
========================================================= */

.next-section {
    background: var(--surface-bg);
}

.next-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.next-card {
    padding: 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--line-border);
}

.next-card > span {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 800;
}

.next-card strong {
    color: var(--navy-primary);
    font-size: 13px;
}

.next-card small {
    color: var(--text-muted);
    font-size: 10px;
}


/* =========================================================
   COVERAGE
========================================================= */

.coverage-section {
    padding: 70px 0;
    background: var(--white);
    border-top: 1px solid var(--line-border);
}

.coverage-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.coverage-content h2 {
    color: var(--navy-primary);
    font-size: 36px;
}

.coverage-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 10px;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coverage-tags span {
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--surface-bg);
    border: 1px solid var(--line-border);
    color: var(--navy-primary);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   OFFERS
========================================================= */

.offers-section {
    background: var(--surface-bg);
}

.offer-box {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 25px;
    align-items: center;
    padding: 35px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line-border);
}

.offer-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--navy-primary);
    color: var(--logo-ice);
    font-size: 24px;
    font-weight: 900;
}

.offer-content h2 {
    color: var(--navy-primary);
    font-size: 24px;
}

.offer-content p {
    color: var(--text-muted);
    font-size: 13px;
}

.offer-note {
    margin-top: 6px;
    color: var(--text-muted) !important;
    font-size: 11px !important;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding-top: 70px;
    background: var(--navy-primary);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-brand p {
    color: var(--line-border);
    font-size: 12px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--logo-ice);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links a {
    color: var(--line-border);
    font-size: 12px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-contact strong {
    color: var(--white);
    font-size: 16px;
}

.footer-contact p {
    color: var(--line-border);
    font-size: 12px;
}

.footer-whatsapp {
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 800;
}

.footer-bottom {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--line-border);
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .services-grid, .problem-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .next-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .site-header { position: relative; }
    .nav-container { height: auto; padding: 15px 0; flex-wrap: wrap; }
    .main-nav { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; }
    .hero-grid, .installation-grid, .about-grid, .coverage-content, .cta-box { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid var(--line-border); }
    .offer-box { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .problem-grid, .services-grid, .pricing-grid, .why-grid, .next-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; }
}

/* =========================================================
   GENERAL CLEANING PAGE STYLING
========================================================= */

.page-hero {
    background: #0A2240;
    color: #FFFFFF;
    padding: 120px 0 50px 0;
    text-align: center;
}

.page-hero .badge {
    background: #FF6B00;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: 36px;
    margin: 15px 0;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    color: #CBD5E1;
}

.content-section {
    padding: 50px 0;
    background: #F8FAFC;
    color: #1E293B;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.highlight-card {
    border-left: 5px solid #2563EB;
}

.info-card h2 {
    font-size: 24px;
    color: #0F172A;
    margin-bottom: 12px;
}

.info-card .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 15px;
}

.feature-list, .check-list, .links-list {
    margin: 20px 0;
    padding-left: 20px;
}

.feature-list li, .check-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.links-list li {
    margin-bottom: 8px;
}

.links-list a {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
}

.links-list a:hover {
    text-decoration: underline;
}

/* PRICING TABLE */
.pricing-container {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.price-table th, .price-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.price-table th {
    background: #F1F5F9;
    color: #0F172A;
    font-weight: 700;
}

.highlight-price {
    color: #2563EB;
    font-weight: 800;
    font-size: 16px;
}

.notice-box, .alert-box {
    background: #EFF6FF;
    border-left: 4px solid #3B82F6;
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 14px;
    color: #1E3A8A;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }
}

/* FAQ SECTION */
.faq-container {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F1F5F9;
}

.faq-item h4 {
    font-size: 16px;
    color: #0F172A;
    margin-bottom: 8px;
}

/* BUTTON & CONTACT */
.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1EBE5D;
}

.contact-box {
    background: #0A2240;
    color: #FFFFFF;
    padding: 35px;
    border-radius: 10px;
}

.contact-box h2 {
    color: #FFFFFF;
}

.contact-box .phone {
    font-size: 18px;
    margin: 15px 0;
}

.promo-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.promo-box h3 {
    color: #4FA3E3;
    margin-bottom: 10px;
}

/* =========================================================
   ADDITIONAL TABLE & HELPER STYLES (CHEMICAL CLEANING)
========================================================= */

.table-caption {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.table-note {
    font-size: 13px;
    color: #64748B;
    margin-top: 10px;
    line-height: 1.5;
}

.margin-top-large {
    margin-top: 35px !important;
}

.margin-top {
    margin-top: 20px !important;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* ================= FOOTER STYLES ================= */
.site-footer {
    background-color: #07111e;
    color: #94a3b8;
    padding: 50px 0 20px 0;
    margin-top: 50px;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
}

/* ================= ELEGANT 2-COLUMN FORM STYLING ================= */
.form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
    max-width: 750px; /* Slightly wider for 2 columns */
    margin: 0 auto;
}

/* Form Grid System */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Equal Columns */
    gap: 18px 20px; /* Vertical & Horizontal spacing */
}

/* Full Width spanning for Message & Button */
.full-width {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    color: #1e293b;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
}

/* Mobile Responsive Adjustment */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr; /* Switch back to 1 column on mobile */
    }
    .full-width {
        grid-column: span 1;
    }
    .form-card {
        padding: 25px 20px;
    }
}

/* ================= 2-COLUMN GRID FIX ================= */
.form-grid-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 20px !important;
}

.form-grid-wrapper .full-width-span {
    grid-column: 1 / -1 !important;
}

.form-group {
    margin-bottom: 0 !important;
}

.form-group label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 6px !important;
}

.form-control {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background-color: #f8fafc !important;
    box-sizing: border-box !important;
}

.form-control:focus {
    outline: none !important;
    border-color: #2563eb !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.btn-submit {
    width: 100% !important;
    padding: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: #2563eb !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.btn-submit:hover {
    background: #1d4ed8 !important;
}

/* Responsive adjustment for Mobile Phones */
@media (max-width: 640px) {
    .form-grid-wrapper {
        grid-template-columns: 1fr !important;
    }
}

/* ================= FLOATING WHATSAPP BUTTON ================= */
.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    bottom: 25px !important;
    right: 25px !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, background-color 0.2s ease !important;
}

.whatsapp-float:hover {
    background-color: #128c7e !important;
    transform: scale(1.1) !important;
}

.wa-icon {
    width: 35px !important;
    height: 35px !important;
    display: block !important;
}

/* Mobile Devices */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    .wa-icon {
        width: 30px !important;
        height: 30px !important;
    }
}
/* ================= HEADER BASE STYLES ================= */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #0056b3;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================= MOBILE RESPONSIVE STYLES ================= */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex; /* Mobile par hamburger show ho */
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none; /* Default state: hidden */
    }

    /* JavaScript toggle class */
    .nav-menu.active {
        display: flex;
    }
}

/* =========================================================
   PROFESSIONAL RESPONSIVE HEADER - FINAL OVERRIDE
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 76px;
    background: #ffffff;
    z-index: 99999;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1280px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 52px;
}

/* Desktop Navigation */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 25px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 28px 0;
    color: #0A2240;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: #4FA3E3;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 19px;
    width: 0;
    height: 2px;
    background: #4FA3E3;
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle .arrow {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.nav-item.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    min-width: 245px;
    padding: 8px 0;
    margin: 0;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 11px 18px;
    color: #0A2240;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    color: #4FA3E3;
    background: #f3f7fa;
    padding-left: 22px;
}

/* WhatsApp Button */
.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 125px;
    padding: 11px 18px;

    background: #0A2240;
    color: #ffffff !important;

    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-button:hover {
    background: #4FA3E3;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(79, 163, 227, 0.25);
}

/* Mobile Hamburger */
.mobile-toggle {
    display: none;

    width: 44px;
    height: 44px;
    padding: 0;

    border: 1px solid #dce8ef;
    border-radius: 6px;
    background: #ffffff;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: #0A2240;
    border-radius: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

/* Hamburger → X */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .site-header {
        min-height: 68px;
    }

    .nav-container {
        min-height: 68px;
        padding: 0 18px;
    }

    .logo img {
        max-width: 155px;
        max-height: 46px;
    }

    .mobile-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 8px 18px 18px;

        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.10);

        gap: 0;
    }

    .nav-wrapper.active {
        display: flex;
    }

    .main-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        width: 100%;
        min-height: 48px;
        padding: 14px 5px;

        justify-content: space-between;

        border-bottom: 1px solid #eef2f5;
    }

    .nav-link::after {
        display: none;
    }

    /* Mobile Dropdown */
    .nav-item.dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        display: none;

        padding: 5px 0;
        margin: 0;

        border: 0;
        border-radius: 0;
        box-shadow: none;

        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-item.dropdown.active > .dropdown-menu {
        display: block;
    }

    .nav-item.dropdown:hover > .dropdown-menu {
        display: none;
    }

    .nav-item.dropdown.active:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 18px 10px 25px;
        font-size: 13px;
        background: #f7fafc;
        border-bottom: 1px solid #edf1f4;
    }

    .dropdown-menu li a:hover {
        padding-left: 29px;
        background: #eef6fb;
    }

    .nav-item.dropdown.active .arrow {
        transform: rotate(180deg);
    }

    .nav-button {
        width: 100%;
        margin-top: 15px;
        min-height: 46px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .nav-container {
        padding: 0 14px;
    }

    .logo img {
        max-width: 140px;
        max-height: 43px;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
    }

    .nav-wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nav-link {
        font-size: 12px;
    }

    .dropdown-menu li a {
        font-size: 12px;
    }
}

/* =========================================================
   SEPARATE PROFESSIONAL DESKTOP + MOBILE HEADER
   ========================================================= */


/* =========================================================
   DESKTOP HEADER
   ========================================================= */

.desktop-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;

    background: #ffffff;

    border-bottom: 1px solid #e7edf2;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);

    z-index: 99999;
}

.desktop-nav-container {
    width: 100%;
    max-width: 1280px;
    height: 76px;

    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    gap: 25px;
}


/* Logo */

.desktop-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.desktop-logo img {
    display: block;

    width: auto;
    max-width: 180px;
    max-height: 52px;
}


/* Desktop Navigation */

.desktop-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 1;

    gap: 21px;
}

.desktop-nav-item {
    position: relative;
}

.desktop-nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    height: 76px;

    color: #0A2240;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15px;

    text-decoration: none;
    white-space: nowrap;

    transition: color 0.25s ease;
}

.desktop-nav-link:hover {
    color: #4FA3E3;
}


/* Active / Hover underline */

.desktop-nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 17px;

    width: 0;
    height: 2px;

    background: #4FA3E3;

    transition: width 0.25s ease;
}

.desktop-nav-link:hover::after,
.desktop-nav-link.active::after {
    width: 100%;
}


/* Desktop Arrow */

.desktop-arrow {
    font-size: 14px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.desktop-nav-item:hover .desktop-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DESKTOP DROPDOWNS
   ========================================================= */

.desktop-dropdown {
    position: absolute;

    top: 76px;
    left: 50%;

    min-width: 245px;

    margin: 0;
    padding: 8px 0;

    transform: translate(-50%, 10px);

    background: #ffffff;

    border: 1px solid #e5ebef;
    border-radius: 8px;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);

    list-style: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.desktop-nav-item:hover > .desktop-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, 0);
}

.desktop-dropdown li {
    margin: 0;
    padding: 0;
}

.desktop-dropdown li a {
    display: block;

    padding: 11px 18px;

    color: #0A2240;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding-left 0.2s ease;
}

.desktop-dropdown li a:hover {
    color: #4FA3E3;
    background: #f4f8fb;

    padding-left: 23px;
}


/* Locations dropdown */

.desktop-location-dropdown {
    min-width: 210px;

    max-height: 70vh;
    overflow-y: auto;
}


/* =========================================================
   DESKTOP WHATSAPP
   ========================================================= */

.desktop-whatsapp {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 125px;

    padding: 11px 18px;

    background: #0A2240;
    color: #ffffff !important;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.desktop-whatsapp:hover {
    background: #4FA3E3;

    transform: translateY(-1px);

    box-shadow: 0 6px 16px rgba(79, 163, 227, 0.25);
}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

.mobile-site-header {
    display: none;
}


/* =========================================================
   MOBILE BREAKPOINT
   ========================================================= */

@media (max-width: 991px) {

    /* Hide desktop header completely */

    .desktop-site-header {
        display: none !important;
    }


    /* Show mobile header */

    .mobile-site-header {
        display: block;

        position: fixed;

        top: 0;
        left: 0;

        width: 100%;

        background: #ffffff;

        border-bottom: 1px solid #e7edf2;

        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);

        z-index: 99999;
    }


    /* =====================================================
       MOBILE TOP BAR
       ===================================================== */

    .mobile-header-inner {

        width: 100%;
        height: 68px;

        padding: 0 16px;

        display: flex;

        align-items: center;

        justify-content: space-between;
    }


    /* Mobile Logo */

    .mobile-logo {
        display: flex;
        align-items: center;

        flex-shrink: 0;
    }

    .mobile-logo img {
        display: block;

        width: auto;

        max-width: 145px;
        max-height: 46px;
    }


    /* =====================================================
       HAMBURGER BUTTON
       ===================================================== */

    .mobile-menu-button {

        width: 44px;
        height: 44px;

        padding: 0;

        border: 0;
        border-radius: 6px;

        background: transparent;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 5px;

        cursor: pointer;

        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-button span {

        display: block;

        width: 24px;
        height: 2px;

        border-radius: 2px;

        background: #0A2240;

        transition:
            transform 0.25s ease,
            opacity 0.2s ease;
    }


    /* Hamburger → X */

    .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* =====================================================
       MOBILE NAVIGATION PANEL
       ===================================================== */

    .mobile-navigation {

        display: none;

        width: 100%;

        max-height: calc(100vh - 68px);

        overflow-y: auto;

        background: #ffffff;

        border-top: 1px solid #edf1f4;

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.10);
    }

    .mobile-navigation.active {
        display: block;
    }


    /* =====================================================
       MOBILE NAV
       ===================================================== */

    .mobile-main-nav {
        width: 100%;

        display: flex;
        flex-direction: column;
    }


    .mobile-nav-link,
    .mobile-dropdown-button {

        width: 100%;
        min-height: 50px;

        padding: 0 18px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        background: #ffffff;

        border: 0;
        border-bottom: 1px solid #edf1f4;

        color: #0A2240;

        font-family: inherit;

        font-size: 13px;
        font-weight: 600;

        text-decoration: none;

        text-align: left;

        cursor: pointer;

        transition:
            color 0.2s ease,
            background 0.2s ease;
    }

    .mobile-nav-link:hover,
    .mobile-dropdown-button:hover {
        color: #4FA3E3;
        background: #f8fafc;
    }


    /* =====================================================
       MOBILE DROPDOWN BUTTON
       ===================================================== */

    .mobile-nav-item {
        width: 100%;
    }

    .mobile-dropdown-button {
        appearance: none;
        -webkit-appearance: none;
    }


    .mobile-dropdown-arrow {

        font-size: 17px;
        line-height: 1;

        color: #0A2240;

        transition: transform 0.25s ease;
    }


    .mobile-nav-item.open .mobile-dropdown-arrow {
        transform: rotate(180deg);
    }


    /* =====================================================
       MOBILE DROPDOWN
       ===================================================== */

    .mobile-dropdown {

        display: none;

        width: 100%;

        background: #f7fafc;
    }

    .mobile-nav-item.open .mobile-dropdown {
        display: block;
    }

    .mobile-dropdown a {

        display: block;

        min-height: 43px;

        padding: 12px 18px 12px 32px;

        border-bottom: 1px solid #e8eef2;

        color: #31475a;

        font-size: 13px;
        font-weight: 500;

        text-decoration: none;

        transition:
            color 0.2s ease,
            background 0.2s ease,
            padding-left 0.2s ease;
    }

    .mobile-dropdown a:hover {
        color: #4FA3E3;
        background: #eef6fb;

        padding-left: 37px;
    }


    /* Locations */

    .mobile-location-dropdown {
        max-height: 300px;

        overflow-y: auto;
    }


    /* =====================================================
       MOBILE WHATSAPP
       ===================================================== */

    .mobile-whatsapp-wrapper {

        padding: 16px 18px 20px;

        background: #ffffff;
    }

    .mobile-whatsapp {

        width: 100%;
        min-height: 47px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: #0A2240;

        color: #ffffff !important;

        border-radius: 6px;

        font-size: 13px;
        font-weight: 600;

        text-decoration: none;

        transition:
            background 0.25s ease,
            transform 0.25s ease;
    }

    .mobile-whatsapp:hover {
        background: #4FA3E3;

        transform: translateY(-1px);
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .mobile-header-inner {
        height: 64px;

        padding: 0 14px;
    }

    .mobile-logo img {
        max-width: 135px;
        max-height: 43px;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }

    .mobile-navigation {
        max-height: calc(100vh - 64px);
    }

    .mobile-nav-link,
    .mobile-dropdown-button {
        min-height: 48px;

        padding-left: 15px;
        padding-right: 15px;

        font-size: 12px;
    }

    .mobile-dropdown a {
        font-size: 12px;

        padding-left: 29px;
    }

    .mobile-dropdown a:hover {
        padding-left: 34px;
    }

    .mobile-whatsapp-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

}