/* =============================================================================
   SKA Pre-Launch Wave City - Main Stylesheet
   Design system: Exaggerated Minimalism / Luxury Real Estate
   Palette: teal (#0F766E) + blue accent (#0369A1) on soft teal-white
   Typography: Cinzel (headings) + Josefin Sans (body)
   ============================================================================= */

:root {
    --color-primary: #0F766E;
    --color-primary-dark: #0B5C56;
    --color-on-primary: #FFFFFF;
    --color-secondary: #14B8A6;
    --color-accent: #0369A1;
    --color-background: #F0FDFA;
    --color-foreground: #134E4A;
    --color-muted: #E8F0F3;
    --color-border: #99F6E4;
    --color-destructive: #DC2626;
    --color-ring: #0F766E;
    --color-dark: #0B1F27;
    --color-gold: #d4af37;

    --font-heading: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Josefin Sans', 'Segoe UI', Arial, sans-serif;

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 64px;
    --space-8: 96px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.16);

    --container-max: 1200px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-foreground);
    background: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin: 0 0 var(--space-3);
    color: var(--color-dark);
    letter-spacing: 0.01em;
}

p { margin: 0 0 var(--space-3); }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--color-primary);
    color: #fff;
    padding: var(--space-2) var(--space-3);
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-height: 44px;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.2;
}
.btn:active { transform: scale(0.98); }

.btn-lg { padding: 16px 34px; font-size: 16px; min-height: 52px; }
.btn-sm { padding: 8px 16px; font-size: 14px; min-height: 40px; }
.btn-block { width: 100%; }
.btn-center { display: flex; margin: var(--space-5) auto 0; }

.btn-primary {
    background: var(--color-primary);
    color: var(--color-on-primary);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
}
.btn-ghost:hover { background: var(--color-muted); }

.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1DA851; color: #fff; transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(240, 253, 250, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    min-height: 76px;
}

.brand { display: flex; align-items: center; gap: var(--space-2); }
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-heading); font-size: 16px; color: var(--color-dark); }
.brand-text small { font-size: 12px; color: var(--color-primary); letter-spacing: 0.14em; text-transform: uppercase; }

.main-nav ul {
    display: flex;
    gap: var(--space-4);
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: var(--color-foreground);
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.main-nav a:hover { color: var(--color-primary); }

.header-cta { display: flex; align-items: center; gap: var(--space-3); }
.header-phone { display: inline-flex; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.mobile-menu {
    display: none;
    background: var(--color-background);
    border-top: 1px solid var(--color-border);
    padding: var(--space-3) var(--space-4) var(--space-4);
}
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { margin-bottom: var(--space-2); }
.mobile-menu a {
    display: block;
    padding: var(--space-2) 0;
    font-weight: 500;
    color: var(--color-foreground);
    font-size: 17px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: #0a0a0a;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: luminosity;
    animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.hero-inner {
    position: relative;
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
    max-width: 860px;
    margin-left: 0;
    background: rgba(10, 10, 10, 0.92);
    border-radius: var(--radius-md);
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}
@media (min-width: 1024px) {
    .hero-inner { max-width: var(--container-max); margin: 0 auto; }
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-3);
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    background: transparent;
    color: #d4af37;
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    max-width: 100%;
    margin-bottom: var(--space-4);
}
.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: #fff;
    font-weight: 400;
    max-width: 44ch;
}
.hero-body {
    color: #fff;
    max-width: 52ch;
    font-size: 16px;
    font-weight: 400;
}

.price-tag {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--space-3);
    margin: var(--space-5) 0 var(--space-4);
    padding: var(--space-4);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-md);
    max-width: 520px;
}
.price-label { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); font-weight: 600; width: 100%; }
.price-value { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); color: #d4af37; font-weight: 700; }
.price-value small { font-size: 0.5em; color: rgba(255, 255, 255, 0.7); }
.price-note { font-size: 14px; color: rgba(255, 255, 255, 0.7); font-weight: 500; }

