/* ============================================================
   APRAJITA HEIGHTS — Complete Redesign
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   Palette: Deep Navy · Warm Gold · Warm White
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --primary:       #0d1b2a;
    --primary-light: #162336;
    --accent:        #c8a96e;
    --accent-hover:  #b8963c;
    --accent-pale:   rgba(200, 169, 110, 0.12);
    --text-main:     #1e2027;
    --text-muted:    #6b7280;
    --text-light:    #9ca3af;
    --bg-white:      #ffffff;
    --white:         #ffffff;
    --bg-warm:       #f9f7f4;
    --bg-dark:       #0d1b2a;
    --border:        rgba(0,0,0,0.07);
    --border-light:  rgba(255,255,255,0.10);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'DM Sans', sans-serif;

    --shadow-xs: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-sm: 0 6px 24px rgba(0,0,0,0.06);
    --shadow-md: 0 16px 48px rgba(0,0,0,0.10);
    --shadow-lg: 0 32px 80px rgba(0,0,0,0.14);

    --radius-sm:  8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition: all 0.45s var(--ease);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.75;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold   { color: var(--accent) !important; }
.text-white  { color: var(--bg-white) !important; }
.bg-light    { background-color: var(--bg-warm); }
.bg-dark     { background-color: var(--bg-dark); color: var(--bg-white); }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 48px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 48px; }

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #d9b878 0%, var(--accent) 50%, var(--accent-hover) 100%);
    color: var(--bg-white);
    box-shadow: 0 8px 28px rgba(200,169,110,0.38);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(200,169,110,0.55);
}

.btn-outline {
    background: transparent;
    border-color: var(--accent);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-white) !important;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(200,169,110,0.4);
}

.btn-large {
    padding: 18px 52px;
    font-size: 0.95rem;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 1rem;
}

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section {
    padding: 110px 0;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 24px;
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 24px;
}

.center-desc {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: #ffffff;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; align-items: center; }

.navbar img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 6px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
    border-radius: 2px;
}

.nav-link:hover::after { transform: scaleX(1); }


.navbar .nav-btn {
    padding: 9px 22px;
    font-size: 0.78rem;
    border-radius: 50px;
    margin-left: 8px;
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--primary);
    cursor: pointer;
    padding: 4px;
}

.nav-close-item { display: none; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    background: url('../Images/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 120px;
    overflow: hidden;
}

/* Multi-layer overlay: strong vignette bottom + left sweep */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.42) 55%, rgba(13,27,42,0.08) 100%),
        linear-gradient(to top,    rgba(13,27,42,0.60) 0%, transparent 50%);
    z-index: 1;
}

/* Body wrapper keeps content above overlay */
.hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
}

/* ---- Content column ---- */
.hero-content {
    max-width: 660px;
    color: var(--bg-white);
    animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Launch badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,169,110,0.18);
    border: 1px solid rgba(200,169,110,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: heroFadeUp 1s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: heroPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Headline */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--bg-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: heroFadeUp 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
    display: block;
}

/* Subtext */
.hero-subtext {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    max-width: 500px;
    margin-bottom: 36px;
    animation: heroFadeUp 1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* CTA buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    animation: heroFadeUp 1s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Ghost button styled for the dark hero */
.btn-hero-ghost {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.55);
    color: var(--bg-white);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.9);
    color: var(--bg-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

/* Inline stats strip */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    animation: heroFadeUp 1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 22px 32px;
    width: fit-content;
    gap: 4px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroFadeUp 1s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(200,169,110,0.9), transparent);
    animation: heroScrollPulse 2s ease-in-out infinite;
    border-radius: 1px;
}

@keyframes heroScrollPulse {
    0%   { transform: scaleY(1);   transform-origin: top; opacity: 1; }
    100% { transform: scaleY(0);   transform-origin: top; opacity: 0; }
}

/* Entry animation */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   OVERVIEW STATS
   ============================================================ */
.overview-stats {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding: 0 0 80px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.val-card {
    padding: 44px 28px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.val-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.val-card:hover::before { transform: scaleX(1); }
.val-card:last-child { border-right: none; }

.val-card:hover {
    background: var(--bg-warm);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.val-icon {
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.val-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.val-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-right: 28px;
    padding-bottom: 28px;
}

.about-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.8s var(--ease);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -8px;
    right: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--bg-white);
    width: 168px;
    height: 168px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 10px solid var(--bg-white);
    z-index: 3;
    padding: 20px;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-top: 6px;
    line-height: 1.5;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 18px;
}

.feature-list i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============================================================
   ABOUT DEVELOPER
   ============================================================ */
.developer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}


