/* =========================================
   SnapShine — Stylesheet (v3.0)
   Modern, friendly refresh:
   - Plus Jakarta Sans typography
   - Warmer cream backgrounds, layered tinted shadows
   - Bigger rounded cards (20–28px), generous whitespace
   - New warm-coral CTA accent alongside the blue brand
   - Gradient mesh hero, glass header, soft animations
   - Mobile-first, prefers-reduced-motion respected
   ========================================= */

/* ----- Variables ----- */
:root {
    /* Brand */
    --primary-blue: #0B2C5E;          /* deeper, richer navy */
    --primary-blue-soft: #1E40AF;
    --bright-blue: #2563EB;
    --cyan: #06B6D4;
    --cyan-soft: #ECFEFF;

    /* Warm accents (NEW) */
    --coral: #FB7185;                 /* warm coral for CTAs */
    --coral-dark: #E11D48;
    --warm-cream: #FFFBF5;            /* warmer page background */
    --warm-tan: #FFF6E9;

    /* Text */
    --text-dark: #0F172A;
    --text-gray: #64748B;
    --text-soft: #94A3B8;

    /* Surfaces */
    --bg-light: #F8FAFC;
    --bg-soft-blue: #F0F7FF;
    --soft-border: #E5EAF0;

    /* Accents */
    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #128C7E;
    --warm-yellow: #FCD34D;

    /* Shadows (layered, tinted) */
    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 20px rgba(11, 44, 94, 0.06), 0 2px 6px rgba(11, 44, 94, 0.04);
    --shadow-lg: 0 20px 40px rgba(11, 44, 94, 0.10), 0 8px 16px rgba(11, 44, 94, 0.05);
    --shadow-xl: 0 28px 60px rgba(11, 44, 94, 0.18), 0 12px 24px rgba(11, 44, 94, 0.08);
    --shadow-coral: 0 12px 28px rgba(251, 113, 133, 0.35);
    --shadow-blue: 0 12px 28px rgba(37, 99, 235, 0.30);

    /* Radii */
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-pill: 999px;

    /* Motion */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.18s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background-color: var(--warm-cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.005em;
}

body.nav-open, body.modal-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bright-blue); }
button { font-family: inherit; }

/* Headings — tighter, bolder */
h1, h2, h3, h4, h5, h6 { letter-spacing: -0.02em; line-height: 1.15; font-weight: 800; }

/* Accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--primary-blue); color: #fff;
    padding: 10px 16px; z-index: 100000; text-decoration: none;
    border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

/* =========================================
   HEADER — glass effect
   ========================================= */
.main-header {
    padding: 14px 0;
    background-color: rgba(255, 251, 245, 0.78);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(11, 44, 94, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.main-header {
    padding: 14px 0;
    background-color: rgba(255, 251, 245, 0.78); /* <-- THIS IS THE CULPRIT */
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(11, 44, 94, 0.06);
}
.logo img { height: 46px; width: auto; display: block; }
@media (max-width: 480px) { .logo img { height: 38px; } }

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14.5px;
    transition: all var(--transition-fast);
    padding: 9px 14px;
    border-radius: var(--radius-pill);
    position: relative;
}
.nav-links a:hover { background: rgba(37, 99, 235, 0.08); color: var(--primary-blue); }
.nav-links a.active {
    background: var(--primary-blue);
    color: #fff;
}

.shop-nav-link { color: var(--coral) !important; font-weight: 700 !important; }
.shop-nav-link i { margin-right: 6px; }
.shop-nav-link.active { background: var(--coral) !important; color: #fff !important; }

/* Header dropdown */
.dropdown-wrapper { position: relative; }
.dropdown-menu {
    position: absolute; top: 130%; left: 0;
    background: #FFFFFF; min-width: 210px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--soft-border);
    border-radius: var(--radius-md); padding: 8px; list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.25s ease; z-index: 100;
}
.dropdown-wrapper:hover .dropdown-menu,
.dropdown-wrapper.open .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0); top: 110%;
}
.dropdown-menu li a {
    display: block; padding: 11px 14px;
    color: var(--text-dark); font-size: 14px; font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
    text-decoration: none;
}
.dropdown-menu li a:hover { background: var(--bg-soft-blue); color: var(--primary-blue); }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: rgba(11, 44, 94, 0.06); border: none;
    font-size: 22px; color: var(--primary-blue); cursor: pointer;
    padding: 10px; border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.mobile-toggle:hover { background: rgba(11, 44, 94, 0.12); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 14px; }
.support-contact { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--primary-blue); }
.support-icon {
    background: linear-gradient(135deg, var(--cyan), #0EA5E9);
    color: #fff;
    width: 42px; height: 42px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; font-size: 17px;
    box-shadow: 0 8px 16px rgba(6, 182, 212, 0.30);
}
.support-text { display: flex; flex-direction: column; line-height: 1.2; }
.support-text .label { font-size: 11px; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; }
.support-text .number { font-size: 14px; font-weight: 700; color: var(--primary-blue); }

.btn-book {
    background: var(--coral);
    background-image: linear-gradient(135deg, #FB7185 0%, #F43F5E 100%);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all var(--transition);
    box-shadow: var(--shadow-coral);
}
.btn-book:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(251, 113, 133, 0.45); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 26px; min-height: 50px;
    border-radius: var(--radius-pill);
    font-weight: 700; font-size: 15px;
    text-decoration: none; cursor: pointer;
    border: none; gap: 10px;
    white-space: nowrap; line-height: 1;
    transition: all var(--transition);
    letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn i { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }

.btn-blue  {
    background-image: linear-gradient(135deg, var(--bright-blue) 0%, var(--primary-blue) 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-blue);
}
.btn-blue:hover { box-shadow: 0 18px 36px rgba(37, 99, 235, 0.42); }

.btn-coral {
    background-image: linear-gradient(135deg, #FB7185 0%, #F43F5E 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-coral);
}
.btn-coral:hover { box-shadow: 0 18px 36px rgba(251, 113, 133, 0.45); }

.btn-green {
    background-image: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.30);
}
.btn-green:hover { box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45); }

.btn-white {
    background-color: #FFFFFF; color: var(--primary-blue);
    box-shadow: var(--shadow-md); font-weight: 700;
}
.btn-white:hover { background: #F0F7FF; box-shadow: var(--shadow-lg); }

.cyan-text { color: var(--coral); } /* repurposed: coral highlight in headings */
.blue-text { color: var(--primary-blue); }

/* =========================================
   FLOATING WHATSAPP + CHAT WIDGET
   ========================================= */
.float-wa {
    position: fixed; bottom: calc(95px + env(safe-area-inset-bottom)); right: 22px;
    background: var(--whatsapp-green); color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.50);
    z-index: 9998; transition: transform var(--transition); text-decoration: none;
    animation: pulse-soft 2.4s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.10); color: white; }