.hero-price-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.hero-price-row .price-tag { margin: 0; flex: 1; min-width: 280px; }

.hero-rera-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-rera-badge:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: scale(1.05);
}
.hero-rera-badge img {
    width: 360px;
    height: auto;
    border-radius: var(--radius-sm);
}
@media (min-width: 1024px) {
    .hero-rera-badge img { width: 288px; }
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-4); }
.hero-ctas .btn-primary { background: var(--color-gold); color: #1a1408; border: 2px solid var(--color-gold); }
.hero-ctas .btn-primary:hover { background: #c9a227; border-color: #c9a227; }
.hero-ctas .btn-outline { border-color: rgba(212, 175, 55, 0.7); color: #d4af37; background: transparent; }
.hero-ctas .btn-outline:hover { background: rgba(212, 175, 55, 0.15); border-color: #d4af37; }

.hero-stats {
    position: relative;
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}
.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
}
@media (min-width: 900px) {
    .hero-stats-inner { grid-template-columns: repeat(6, 1fr); }
}
.stat { text-align: center; padding: var(--space-2); }
.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--color-gold);
}
.stat span { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ---------- Sections ---------- */
.section { padding: var(--space-7) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-6); }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}
.lead-text { font-size: 18px; color: #334155; }

/* ---------- About ---------- */
.about { background: #fff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: center;
}
@media (min-width: 900px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-visual { position: relative; }
.about-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-badge-card {
    position: absolute;
    bottom: var(--space-5);
    left: var(--space-5);
    background: var(--color-primary);
    color: #fff;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.about-badge-card strong { font-family: var(--font-heading); font-size: 1.8rem; }
.about-badge-card span { font-size: 13px; color: rgba(255,255,255,0.85); }

.check-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2) var(--space-4);
}
.check-list li { position: relative; padding-left: 28px; font-weight: 500; }
.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Highlights ---------- */
.highlights { background: var(--color-muted); }
.highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
@media (min-width: 700px) { .highlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .highlight-grid { grid-template-columns: repeat(3, 1fr); } }
.highlight-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--color-primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.h-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--color-background);
    color: var(--color-primary);
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}
.highlight-card h3 { font-size: 18px; margin-bottom: var(--space-2); }
.highlight-card p { color: #475569; margin: 0; font-size: 15px; }

/* ---------- Amenities ---------- */
.amenities { background: #fff; }
.amenity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
@media (min-width: 600px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .amenity-grid { grid-template-columns: repeat(4, 1fr); } }
.amenity-card {
    text-align: center;
    padding: var(--space-5) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}
.amenity-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-primary); transform: translateY(-3px); }
.amenity-icon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-background);
    color: var(--color-primary);
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}
.amenity-card h3 { font-size: 16px; margin-bottom: var(--space-2); }
.amenity-card p { color: #475569; font-size: 14px; margin: 0; }

/* ---------- Brochure CTA ---------- */
.brochure-cta { background: linear-gradient(120deg, #0B1F27, #0F766E); }
.cta-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
}
.cta-panel-text { flex: 1 1 400px; color: #fff; }
.cta-panel-text .eyebrow { color: var(--color-secondary); }
.cta-panel-text h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-panel-text p { color: rgba(255,255,255,0.85); }
.cta-panel-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.cta-panel-actions .btn-outline { border-color: rgba(255,255,255,0.7); color: #fff; }
.cta-panel-actions .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ---------- Floor plans ---------- */
.floorplans { background: var(--color-muted); }
.plan-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    max-width: 760px;
    margin: 0 auto var(--space-6);
}
@media (min-width: 700px) { .plan-cards { grid-template-columns: 1fr 1fr; } }
.plan-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-5);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}
.plan-card.featured { border: 2px solid var(--color-primary); }
.plan-flag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-3);
    border-radius: 999px;
    white-space: nowrap;
}
.plan-card.featured .plan-flag { background: var(--color-primary); }
.plan-card h3 { font-size: 22px; margin-bottom: var(--space-2); }
.plan-size { font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-primary); font-weight: 700; margin-bottom: var(--space-2); }
.plan-desc { color: #475569; margin-bottom: var(--space-4); }
.plan-image { display: block; margin-top: var(--space-4); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); max-height: 220px; cursor: zoom-in; }
.plan-image img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.3s ease; }
.plan-image:hover img { transform: scale(1.03); }