.developer-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dev-logo-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.dev-logo {
    height: 72px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.dev-tagline {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-muted);
}

.dev-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.dev-pillar {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.dev-pillar:hover {
    border-color: rgba(200,169,110,0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.dev-pillar i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.image-stack {
    position: relative;
    height: 620px;
}

.stack-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 74%;
    height: 400px;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: var(--transition);
}

.stack-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 62%;
    height: 360px;
    z-index: 1;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    border: 10px solid var(--bg-warm);
    transition: var(--transition);
}

.image-stack:hover .stack-top  { transform: translateY(-10px); }
.image-stack:hover .stack-bottom { transform: translate(8px, 8px); }

.highlight-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hl-card {
    background: var(--bg-white);
    padding: 26px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--border);
    border-left: 4px solid transparent;
}

.hl-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
    background: var(--bg-warm);
}

.hl-card i {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.hl-card h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.hl-card p {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

/* ============================================================
   AMENITIES
   ============================================================ */
.am-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.am-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.am-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    border-color: rgba(200,169,110,0.35);
}

.am-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.am-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg-dark) 0%, transparent 60%);
    opacity: 0.65;
    transition: opacity 0.4s;
}

.am-card:hover .am-img::after { opacity: 0.35; }

.am-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.am-card:hover .am-img img { transform: scale(1.12); }

.am-info { padding: 30px 32px; }

.am-info h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}

.am-info p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.am-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 48px;
}

.am-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: rgba(200,169,110,0.10);
    border: 1px solid rgba(200,169,110,0.30);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.am-tag:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(200,169,110,0.38);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.wcu-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.wcu-card {
    background: var(--bg-white);
    padding: 48px 32px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.wcu-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.wcu-card:hover::after { transform: scaleX(1); }

.wcu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.wcu-icon {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
}

.wcu-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary);
}

.wcu-card p {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
    border-radius: 0;
}

.gallery-item:hover img { transform: scale(1.14); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13,27,42,0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    color: var(--accent);
    font-size: 2rem;
    transform: scale(0.6);
    transition: transform 0.35s var(--ease);
}

.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
    padding: 110px 0;
    background: var(--primary);
}

.video-section .section-subtitle { color: var(--accent); }

.video-section .section-title { color: #fff; }

.video-section .section-desc { color: rgba(255,255,255,0.65); }

.video-section .section-title::after { background: var(--accent); }

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    background: #000;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

.video-play-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,27,42,0.35);
    transition: opacity 0.3s;
    pointer-events: none;
}

.video-play-hint i {
    font-size: 5rem;
    color: rgba(255,255,255,0.85);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
    transition: transform 0.3s, color 0.3s;
}

.video-wrapper:hover .video-play-hint i {
    transform: scale(1.1);
    color: var(--accent);
}

/* Hide the hint once video is playing */
.video-wrapper.playing .video-play-hint { opacity: 0; }

@media (max-width: 768px) {
    .video-section { padding: 64px 0; }
    .video-wrapper video { max-height: 280px; }
    .video-play-hint i { font-size: 3.5rem; }
}

/* ============================================================
   LIFESTYLE
   ============================================================ */
.lifestyle { padding: 120px 0; }

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lifestyle-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
    height: 520px;
    transition: var(--transition);
}

.lifestyle-grid:hover .lifestyle-image img {
    transform: scale(1.02);
}

/* ============================================================
   FLOOR PLANS
   ============================================================ */
.fp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
}

.fp-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.fp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.fp-content {
    padding: 32px 36px 28px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.fp-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.fp-config {
    display: inline-block;
    background: rgba(200,169,110,0.12);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.fp-size {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.fp-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    background: var(--bg-warm);
}

.fp-image img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.fp-card:hover .fp-image img { transform: scale(1.04); }



/* ============================================================
   LOCATION
   ============================================================ */
.map-wrapper iframe {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.landmark-list-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.landmark-list-center span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--bg-white);
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.landmark-list-center span:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200,169,110,0.35);
}

.landmark-list-center i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 120px 24px;
    background:
        linear-gradient(rgba(13,27,42,0.87), rgba(13,27,42,0.93)),
        url('../Images/hero.jpg') center/cover fixed;
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.88;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(200,169,110,0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 26px 32px;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.5;
}