.float-chat-btn {
    position: fixed; bottom: calc(25px + env(safe-area-inset-bottom)); right: 22px;
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    color: white;
    width: 60px; height: 60px; border-radius: 50%; border: none;
    font-size: 22px; box-shadow: var(--shadow-blue);
    cursor: pointer; z-index: 9999; transition: transform var(--transition);
}
.float-chat-btn:hover { transform: scale(1.10); }

@keyframes pulse-soft {
    0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.50); }
    50% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.10); }
}

.chat-widget-box {
    position: fixed; bottom: calc(95px + env(safe-area-inset-bottom)); right: 22px;
    width: min(330px, calc(100vw - 44px));
    background: white; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10000; overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid var(--soft-border);
}
.chat-widget-box.active { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-widget-header {
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    color: white;
    padding: 16px 20px; font-weight: 700; display: flex;
    justify-content: space-between; align-items: center; font-size: 15px;
}
.chat-close-btn { background: rgba(255,255,255,0.15); border: 0; color: #fff; font-size: 16px; cursor: pointer; width: 28px; height: 28px; border-radius: 8px; }
.chat-widget-body { padding: 20px; }
.chat-widget-body p { font-size: 13.5px; color: var(--text-gray); margin-bottom: 14px; line-height: 1.55; }
.chat-widget-body input {
    width: 100%; padding: 12px 14px; margin-bottom: 10px;
    border: 1.5px solid var(--soft-border); border-radius: var(--radius-sm);
    font-size: 14px; outline: none; transition: border-color var(--transition); background: var(--bg-light);
}
.chat-widget-body input:focus { border-color: var(--bright-blue); background: #fff; }
.chat-widget-body button {
    width: 100%; padding: 13px;
    background-image: linear-gradient(135deg, #FB7185, #F43F5E);
    color: white;
    border: none; border-radius: var(--radius-sm);
    font-weight: 700; cursor: pointer; font-size: 14px;
    transition: transform var(--transition);
}
.chat-widget-body button:hover { transform: translateY(-2px); }

/* =========================================
   MOBILE STICKY CTA BAR
   ========================================= */
.mobile-cta-bar {
    display: none;
    position: fixed; left: 0; right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--soft-border);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.06);
}
.mobile-cta-bar .mcta {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    text-decoration: none;
    font-size: 11px; font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    color: var(--primary-blue);
}
.mobile-cta-bar .mcta i { font-size: 19px; }
.mobile-cta-bar .mcta:active { transform: scale(0.96); }
.mobile-cta-bar .mcta-call { background: var(--bg-soft-blue); }
.mobile-cta-bar .mcta-wa { background-image: linear-gradient(135deg, #25D366, #128C7E); color: #fff; }
.mobile-cta-bar .mcta-book { background-image: linear-gradient(135deg, #FB7185, #F43F5E); color: #fff; }
button.mcta { font-family: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; }

@media (max-width: 768px) {
    .mobile-cta-bar { display: flex; gap: 6px; }
    body { padding-bottom: 84px; }
    .float-wa { bottom: calc(160px + env(safe-area-inset-bottom)); }
    .float-chat-btn { bottom: calc(90px + env(safe-area-inset-bottom)); }
    .chat-widget-box { bottom: calc(160px + env(safe-area-inset-bottom)); }
}

/* =========================================
   HERO (HOME) — gradient mesh background
   ========================================= */
.hero-section {
    display: flex; align-items: center; justify-content: space-between;
    padding: 70px 0 90px; position: relative; gap: 40px;
    overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.16) 0%, transparent 65%);
    border-radius: 50%; z-index: -1;
    animation: blob 16s ease-in-out infinite;
}
.hero-section::after {
    content: ''; position: absolute;
    bottom: -160px; left: -120px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, transparent 65%);
    border-radius: 50%; z-index: -1;
    animation: blob 20s ease-in-out infinite reverse;
}
@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-image-wrapper { position: relative; width: 100%; max-width: 460px; display: flex; justify-content: center; margin: 0 auto; }
.hero-image {
    width: 100%; max-width: 380px; height: auto; display: block;
    border-radius: 36% 64% 70% 30% / 40% 40% 60% 60%; /* organic blob shape */
    position: relative; z-index: 1;
    box-shadow: var(--shadow-xl);
    transition: border-radius 1.2s ease;
}
.hero-image-wrapper:hover .hero-image { border-radius: 64% 36% 40% 60% / 50% 60% 40% 50%; }

.floating-badge {
    position: absolute; z-index: 10;
    background: #FFFFFF; padding: 14px 18px;
    border-radius: var(--radius-md); display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-lg);
    white-space: nowrap; transition: transform var(--transition);
    font-size: 13px; font-weight: 600; color: var(--primary-blue);
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.7);
}
.floating-badge i { color: var(--coral); font-size: 16px; }
.badge-1 { top: 8%; left: -8%; animation-delay: 0s; }
.badge-2 { top: 22%; right: -8%; animation-delay: 0.6s; }
.badge-3 { bottom: 26%; left: -8%; animation-delay: 1.2s; }
.badge-4 { bottom: 8%; right: -8%; animation-delay: 1.8s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-content { width: 50%; padding-left: 20px; }
.hero-title {
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 22px;
    letter-spacing: -0.035em;
}
.hero-subtitle { font-size: 17px; color: var(--text-gray); font-weight: 500; line-height: 1.65; margin-bottom: 32px; max-width: 500px; }

/* Quick benefit cards under hero */
.benefit-strip {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
    position: relative; z-index: 10; margin-top: -50px; margin-bottom: 30px;
}
.benefit-card {
    background: #fff; padding: 30px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--soft-border);
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.benefit-card .icn {
    font-size: 26px; color: #fff;
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    width: 56px; height: 56px;
    border-radius: var(--radius-md); display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px; box-shadow: var(--shadow-blue);
}
.benefit-card:nth-child(2) .icn { background-image: linear-gradient(135deg, #34D399, #059669); box-shadow: 0 12px 24px rgba(16, 185, 129, 0.30); }
.benefit-card:nth-child(3) .icn { background-image: linear-gradient(135deg, #FCD34D, #F59E0B); box-shadow: 0 12px 24px rgba(245, 158, 11, 0.30); }
.benefit-card h3 { font-size: 18px; color: var(--text-dark); margin-bottom: 8px; font-weight: 700; }
.benefit-card p { font-size: 14.5px; color: var(--text-gray); margin: 0; line-height: 1.55; }

/* Section eyebrow */
.section-eyebrow {
    display: inline-block;
    background: rgba(251, 113, 133, 0.12);
    color: var(--coral-dark);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 7px 16px; border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

/* CTA banner */
.cta-banner {
    background-image: linear-gradient(135deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
    border-radius: var(--radius-xl);
    padding: 44px 50px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    margin: 50px auto;
    box-shadow: var(--shadow-xl);
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -60%; right: -10%;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(251, 113, 133, 0.25);
    filter: blur(20px);
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -50%; left: 30%;
    width: 220px; height: 220px; border-radius: 50%;
    background: rgba(6, 182, 212, 0.22);
    filter: blur(20px);
}
.cta-text { color: #FFFFFF; font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; line-height: 1.25; flex: 1; position: relative; z-index: 1; letter-spacing: -0.02em; }

/* Combo (before/after) */
.combo-section { padding: 80px 0; }
.split-row { display: flex; justify-content: space-between; align-items: center; gap: 50px; margin-bottom: 70px; }
.split-text { width: 42%; }
.split-title { font-size: clamp(26px, 3.2vw, 40px); color: var(--primary-blue); font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.025em; }
.split-desc { font-size: 16px; color: var(--text-gray); margin-bottom: 28px; line-height: 1.65; }
.button-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.split-images { width: 53%; display: flex; gap: 18px; }
.ba-card {
    position: relative; border-radius: var(--radius-xl); overflow: hidden; flex: 1;
    aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}
.ba-card:hover { transform: translateY(-6px) rotate(-1deg); }
.ba-card:nth-child(2):hover { transform: translateY(-6px) rotate(1deg); }
.ba-card img { width: 100%; height: 100%; object-fit: cover; }
.ba-labels {
    position: absolute; bottom: 14px; left: 0; right: 0;
    display: flex; justify-content: space-around; color: white;
    font-weight: 800; font-size: 17px; text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    letter-spacing: 0.04em;
}

/* Services slider */
.services-layout { display: flex; align-items: center; gap: 30px; width: 100%; }
.services-slider-container { width: 100%; overflow: hidden; }
.services-slider { display: flex; gap: 22px; overflow-x: auto; scrollbar-width: none; padding: 6px 6px 22px; scroll-snap-type: x mandatory; }
.services-slider::-webkit-scrollbar { display: none; }
.service-card {
    flex: 0 0 calc(33.333% - 14px); min-width: 240px;
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    background: #FFFFFF; box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    scroll-snap-align: start;
    text-decoration: none;
    border: 1px solid var(--soft-border);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 230px; object-fit: cover; }
.service-label {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    background: #FFFFFF; padding: 11px 24px;
    border-radius: var(--radius-pill); font-weight: 700; color: var(--primary-blue);
    white-space: nowrap; box-shadow: var(--shadow-md);
    font-size: 13.5px;
}

/* Products */
.products-section { padding: 80px 20px; background: linear-gradient(180deg, var(--warm-cream) 0%, var(--bg-soft-blue) 100%); }
.product-card {
    background: white; border-radius: var(--radius-lg); padding: 18px;
    border: 1px solid var(--soft-border); box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Testimonials */
.testimonials-section {
    background-image: linear-gradient(135deg, var(--primary-blue) 0%, #061B3A 100%);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: ''; position: absolute;
    top: -120px; left: 10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.22) 0%, transparent 65%);
}
.testimonials-section::after {
    content: ''; position: absolute;
    bottom: -100px; right: 5%;
    width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.20) 0%, transparent 65%);
}
.testimonials-section .container { position: relative; z-index: 1; }
.testi-header {
    color: #FFFFFF;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    margin-bottom: 70px;
    letter-spacing: -0.025em;
}
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.testi-card {
    background: #FFFFFF; border-radius: var(--radius-xl);
    padding: 55px 30px 32px; position: relative;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition);
    text-align: center;
}
.testi-card:hover { transform: translateY(-8px); }
.testi-avatar {
    width: 74px; height: 74px; border-radius: 50%;
    background-image: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 26px;
    border: 5px solid #FFFFFF;
    position: absolute; top: -37px; left: 50%; transform: translateX(-50%);
    box-shadow: var(--shadow-coral);
}
.testi-card:nth-child(2) .testi-avatar { background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue)); box-shadow: var(--shadow-blue); }
.testi-card:nth-child(3) .testi-avatar { background-image: linear-gradient(135deg, #34D399, #059669); box-shadow: 0 12px 28px rgba(16, 185, 129, 0.40); }
.testi-stars { color: var(--warm-yellow); font-size: 18px; margin-bottom: 14px; }
.testi-text { font-size: 15px; color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-name { font-size: 16px; color: var(--primary-blue); font-weight: 700; }

/* =========================================
   ABOUT
   ========================================= */
.about-hero {
    display: flex; align-items: center; justify-content: space-between;
    padding: 70px 0 30px; gap: 50px;
    position: relative; overflow: hidden;
}
.about-hero::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.14) 0%, transparent 65%);
    border-radius: 50%; z-index: -1;
}
.about-hero-image-wrapper { position: relative; width: 100%; max-width: 460px; display: flex; justify-content: center; margin: 0 auto; }
.about-hero-img {
    width: 100%; max-width: 380px; height: auto; display: block;
    border-radius: 36% 64% 70% 30% / 40% 40% 60% 60%;
    position: relative; z-index: 1;
    box-shadow: var(--shadow-xl);
    transition: border-radius 1.2s ease;
}
.about-hero-image-wrapper:hover .about-hero-img { border-radius: 64% 36% 40% 60% / 50% 60% 40% 50%; }

.about-hero-text { width: 50%; }
.about-title { font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: var(--primary-blue); line-height: 1.05; margin-bottom: 14px; letter-spacing: -0.03em; }
.about-subtitle { font-size: clamp(18px, 2.2vw, 26px); font-weight: 700; color: var(--coral); line-height: 1.3; }

.badge-icon-circle {
    background-image: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: #fff;
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(251, 113, 133, 0.30);
}
.badge-text { font-size: 13px; line-height: 1.4; color: var(--text-gray); font-weight: 500; }
.badge-text strong { color: var(--primary-blue); font-size: 14px; font-weight: 800; display: block; }

.about-badge-1 { top: 12%; left: -3%; animation-delay: 0s; }
.about-badge-2 { top: 8%; right: -6%; animation-delay: 0.6s; }
.about-badge-3 { bottom: 12%; right: -4%; animation-delay: 1.2s; }

.about-page-section { padding: 80px 0; }
.bg-light-blue { background-color: var(--bg-soft-blue); }

.about-split-row { display: flex; justify-content: space-between; gap: 50px; }
.align-center { align-items: center; }
.about-text-block { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.about-image-block { flex: 1; position: relative; }

.section-title { font-size: clamp(26px, 3.2vw, 38px); color: var(--primary-blue); font-weight: 800; margin-bottom: 16px; line-height: 1.15; letter-spacing: -0.025em; }
.section-subtitle { font-size: 20px; color: var(--primary-blue); font-weight: 700; margin-bottom: 14px; }
.section-desc { font-size: 16px; color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; }

.check-list { list-style: none; padding: 0; margin-bottom: 22px; }
.check-list li {
    font-size: 15.5px; color: var(--text-dark); margin-bottom: 14px;
    font-weight: 500; display: flex; align-items: flex-start; gap: 12px;
}
.check-list li i {
    color: #fff; font-size: 11px;
    background-image: linear-gradient(135deg, #34D399, #059669);
    width: 22px; height: 22px;
    border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 3px;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.30);
}
.rounded-image { width: 100%; border-radius: var(--radius-xl); object-fit: cover; box-shadow: var(--shadow-lg); transition: transform var(--transition); }
.shadow-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.rating-text { font-size: 16px; color: var(--text-dark); font-weight: 600; margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.border-right { border-right: 2px solid var(--soft-border); }
.desktop-pr-40 { padding-right: 40px; }
.desktop-pl-40 { padding-left: 40px; }

.mini-testimonials { display: flex; gap: 32px; margin-top: 18px; }
.mini-testi { flex: 1; }
.mini-testi .stars { color: var(--warm-yellow); font-size: 14px; margin-bottom: 10px; }
.mini-testi .quote { font-size: 14.5px; color: var(--text-gray); line-height: 1.7; margin-bottom: 10px; font-style: italic; }
.mini-testi .author { font-size: 14px; color: var(--text-dark); font-weight: 600; }

.location-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; list-style: none; margin-top: 26px; }
.location-list li { font-size: 16px; color: var(--text-dark); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.location-list li i { color: var(--coral); font-size: 14px; }

/* Vision card */
.vision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 36px; }
.vision-card {
    background: #fff; border-radius: var(--radius-xl);
    padding: 36px 30px; box-shadow: var(--shadow-md);
    border: 1px solid var(--soft-border);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.vision-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background-image: linear-gradient(90deg, var(--bright-blue), var(--primary-blue));
}
.vision-card:nth-child(2)::before { background-image: linear-gradient(90deg, var(--coral), var(--coral-dark)); }
.vision-card:nth-child(3)::before { background-image: linear-gradient(90deg, #34D399, #059669); }
.vision-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.vision-card .v-icon {
    font-size: 26px; color: #fff;
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    width: 60px; height: 60px;
    border-radius: var(--radius-md);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px; box-shadow: var(--shadow-blue);
}
.vision-card:nth-child(2) .v-icon { background-image: linear-gradient(135deg, var(--coral), var(--coral-dark)); box-shadow: var(--shadow-coral); }
.vision-card:nth-child(3) .v-icon { background-image: linear-gradient(135deg, #34D399, #059669); box-shadow: 0 12px 24px rgba(16, 185, 129, 0.30); }
.vision-card h3 { font-size: 20px; color: var(--primary-blue); margin-bottom: 10px; font-weight: 800; }
.vision-card p { font-size: 14.5px; color: var(--text-gray); line-height: 1.65; }

/* =========================================
   CONTACT
   ========================================= */
.contact-hero {
    display: flex; align-items: center; justify-content: space-between;
    padding: 50px 0 130px; gap: 50px;
    position: relative; overflow: hidden;
}
.contact-hero::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.14) 0%, transparent 65%);
    border-radius: 50%; z-index: -1;
}
.contact-hero-text { width: 45%; }
.contact-hero-image { width: 50%; text-align: right; }
.contact-img {
    max-width: 100%; border-radius: var(--radius-xl); display: block;
    margin-left: auto; box-shadow: var(--shadow-xl);
}
.contact-cards-container {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-top: -110px; position: relative; z-index: 10; padding-bottom: 70px;
}
.contact-info-card {
    background: #FFFFFF; border-radius: var(--radius-lg); padding: 32px 20px;
    text-align: center; box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    border: 1px solid var(--soft-border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.contact-icon {
    font-size: 24px; color: #fff;
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    width: 56px; height: 56px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 8px; box-shadow: var(--shadow-blue);
}
.contact-info-card:nth-child(2) .contact-icon { background-image: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 12px 24px rgba(37, 211, 102, 0.30); }
.contact-info-card:nth-child(3) .contact-icon { background-image: linear-gradient(135deg, var(--coral), var(--coral-dark)); box-shadow: var(--shadow-coral); }
.contact-info-card:nth-child(4) .contact-icon { background-image: linear-gradient(135deg, #FCD34D, #F59E0B); box-shadow: 0 12px 24px rgba(245, 158, 11, 0.30); }
.contact-card-title { font-size: 15px; font-weight: 800; color: var(--primary-blue); margin-bottom: 6px; }
.contact-card-detail { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.contact-card-btn {
    background-image: linear-gradient(135deg, #25D366, #128C7E); color: #FFF;
    padding: 10px 20px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    margin-top: 5px; box-shadow: 0 8px 16px rgba(37, 211, 102, 0.30);
    transition: transform var(--transition);
}
.contact-card-btn:hover { transform: translateY(-2px); }

.contact-form-section {
    background-image: linear-gradient(135deg, var(--primary-blue) 0%, #061B3A 100%);
    padding: 80px 0 100px; text-align: center; position: relative; overflow: hidden;
}
.contact-form-section::before {
    content: ''; position: absolute;
    top: -100px; left: 5%;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.20) 0%, transparent 65%);
}
.contact-form-section .container { position: relative; z-index: 1; }
.contact-form-header { color: #FFFFFF; margin-bottom: 40px; }
.contact-form-header h2 { font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.025em; }
.contact-form-header p { font-size: 16px; font-weight: 500; opacity: 0.92; }
.contact-form-box {
    background: #FFFFFF; border-radius: var(--radius-xl);
    padding: 48px; max-width: 720px; margin: 0 auto;
    box-shadow: var(--shadow-xl);
    text-align: left;
}
.form-row { display: flex; gap: 18px; margin-bottom: 18px; }
.form-group { flex: 1; display: flex; flex-direction: column; }
.form-group label { font-size: 13.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.form-control {
    background-color: var(--bg-light); border: 1.5px solid var(--soft-border);
    border-radius: var(--radius-sm); padding: 14px 16px;
    font-size: 14.5px; outline: none;
    transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
    font-family: inherit;
}
.form-control:focus { border-color: var(--bright-blue); background-color: #FFFFFF; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10); }
textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.55; }
.btn-submit {
    width: 100%;
    background-image: linear-gradient(135deg, #FB7185 0%, #F43F5E 100%);
    color: white; border: none;
    padding: 17px; border-radius: var(--radius-md);
    font-size: 16px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 10px; transition: all var(--transition);
    box-shadow: var(--shadow-coral);
    font-family: inherit;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(251, 113, 133, 0.45); }
.form-footer-text { text-align: center; font-size: 13px; color: var(--primary-blue); font-weight: 600; margin-top: 14px; }

/* =========================================
   CITY PAGES
   ========================================= */
.city-section-header { text-align: center; margin-bottom: 32px; }
.city-section-header h2 { font-size: clamp(24px, 3vw, 32px); color: var(--primary-blue); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.025em; }
.city-section-header p { font-size: 15.5px; color: var(--text-gray); font-weight: 500; }

.bhk-pricing-cards { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--soft-border); }
.bhk-card {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 14px;
    background: #FFFFFF; padding: 22px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--soft-border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.bhk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bhk-icon {
    font-size: 22px; color: #fff;
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-blue);
}
.bhk-details h4 { font-size: 15px; color: var(--primary-blue); font-weight: 800; margin-bottom: 2px; }
.bhk-details p { font-size: 14px; color: var(--text-dark); font-weight: 600; }

.city-calculator-wrapper {
    background: #FFFFFF;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius-xl);
    padding: 44px;
    margin: 0 auto 70px;
    max-width: 920px;
    box-shadow: var(--shadow-lg);
}
.calc-input-group { display: flex; gap: 12px; margin-bottom: 16px; }
.calc-input { flex: 2; padding: 15px 18px; border: 1.5px solid var(--soft-border); border-radius: var(--radius-sm); font-size: 15px; background: var(--bg-light); transition: border-color var(--transition); font-family: inherit; }
.calc-input:focus { border-color: var(--bright-blue); outline: none; background: #fff; }
.calc-select { flex: 1; padding: 15px; border: 1.5px solid var(--soft-border); border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; }
.calc-btn-whatsapp {
    flex: 1.5;
    background-image: linear-gradient(135deg, #25D366, #128C7E);
    color: white; border: none; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: transform var(--transition); padding: 15px;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.30);
    font-family: inherit;
}
.calc-btn-whatsapp:hover { transform: translateY(-2px); }
.calc-features { display: flex; justify-content: center; gap: 28px; margin: 22px 0; font-size: 13.5px; color: var(--text-dark); font-weight: 600; flex-wrap: wrap; }
.calc-features i { color: var(--whatsapp-green); margin-right: 6px; }
.calc-result-box { text-align: center; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--soft-border); }
.calc-price {
    font-size: clamp(34px, 5vw, 50px); font-weight: 800;
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 22px; letter-spacing: -0.03em;
}

.city-split-section { display: flex; justify-content: space-between; gap: 50px; margin-bottom: 80px; }
.city-split-text { flex: 1; }
.city-split-image { flex: 1; }
.city-split-image img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.city-sub-list { list-style: none; margin-top: 20px; }
.city-sub-list li {
    font-size: 15.5px; color: var(--text-dark); margin-bottom: 14px; font-weight: 500;
    display: flex; align-items: flex-start; gap: 12px;
}
.city-sub-list li i {
    color: #fff; font-size: 11px;
    background-image: linear-gradient(135deg, #34D399, #059669);
    width: 22px; height: 22px;
    border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 3px;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.30);
}
.city-disclaimer { font-size: 13px; color: var(--text-gray); font-style: italic; margin-top: 16px; }
.city-testi-panel {
    background: var(--bg-soft-blue);
    border: 1px solid var(--soft-border);
    border-radius: var(--radius-xl);
    padding: 32px; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
}

/* Upcoming cities */
.upcoming-hero { text-align: center; padding: 80px 0 60px; }
.upcoming-hero > i {
    font-size: 56px; color: #fff;
    background-image: linear-gradient(135deg, var(--coral), var(--coral-dark));
    width: 90px; height: 90px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 22px; box-shadow: var(--shadow-coral);
}
.upcoming-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-bottom: 80px; }
.upcoming-card {
    background: #FFFFFF; border: 1px solid var(--soft-border); border-radius: var(--radius-xl);
    padding: 40px 22px; text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}
.upcoming-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.upcoming-card h3 { font-size: 24px; color: var(--primary-blue); margin-bottom: 12px; font-weight: 800; }
.upcoming-badge {
    display: inline-block;
    background: rgba(251, 113, 133, 0.12); color: var(--coral-dark);
    padding: 6px 16px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
}

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-page-header { padding: 70px 0 50px; }
.services-grid-2col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; margin-bottom: 70px; margin-top: 36px; }
.service-detail-card {
    background: #FFFFFF; border: 1px solid var(--soft-border); border-radius: var(--radius-xl);
    padding: 34px; box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-detail-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(37, 99, 235, 0.20); }
.service-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.service-icon-box {
    width: 56px; height: 56px;
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    color: #fff;
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}
.service-detail-card:nth-child(2) .service-icon-box { background-image: linear-gradient(135deg, var(--coral), var(--coral-dark)); box-shadow: var(--shadow-coral); }
.service-detail-card:nth-child(3) .service-icon-box { background-image: linear-gradient(135deg, #34D399, #059669); box-shadow: 0 12px 24px rgba(16, 185, 129, 0.30); }
.service-detail-card:nth-child(4) .service-icon-box { background-image: linear-gradient(135deg, #FCD34D, #F59E0B); box-shadow: 0 12px 24px rgba(245, 158, 11, 0.30); }
.service-detail-card:nth-child(5) .service-icon-box { background-image: linear-gradient(135deg, #A78BFA, #7C3AED); box-shadow: 0 12px 24px rgba(124, 58, 237, 0.30); }
.service-detail-card:nth-child(6) .service-icon-box { background-image: linear-gradient(135deg, #06B6D4, #0E7490); box-shadow: 0 12px 24px rgba(6, 182, 212, 0.30); }
.service-card-title { font-size: 20px; color: var(--text-dark); margin: 0; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.service-card-desc { font-size: 14.5px; color: var(--text-gray); margin-bottom: 20px; line-height: 1.65; }

.pricing-list { list-style: none; padding: 0; margin: 26px 0; }
.pricing-list li { display: flex; align-items: center; margin-bottom: 16px; font-size: 15px; border-bottom: 1px solid var(--soft-border); padding-bottom: 16px; }
.pricing-list li i { color: var(--whatsapp-green); margin-right: 14px; font-size: 14px; }
.price-range { font-weight: 500; color: var(--text-gray); width: 150px; }
.price-dash { color: #ccc; margin: 0 12px; }
.price-big {
    font-weight: 800;
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 19px; margin-left: auto;
}

.pricing-tip {
    background: var(--warm-tan); color: #92400E;
    padding: 14px 20px; border-radius: var(--radius-md);
    font-size: 14px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 10px; margin-top: 12px;
    border: 1px solid #FDE68A;
}
.pricing-tip i { color: #F59E0B; font-size: 18px; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer-modern {
    background: linear-gradient(180deg, #061B3A 0%, #030D1F 100%);
    color: #94A3B8;
    padding-top: 70px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1.3fr; gap: 32px; padding-bottom: 50px; }
.footer-logo { font-size: 26px; font-weight: 800; color: #FFFFFF; text-decoration: none; display: flex; align-items: center; margin-bottom: 20px; }
.footer-intro { font-size: 14.5px; line-height: 1.7; color: #94A3B8; margin-bottom: 28px; }

.trust-items { display: flex; flex-direction: column; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background-image: linear-gradient(135deg, rgba(251, 113, 133, 0.18), rgba(244, 63, 94, 0.10));
    color: var(--coral);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; flex-shrink: 0;
    border: 1px solid rgba(251, 113, 133, 0.25);
}
.trust-item strong { display: block; color: #FFFFFF; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.trust-item span { display: block; color: #94A3B8; font-size: 12px; }

.footer-heading { color: #FFFFFF; font-size: 17px; font-weight: 800; margin-bottom: 22px; letter-spacing: -0.01em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94A3B8; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 10px; transition: color var(--transition), transform var(--transition); }
.footer-links a i { font-size: 10px; color: var(--coral); }
.footer-links a:hover { color: #FFFFFF; transform: translateX(4px); }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { color: #94A3B8; font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.footer-contact-list li a { color: inherit; text-decoration: none; transition: color var(--transition); }
.footer-contact-list li a:hover { color: #FFFFFF; }
.footer-contact-list li i { color: var(--coral); font-size: 15px; width: 22px; text-align: center; }
.footer-divider { height: 1px; background: rgba(255, 255, 255, 0.10); margin: 20px 0; width: 100%; }

.footer-whatsapp-box { margin-top: 8px; }
.footer-whatsapp-box p { font-size: 13.5px; color: #94A3B8; margin-bottom: 12px; }
.footer-whatsapp-box .btn-green {
    background-image: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF; padding: 12px 22px; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; box-shadow: 0 10px 24px rgba(37,211,102,0.35);
    transition: all var(--transition);
}
.footer-whatsapp-box .btn-green:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(37,211,102,0.50); }

.footer-bottom { background-color: #020816; padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-copyright { font-size: 13px; color: #94A3B8; line-height: 1.7; }
.footer-legal a { color: #94A3B8; text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: #FFFFFF; }

.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-social > span { font-size: 14px; color: #94A3B8; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; text-decoration: none; font-size: 15px;
    transition: transform var(--transition);
}
.social-icons a:hover { transform: translateY(-3px); }
.social-fb { background: #1877F2; }
.social-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-wa { background: var(--whatsapp-green); }

/* =========================================
   MODALS
   ========================================= */
.modal-overlay {
    position: fixed; inset: 0;
    background-color: rgba(8, 16, 30, 0.70);
    z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
    padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
    background: #FFFFFF; border-radius: var(--radius-xl);
    padding: 40px; width: 100%; max-width: 480px;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
    max-height: 90vh; overflow-y: auto;
    box-shadow: var(--shadow-xl);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.close-modal {
    position: absolute; top: 16px; right: 18px;
    font-size: 26px; color: var(--text-gray);
    cursor: pointer; background: var(--bg-light); border: none;
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.close-modal:hover { background: var(--soft-border); color: var(--text-dark); }

.quick-contact-form .form-group label { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; display: block; }

/* =========================================
   ANIMATIONS — REVEAL ON SCROLL
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-fade { opacity: 0; transition: opacity 0.8s ease; }
.reveal-fade.in-view { opacity: 1; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .floating-badge, .float-wa, .hero-section::before, .hero-section::after { animation: none !important; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .nav-links { gap: 4px; }
    .header-actions .support-text { display: none; }
}

@media (max-width: 991px) {
    .mobile-toggle { display: block; }
    .nav-links {
        position: fixed; top: 74px; left: -100%;
        width: 100%; height: calc(100vh - 74px); height: calc(100dvh - 74px);
        background: var(--warm-cream); flex-direction: column; align-items: stretch;
        padding: 28px 22px; transition: left 0.4s ease;
        box-shadow: 0 10px 24px rgba(0,0,0,0.06); z-index: 999;
        overflow-y: auto; gap: 6px;
    }
    .nav-links.active { left: 0; }
    .nav-links li { margin: 0; width: 100%; }
    .nav-links a { display: block; padding: 14px 18px; font-size: 16px; border-radius: var(--radius-md); text-align: left; }
    .nav-links a.active { background: var(--primary-blue); color: #fff; }

    .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; padding: 0; max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease; border: none; background: transparent;
    }
    .dropdown-wrapper.open .dropdown-menu { max-height: 400px; padding-top: 6px; }
    .dropdown-menu li a { background: rgba(11, 44, 94, 0.04); margin-bottom: 4px; }
    .header-actions { display: none !important; }

    .hero-section, .split-row, .services-layout { flex-direction: column-reverse; text-align: center; padding: 40px 0; }
    .hero-image-wrapper, .about-hero-image-wrapper { width: 100%; margin: 30px auto !important; }
    .hero-content { width: 100%; padding-left: 0; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .split-text, .split-images { width: 100%; }
    .button-group { justify-content: center; }
    .services-slider-container { width: 100%; }

    .about-hero, .about-split-row { flex-direction: column; text-align: left; gap: 36px; }
    .about-hero-text { width: 100%; text-align: center; }
    .about-text-block { width: 100%; }
    .border-right { border-right: none; }
    .desktop-pl-40, .desktop-pr-40 { padding: 0; }
    .mini-testimonials { flex-direction: column; }

    .contact-hero { flex-direction: column; text-align: center; padding-bottom: 50px; }
    .contact-hero-text { width: 100%; margin-bottom: 30px; }
    .contact-hero-image { width: 80%; }
    .contact-img { margin: 0 auto; }
    .contact-cards-container { grid-template-columns: repeat(2, 1fr); margin-top: 0; padding-top: 30px; }

    .bhk-pricing-cards { flex-direction: column; }
    .calc-input-group { flex-direction: column; }
    .city-split-section { flex-direction: column; }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .badge-1, .about-badge-1 { left: 0; transform: scale(0.85); }
    .badge-2, .about-badge-2 { right: 0; transform: scale(0.85); }
    .badge-3 { left: 0; transform: scale(0.85); }
    .about-badge-3 { right: 0; transform: scale(0.85); }
    .badge-4 { right: 0; transform: scale(0.85); }

    .floating-badge { padding: 10px 14px; font-size: 12px; }
    .floating-badge i { font-size: 14px; }

    .cta-banner { flex-direction: column; text-align: center; gap: 20px; padding: 32px 24px; }
    .split-images { flex-direction: column; }
    .service-card { flex: 0 0 80%; }
    .location-list { grid-template-columns: 1fr; }

    .contact-cards-container { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; margin-bottom: 0; }
    .form-group { margin-bottom: 16px; }
    .contact-form-box { padding: 32px 22px; }

    .calc-features { flex-direction: column; gap: 8px; align-items: center; }
    .city-calculator-wrapper { padding: 28px 22px; }
    .pricing-list li { flex-wrap: wrap; }
    .price-big { margin-left: 0; width: 100%; padding-left: 28px; margin-top: 4px; }
    .price-dash { display: none; }
    .modal-box { padding: 30px 22px; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom-flex { flex-direction: column; gap: 14px; text-align: center; }
    .footer-whatsapp-box .btn-green { justify-content: center; width: 100%; }
    .footer-contact-list li { justify-content: center; }
    .trust-item { justify-content: center; }
}

/* =========================================
   INSIGHTS / BLOG
   ========================================= */
.insights-hero {
    background-image: linear-gradient(135deg, var(--primary-blue) 0%, #061B3A 100%);
    color: white; padding: 70px 0; position: relative; overflow: hidden;
}
.insights-hero::before {
    content: ''; position: absolute;
    top: -100px; right: 5%;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.20) 0%, transparent 65%);
}
.insights-hero-container { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; gap: 30px; }
.insights-hero-text { width: 50%; }
.insights-hero-title { font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; line-height: 1.15; letter-spacing: -0.025em; }
.insights-hero-desc { font-size: 16px; color: #cbd5e1; margin-bottom: 28px; line-height: 1.65; }
.search-bar-wrapper { position: relative; width: 100%; max-width: 420px; }
.search-bar-wrapper i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #94a3b8; }
.search-input { width: 100%; padding: 15px 16px 15px 44px; border-radius: var(--radius-pill); border: none; font-size: 14.5px; outline: none; font-family: inherit; }
.insights-hero-img { width: 40%; max-width: 420px; border-radius: var(--radius-xl); }

.page-layout { display: flex; gap: 40px; padding: 70px 0; align-items: flex-start; }
.main-column { width: 68%; }
.sidebar-column { width: 32%; position: sticky; top: 100px; }

.section-heading { font-size: 22px; color: var(--primary-blue); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.pill {
    background: white; border: 1px solid var(--soft-border); color: var(--primary-blue);
    padding: 9px 18px; border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all var(--transition);
}
.pill:hover, .pill.active {
    background-image: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    color: white; border-color: transparent;
    transform: translateY(-2px); box-shadow: var(--shadow-blue);
}

.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.article-card {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--soft-border); overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.article-img { width: 100%; height: 210px; object-fit: cover; }
.article-content-box { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.article-title { font-size: 19px; font-weight: 800; color: var(--primary-blue); margin: 0 0 12px 0; line-height: 1.3; letter-spacing: -0.02em; }
.article-excerpt { font-size: 13.5px; color: var(--text-gray); line-height: 1.65; margin-bottom: 18px; flex-grow: 1; }
.read-more { color: var(--coral); font-weight: 700; font-size: 13px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.read-more:hover { gap: 10px; }

.sidebar-widget { background: white; border-radius: var(--radius-lg); border: 1px solid var(--soft-border); padding: 26px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.widget-title { font-size: 17px; color: var(--primary-blue); font-weight: 800; margin-bottom: 16px; }
.widget-list { list-style: none; padding: 0; margin: 0; }
.widget-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; color: var(--text-dark); font-weight: 500; line-height: 1.55; align-items: flex-start; }
.widget-list li i { color: var(--coral); font-size: 13px; margin-top: 3px; }
.widget-cta-btn { display: block; width: 100%; text-align: center; padding: 13px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; text-decoration: none; margin-bottom: 8px; transition: all var(--transition); }

.single-article-header { text-align: center; margin-bottom: 40px; padding-top: 36px; }
.single-title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; color: var(--primary-blue); margin-bottom: 16px; line-height: 1.15; letter-spacing: -0.025em; }
.single-meta { font-size: 13px; color: var(--text-gray); margin-top: 18px; display: flex; justify-content: center; gap: 16px; align-items: center; flex-wrap: wrap; }
.single-featured-img { width: 100%; border-radius: var(--radius-xl); max-height: 480px; object-fit: cover; margin-bottom: 36px; box-shadow: var(--shadow-lg); }
.single-content { font-size: 16.5px; color: var(--text-dark); line-height: 1.85; }
.single-content h2, .single-content h3 { color: var(--primary-blue); margin: 28px 0 14px; }
.single-content p { margin-bottom: 18px; }
.single-content img { max-width: 100%; border-radius: var(--radius-md); margin: 20px 0; }

@media (max-width: 992px) {
    .page-layout { flex-direction: column; }
    .main-column, .sidebar-column { width: 100%; position: static; }
    .insights-hero-container { flex-direction: column; text-align: center; }
    .insights-hero-text, .insights-hero-img { width: 100%; }
    .search-bar-wrapper { margin: 0 auto; }
}
@media (max-width: 768px) {
    .articles-grid { grid-template-columns: 1fr; }
}