.siteplan-block { text-align: center; margin-bottom: var(--space-6); }
.siteplan-block h3 { margin-bottom: var(--space-4); }
.siteplan-thumb {
    position: relative;
    display: inline-block;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    max-width: 860px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.siteplan-thumb img { width: 100%; height: auto; }
.zoom-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 31, 39, 0.45);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 0.25s ease;
    text-transform: uppercase;
    font-size: 14px;
}
.siteplan-thumb:hover .zoom-hint { opacity: 1; }
.floorplan-cta { text-align: center; }

/* ---------- Site Plan ---------- */
.siteplan { background: var(--color-background); }
.siteplan-image {
    max-width: 600px;
    margin: var(--space-6) auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    cursor: zoom-in;
}
.siteplan-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.siteplan-image:hover img { transform: scale(1.03); }
.siteplan-cta { text-align: center; }

/* ---------- Investment ---------- */
.invest { background: #fff; }
.invest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
@media (min-width: 700px) { .invest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .invest-grid { grid-template-columns: repeat(3, 1fr); } }
.invest-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    background: var(--color-background);
    transition: all 0.2s ease;
}
.invest-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.invest-num {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-size: 1.3rem;
    font-weight: 700;
}
.invest-card h3 { font-size: 17px; margin: var(--space-2) 0 var(--space-2); }
.invest-card p { color: #475569; font-size: 15px; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { background: var(--color-muted); }
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-4) var(--space-3) var(--space-3);
    background: linear-gradient(transparent, rgba(11,31,39,0.85));
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}
.gallery-note { text-align: center; color: #64748b; font-size: 14px; margin-top: var(--space-5); }

/* ---------- Location ---------- */
.location { background: #fff; }
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}
@media (min-width: 900px) { .location-grid { grid-template-columns: 3fr 2fr; align-items: start; } }
.location-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.map-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-muted);
    border-radius: var(--radius-md);
    color: #64748b;
    font-size: 15px;
    border: 1px dashed var(--color-border);
}
.location-points {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}
.location-points li {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-muted);
}
.location-points li:last-child { border-bottom: none; }
.loc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-muted);
    color: var(--color-foreground);
    flex-shrink: 0;
}
.loc-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.loc-text strong {
    font-size: 16px;
    color: var(--color-dark);
    margin: 0;
}
.loc-dist {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #5B7A77;
}
.loc-dist svg { color: var(--color-gold); }
.location-address {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--color-background);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-4);
    color: #334155;
}