.faq-question i {
    flex-shrink: 0;
    font-size: 0.875rem;
    color: var(--accent);
    transition: transform 0.35s var(--ease);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.faq-answer p {
    padding: 0 32px 26px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
    background: var(--bg-white);
    padding: 64px 72px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-top: 5px solid var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background: var(--bg-warm);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(200,169,110,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--primary);
    padding: 28px 0;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-legal a {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.footer-legal a:hover { color: var(--accent); }

.footer-divider {
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    padding: 40px 36px 36px;
    position: relative;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    border-top: 4px solid var(--accent);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--primary); }

.modal-logo {
    height: 44px;
    margin-bottom: 20px;
}

.modal-card-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.modal-card-sub {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.modal-field {
    margin-bottom: 18px;
}

.modal-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 6px;
}

.modal-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.975rem;
    color: var(--text-main);
    background: var(--bg-warm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-field input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
    background: var(--bg-white);
}

.modal-field input::placeholder { color: var(--text-light); }

.modal-card .btn-block { margin-top: 8px; }

@media (max-width: 480px) {
    .modal-card { padding: 32px 24px 28px; }
    .modal-card-title { font-size: 1.6rem; }
}

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.floating-contact-bar {
    position: fixed;
    right: 28px;
    bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: var(--transition);
    position: relative;
    border: none;
    cursor: pointer;
}

.floating-btn i {
    font-size: 1.5rem;
}

.floating-btn span {
    position: absolute;
    right: 76px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.floating-btn:hover span {
    opacity: 1;
    visibility: visible;
    right: 72px;
}

.call-btn { background: #3b82f6; }
.whatsapp-btn { background: #25d366; }
.enquiry-btn { background: var(--accent); }

.floating-btn:hover {
    transform: scale(1.1) translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Mobile View: Bottom Action Bar */
@media (max-width: 768px) {
    .floating-contact-bar {
        right: 0;
        bottom: 0;
        width: 100%;
        flex-direction: row;
        gap: 0;
        background: var(--white);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
        padding: 8px 0;
    }

    .floating-btn {
        flex: 1;
        border-radius: 0;
        height: 54px;
        width: auto;
        flex-direction: column;
        gap: 4px;
        box-shadow: none;
        background: transparent !important;
    }

    .floating-btn i {
        font-size: 1.25rem;
    }

    .floating-btn span {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding: 0;
        font-size: 0.72rem;
        box-shadow: none;
        letter-spacing: 0;
    }

    /* Branded colors for mobile text/icons */
    .call-btn i, .call-btn span { color: #3b82f6; }
    .whatsapp-btn i, .whatsapp-btn span { color: #25d366; }
    .enquiry-btn i, .enquiry-btn span { color: var(--accent); }
    
    .floating-btn:hover { transform: none; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    animation: fadeInUp 1.2s var(--ease) both;
}

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

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
    .overview-grid  { grid-template-columns: repeat(2, 1fr); }
    .wcu-grid-cards { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid   { grid-template-columns: repeat(3, 1fr); }

    .overview-grid {
        background: var(--bg-white);
        gap: 1px;
        background-clip: padding-box;
    }

    .val-card { border: none; }
}

/* ============================================================
   RESPONSIVE — 992px (Tablet)
   ============================================================ */
@media (max-width: 992px) {
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }

    .about-grid,
    .developer-grid,
    .highlights-grid,
    .lifestyle-grid { grid-template-columns: 1fr; gap: 48px; }


    .am-grid    { grid-template-columns: repeat(2, 1fr); }


    .image-stack {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .stack-top,
    .stack-bottom {
        position: static;
        width: 100%;
        height: 300px;
        border: none;
    }

    .about-image { height: 420px; }

    .contact-card { padding: 52px 44px; }
}

/* ============================================================
   RESPONSIVE — 768px (Mobile)
   ============================================================ */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }

    /* Navbar */
    .navbar {
        background: #ffffff;
        padding: 12px 0;
    }

    .navbar img { height: 40px; }

    .menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 80vw);
        flex-direction: column;
        background: var(--primary-light);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 36px 48px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        box-shadow: none;
        align-items: flex-start;
        overflow-y: auto;
        z-index: 1100;
    }

    .nav-links.active {
        transform: translateX(0);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav-close-item {
        display: flex;
        justify-content: flex-end;
        border-bottom: none !important;
        padding-bottom: 0;
        margin-bottom: 8px;
    }

    .nav-close {
        background: none;
        border: none;
        color: rgba(255,255,255,0.8);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 4px 8px;
        line-height: 1;
        transition: color 0.2s;
    }

    .nav-close:hover { color: #fff; }

    .nav-link {
        color: rgba(255,255,255,0.85);
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .navbar .nav-btn {
        margin-top: 12px;
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    /* Body spacing for bottom action bar */
    body { padding-bottom: 70px; }

    /* Hero */
    .hero { padding-top: 130px; padding-bottom: 100px; }
    .hero-body { justify-content: center; }
    .hero-content { text-align: center; max-width: 100%; }
    .hero-badge { justify-content: center; }
    .hero-subtext { margin-left: auto; margin-right: auto; }
    .hero-title { font-size: clamp(2.4rem, 8vw, 3.6rem); }
    .hero-actions { flex-direction: column; gap: 12px; align-items: center; }
    .hero-actions .btn-large { width: 100%; justify-content: center; }
    .hero-stats {
        padding: 18px 20px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
        overflow-x: visible;
    }
    .hero-stat { padding: 0 16px; flex-shrink: 0; }
    .hero-stat-divider { display: none; }
    .hero-stat-num { font-size: 1.5rem; }
    .hero-scroll { display: none; }
    .btn-large { padding: 16px 40px; width: 100%; justify-content: center; }

    /* Typography */
    .section-title { font-size: clamp(1.75rem, 5vw, 2.4rem); }

    /* About image — badge safe area */
    .about-image-wrapper {
        padding-right: 0;
        padding-bottom: 80px;
    }
    .experience-badge {
        width: 130px;
        height: 130px;
        bottom: 8px;
        right: 16px;
    }
    .badge-number { font-size: 2.2rem; }

    /* Grids */
    .fp-grid   { grid-template-columns: 1fr; gap: 24px; }
    .fp-content { padding: 28px 24px 22px; }
    .fp-image   { padding: 28px 24px; }
    .fp-image img { height: 280px; }
    .form-row  { grid-template-columns: 1fr; gap: 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-item { height: 200px; }
    .wcu-grid-cards { grid-template-columns: 1fr 1fr; }

    .landmark-list-center { flex-direction: column; align-items: stretch; }
    .landmark-list-center span { justify-content: flex-start; }

    /* CTA — disable fixed bg (broken on iOS Safari) */
    .cta-section {
        padding: 80px 20px;
        background-attachment: scroll;
    }
    .cta-section h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }

    /* Contact */
    .contact-card { padding: 36px 24px; }

    /* Overview */
    .overview-stats { margin-top: 0; padding-top: 32px; padding-bottom: 60px; }
    .overview-grid  { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius-md); }
    .val-card { padding: 32px 20px; }

    /* Footer */
}

/* ============================================================
   RESPONSIVE — 480px (Small Mobile)
   ============================================================ */
@media (max-width: 480px) {
    .overview-grid,
    .am-grid,
    .wcu-grid-cards,
    .gallery-grid { grid-template-columns: 1fr; }

    .gallery-item { height: 240px; }

    .hero { padding-top: 110px; padding-bottom: 80px; }
    .hero-title   { font-size: clamp(2rem, 9vw, 2.8rem); }
    .hero-subtext { font-size: 0.975rem; }
    .hero-stat    { padding: 0 12px; }
    .hero-stat-num { font-size: 1.35rem; }

    .about-image { height: 320px; }
    .dev-logo-card { padding: 32px 24px; }
    .experience-badge { width: 120px; height: 120px; right: 8px; }
    .badge-number { font-size: 2rem; }

    .lifestyle-image img { height: 320px; }

    .fp-content { padding: 22px 16px 18px; }
    .fp-image   { padding: 20px 16px; }
    .fp-image img { height: 240px; }

    .contact-card { padding: 28px 20px; }


    .sticky-btn { right: 16px; bottom: 20px; padding: 12px 20px; font-size: 0.75rem; }
}

/* ============================================================
   TOUCH / ACCESSIBILITY
   ============================================================ */
@media (hover: none) {
    .hl-card:hover,
    .wcu-card:hover,
    .am-card:hover,
    .val-card:hover,
    .fp-card:hover { transform: none; }
}

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