/* ---------- Final CTA ---------- */
.final-cta {
    background: linear-gradient(160deg, #0B1F27 0%, #0F4C45 100%);
    text-align: center;
    color: #fff;
    position: relative;
}
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    mix-blend-mode: luminosity;
    pointer-events: none;
}
.final-cta > .container { position: relative; }
.final-cta .eyebrow { color: var(--color-secondary); }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.final-cta .lead-text { color: rgba(255,255,255,0.85); }
.final-offer {
    display: inline-block;
    padding: var(--space-3) var(--space-5);
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--color-gold);
    border-radius: 999px;
    color: var(--color-gold);
    font-weight: 600;
    margin: var(--space-3) 0 var(--space-5);
}
.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-top: var(--space-6);
}
@media (min-width: 700px) { .contact-methods { grid-template-columns: repeat(3, 1fr); } }
.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    color: #fff;
    transition: all 0.2s ease;
}
.contact-method:hover { background: rgba(255,255,255,0.16); color: #fff; transform: translateY(-2px); }
.contact-method svg { color: var(--color-secondary); flex-shrink: 0; }
.contact-method span { display: flex; flex-direction: column; }
.contact-method small { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ---------- FAQ ---------- */
.faq { background: var(--color-muted); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    overflow: hidden;
}
.faq-item summary {
    padding: var(--space-4);
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 22px;
    color: var(--color-primary);
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 var(--space-4) var(--space-4); color: #475569; margin: 0; }
.faq-cta { text-align: center; margin-top: var(--space-5); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: var(--space-7) 0 var(--space-5);
}
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text small { color: var(--color-secondary); }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: var(--space-3);
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: var(--space-2); display: flex; align-items: flex-start; gap: var(--space-2); }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: var(--space-2); }
.footer-contact li svg { color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-secondary); }
.social-links { display: flex; gap: var(--space-2); margin-top: var(--space-3); }
.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}
.social-links a:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: var(--space-4);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-2);
    font-size: 14px;
}
.footer-bottom a { color: rgba(255,255,255,0.8); }
.footer-disclaimer {
    margin-top: var(--space-4);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 950;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); background: #1DA851; color: #fff; }

/* ---------- Modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(11, 31, 39, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    overflow-y: auto;
}
.modal-overlay[hidden] { display: none; }
.modal {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 460px;
    width: 100%;
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.25s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(14px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--color-muted);
    font-size: 22px;
    line-height: 1;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}
.modal-close:hover { background: var(--color-destructive); color: #fff; }
.modal-brand {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.18em;
    margin-bottom: var(--space-3);
}
.modal h2 { font-size: 24px; margin-bottom: var(--space-2); }
.modal-sub { color: #475569; font-size: 15px; }

.plan-modal { max-width: 760px; }
.plan-image-wrap {
    background: var(--color-muted);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.plan-image-wrap img { width: 100%; height: auto; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: var(--space-4); }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: var(--space-2);
    color: var(--color-dark);
}
.req { color: var(--color-destructive); }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    min-height: 46px;
    background: #fff;
    color: var(--color-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.18);
}
.form-group input.has-error,
.form-group textarea.has-error { border-color: var(--color-destructive); }
.field-error {
    display: block;
    color: var(--color-destructive);
    font-size: 13px;
    margin-top: var(--space-2);
    min-height: 0;
}
.form-note { font-size: 12px; color: #64748b; text-align: center; margin-top: var(--space-3); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

.modal-success { text-align: center; padding: var(--space-4) 0; }
.success-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}
.modal-success h3 { font-size: 22px; }
.modal-success p { color: #475569; margin-bottom: var(--space-4); }

/* ---------- Lightbox (simple) ---------- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(11, 31, 39, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}
.lightbox-overlay img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
    .header-phone { display: none; }
    .mobile-menu.open { display: block; }
}

@media (max-width: 600px) {
    :root { --space-7: 48px; }
    .section { padding: var(--space-6) 0; }
    .container { padding-left: var(--space-3); padding-right: var(--space-3); }
    .btn { padding: 12px 20px; }
    .hero-ctas .btn { width: 100%; }
    .check-list { grid-template-columns: 1fr; }
    .cta-panel { flex-direction: column; align-items: stretch; text-align: center; }
    .cta-panel-actions { flex-direction: column; }
    .cta-panel-actions .btn { width: 100%; }
}

/* =============================================================================
   SKA - Motion & Scroll-Reveal System
   ============================================================================= */

/* ---------- Hero entrance animations ---------- */
.hero .hero-badge,
.hero h1,
.hero .hero-sub,
.hero .hero-body,
.hero .price-tag,
.hero .hero-ctas,
.hero-stats .stat {
    animation: riseUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero h1 { animation-delay: 0.1s; }
.hero .hero-sub { animation-delay: 0.22s; }
.hero .hero-body { animation-delay: 0.32s; }
.hero .price-tag { animation-delay: 0.42s; }
.hero .hero-ctas { animation-delay: 0.54s; }
.hero .hero-badge { animation-delay: 0.05s; }
.hero-stats .stat:nth-child(1) { animation-delay: 0.6s; }
.hero-stats .stat:nth-child(2) { animation-delay: 0.68s; }
.hero-stats .stat:nth-child(3) { animation-delay: 0.76s; }
.hero-stats .stat:nth-child(4) { animation-delay: 0.84s; }
.hero-stats .stat:nth-child(5) { animation-delay: 0.92s; }
.hero-stats .stat:nth-child(6) { animation-delay: 1.0s; }

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

/* ---------- Scroll reveal (JS toggles .revealed) ---------- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
    opacity: 0;
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal { transform: translateY(36px); }
.reveal-left { transform: translateX(-42px); }
.reveal-right { transform: translateX(42px); }
.reveal-zoom { transform: scale(0.92); }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed, .reveal-zoom.revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Staggered children */
.stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.revealed > * { opacity: 1; transform: translateY(0); }
.stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.revealed > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.revealed > *:nth-child(7) { transition-delay: 0.47s; }
.stagger.revealed > *:nth-child(8) { transition-delay: 0.54s; }
.stagger.revealed > *:nth-child(9) { transition-delay: 0.61s; }
.stagger.revealed > *:nth-child(10) { transition-delay: 0.68s; }

/* ---------- Animated counters ---------- */
.stat strong, .count-up {
    display: inline-block;
    position: relative;
}

/* ---------- Card hover polish ---------- */
.highlight-card,
.amenity-card,
.invest-card,
.plan-card,
.contact-method,
.gallery-item {
    position: relative;
}
.highlight-card::before,
.amenity-card::before,
.invest-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(15, 118, 110, 0.12), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.highlight-card:hover::before,
.amenity-card:hover::before,
.invest-card:hover::before { opacity: 1; }

.highlight-card .h-icon,
.amenity-card .amenity-icon {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
}
.highlight-card:hover .h-icon,
.amenity-card:hover .amenity-icon {
    transform: translateY(-4px) scale(1.08) rotate(-4deg);
    background: var(--color-primary);
    color: #fff;
}

/* ---------- Button shine sweep ---------- */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 140%; }

/* ---------- Gallery image zoom + caption slide ---------- */
.gallery-caption {
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption { transform: translateY(0); }
.gallery-item img { transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }

/* ---------- FAQ summary polish ---------- */
.faq-item summary { transition: background 0.25s ease, color 0.25s ease; }
.faq-item summary:hover { background: var(--color-background); }

/* ---------- Floating WhatsApp pulse ---------- */
.whatsapp-float { animation: floatPulse 2.6s ease-in-out infinite; }
@keyframes floatPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- Section eyebrow underline grow ---------- */
.eyebrow {
    position: relative;
    padding-bottom: var(--space-2);
}
.eyebrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 34px;
    height: 2px;
    background: var(--color-secondary);
}

/* ---------- Progress bar at top ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-gold));
    z-index: 1500;
    transition: width 0.08s linear;
}

/* ---------- CTA panels animated gradient ---------- */
.brochure-cta {
    background: linear-gradient(-45deg, #0B1F27, #0F766E, #0369A1, #0B1F27);
    background-size: 300% 300%;
    animation: gradientShift 14s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---------- Investment numbers pop ---------- */
.invest-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}
.invest-card:hover .invest-num {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: rotate(-8deg) scale(1.08);
}

/* ---------- Site plan / floor plan hover ---------- */
.siteplan-thumb img { transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.siteplan-thumb:hover img { transform: scale(1.03); }

/* ---------- Mobile menu slide ---------- */
.mobile-menu {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}
.mobile-menu.open {
    max-height: 520px;
    opacity: 1;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
