﻿/* ============================================================
   AGARWAL FLORESTA JAVA — MODERN REDESIGN
   Glassmorphism · Gradient Animations · Premium UI
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --primary: #0b6b3a;
    --primary-dark: #064d28;
    --primary-light: #10a85c;
    --primary-glow: rgba(11, 107, 58, 0.35);
    --accent: #d4a948;
    --accent-dark: #b8912e;
    --accent-light: #f0d078;
    --accent-glow: rgba(212, 169, 72, 0.3);
    --text: #1a1a2e;
    --text-secondary: #555;
    --text-muted: #888;
    --bg: #fafbfc;
    --bg-alt: #f0f4f1;
    --bg-dark: #0e1628;
    --bg-darker: #080e1c;
    --white: #fff;
    --black: #000;
    --border: rgba(0,0,0,0.08);
    --success: #22c55e;
    --whatsapp: #25D366;
    --call: #3b82f6;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;

    --glass-bg: rgba(255,255,255,0.6);
    --glass-border: rgba(255,255,255,0.3);
    --glass-blur: blur(16px);
    --glass-dark: rgba(14,22,40,0.65);
    --glass-dark-border: rgba(255,255,255,0.08);

    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.14);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --shadow-accent-glow: 0 0 30px var(--accent-glow);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.35s var(--ease);
    --transition-slow: 0.6s var(--ease);

    --container-max: 1200px;
    --header-height: 72px;
}

/* ---------- Keyframe Animations ---------- */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(2deg); }
    66% { transform: translateY(6px) rotate(-1deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes ripple {
    0% { box-shadow: 0 0 0 0 var(--primary-glow); }
    70% { box-shadow: 0 0 0 14px rgba(11, 107, 58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(11, 107, 58, 0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--accent); }

ul { list-style: none; }

::selection {
    background: var(--primary);
    color: var(--white);
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text);
    line-height: 1.25;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-block { width: 100%; }

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--text);
    border-color: transparent;
    box-shadow: 0 4px 18px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--accent-glow);
    color: var(--text);
}

/* ============================================================
   HEADER / NAVBAR — Glassmorphism
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary);
    white-space: nowrap;
    transition: all var(--transition);
}
.logo:hover { color: var(--primary-dark); transform: scale(1.02); }
.logo strong { color: var(--accent); }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(11, 107, 58, 0.08);
}

.nav-link--cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white) !important;
    margin-left: 8px;
    box-shadow: 0 3px 12px var(--primary-glow);
}

.nav-link--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background: var(--text);
    border-radius: 3px;
    transition: all var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   HERO SECTION — Cinematic Gradient + Particles
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(11, 107, 58, 0.85) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 169, 72, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(8, 14, 28, 0.82) 0%, rgba(11, 107, 58, 0.75) 50%, rgba(8, 14, 28, 0.9) 100%);
}

/* Floating decorative shapes */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: var(--radius-full);
    background: rgba(212, 169, 72, 0.15);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    animation: floatSlow 15s ease-in-out infinite;
}

.hero::after {
    width: 350px;
    height: 350px;
    bottom: -50px;
    left: -80px;
    background: rgba(11, 107, 58, 0.2);
    animation: floatSlow 20s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 169, 72, 0.15);
    color: var(--accent-light);
    border: 1px solid rgba(212, 169, 72, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    animation: slideUp 0.8s var(--ease) both;
}

.hero h1 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.15;
    animation: slideUp 0.8s var(--ease) 0.1s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
    animation: slideUp 0.8s var(--ease) 0.2s both;
}

.hero-highlights {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: slideUp 0.8s var(--ease) 0.3s both;
}

.hero-highlight-item {
    background: var(--glass-dark);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    text-align: center;
    flex: 1;
    min-width: 105px;
    transition: all var(--transition);
}

.hero-highlight-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(212, 169, 72, 0.3);
    transform: translateY(-4px);
}

.hero-highlight-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-light);
    font-family: var(--font-heading);
}

.hero-highlight-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: slideUp 0.8s var(--ease) 0.4s both;
}

.hero-cta-group .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--text);
    box-shadow: 0 4px 20px var(--accent-glow);
}
.hero-cta-group .btn-primary:hover {
    box-shadow: 0 8px 35px var(--accent-glow);
    color: var(--text);
}

.hero-cta-group .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.hero-cta-group .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Hero Form — Glassmorphism */
.hero-form-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-lg);
    animation: fadeInScale 1s var(--ease) 0.5s both;
}

.form-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 4px;
    text-align: center;
}

.form-subtitle {
    font-size: 0.84rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 22px;
}

.form-group { margin-bottom: 14px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    transition: all var(--transition);
    background: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: var(--white);
}

.form-disclaimer {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

/* ============================================================
   WAVE SECTION DIVIDERS
   ============================================================ */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.wave-divider.flip { transform: rotate(180deg); }

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(11,107,58,0.08), rgba(11,107,58,0.15));
    color: var(--primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(11,107,58,0.15);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 18px auto 0;
    border-radius: 4px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 12px -12px -12px 12px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

.about-lead {
    font-size: 1.08rem;
    margin-bottom: 16px;
    line-height: 1.85;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
}

.about-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm), 0 0 0 3px var(--primary-glow);
    transform: translateX(6px);
}

.about-feature i {
    font-size: 1.4rem;
    color: var(--white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.about-feature strong { display: block; font-size: 0.95rem; }
.about-feature span { font-size: 0.8rem; color: var(--text-muted); }

.about-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   HIGHLIGHTS / STATS SECTION
   ============================================================ */
.highlights {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a2540 50%, var(--bg-dark) 100%) !important;
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    top: -120px;
    left: -100px;
    animation: floatSlow 18s ease-in-out infinite;
    pointer-events: none;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.highlight-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--glass-dark);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.highlight-card:hover::before { transform: scaleX(1); }

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(212, 169, 72, 0.2);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(212,169,72,0.15), rgba(212,169,72,0.05));
    border-radius: var(--radius-md);
    color: var(--accent-light);
}

.highlight-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.highlight-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* ============================================================
   AMENITIES SECTION
   ============================================================ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,107,58,0.03), rgba(212,169,72,0.03));
    opacity: 0;
    transition: opacity var(--transition);
}

.amenity-card:hover::before { opacity: 1; }

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(11,107,58,0.1), rgba(11,107,58,0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition);
}

.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px var(--primary-glow);
}

.amenity-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 600;
}

.amenity-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ============================================================
   FLOOR PLAN SECTION
   ============================================================ */
.floorplan {
    background: var(--bg-alt) !important;
}

.floorplan-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.floorplan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.floorplan-card::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.floorplan-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.floorplan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.floorplan-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.floorplan-card:hover img { transform: scale(1.06); }

.floorplan-info {
    padding: 18px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.floorplan-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.floorplan-info p {
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.pricing-card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 18px;
    right: -28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--text);
    padding: 4px 40px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 10px var(--accent-glow);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: var(--primary-light);
}

.pricing-header h3 {
    font-size: 1.3rem;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
}

.pricing-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.pricing-body { padding: 32px 26px 20px; }

.pricing-amount { text-align: center; margin-bottom: 8px; }

.pricing-amount .currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    vertical-align: super;
}

.pricing-amount .price {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
}

.pricing-amount .unit {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-note {
    text-align: center;
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.pricing-features { margin-bottom: 20px; }

.pricing-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
    color: var(--success);
    font-size: 0.75rem;
    width: 22px;
    height: 22px;
    background: rgba(34,197,94,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-footer { padding: 0 26px 26px; }

.pricing-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 32px;
    font-style: italic;
}

/* ============================================================
   BLURRED PRICE — Reusable
   ============================================================ */
.blur-price {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
    transition: filter var(--transition);
}

/* Hero highlight price items */
.blur-price-item {
    position: relative;
}

.blur-price-cta {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.1rem;
    background: rgba(14, 22, 40, 0.45);
    border-radius: var(--radius-md);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
}

.blur-price-item:hover .blur-price-cta {
    opacity: 1;
}

/* Pricing card blurred amount */
.blur-price-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 8px;
    padding: 16px 8px;
}

.blur-price-wrapper .blur-price {
    font-size: 3.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    filter: blur(10px);
}

.blur-price-unlock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    z-index: 2;
}

.blur-price-unlock:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 18px var(--primary-glow);
}

.blur-price-unlock i {
    font-size: 0.8rem;
}

/* ============================================================
   COSTSHEET SECTION (Blurred)
   ============================================================ */
.costsheet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.costsheet-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.costsheet-blur-wrapper {
    position: relative;
    overflow: hidden;
}

.costsheet-blur-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(8px);
    transition: filter var(--transition);
    transform: scale(1.04);
}

.costsheet-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,22,40,0.7), rgba(11,107,58,0.5));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    transition: all var(--transition);
    backdrop-filter: blur(2px);
}

.costsheet-overlay i {
    font-size: 2.8rem;
    color: var(--accent-light);
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.costsheet-overlay h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.costsheet-overlay p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.costsheet-card:hover .costsheet-blur-wrapper img {
    filter: blur(4px);
}

.costsheet-card:hover .costsheet-overlay {
    background: linear-gradient(135deg, rgba(14,22,40,0.8), rgba(11,107,58,0.6));
}

@media (min-width: 768px) {
    .costsheet-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
}

.video-placeholder img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-glow);
    animation: ripple 2s infinite;
}

.play-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: scale(1.12);
    box-shadow: var(--shadow-accent-glow);
}

/* ============================================================
   WHY GOREGAON EAST SECTION
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-card {
    padding: 30px 26px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-card i {
    font-size: 1.6rem;
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    box-shadow: 0 3px 12px var(--primary-glow);
}

.why-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.why-card p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.location-map iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.location-landmarks h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.landmarks-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition);
}

.landmarks-list li:hover {
    padding-left: 8px;
    color: var(--primary);
}

.landmarks-list li i {
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.landmarks-list li:last-child { border-bottom: none; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,107,58,0.65), rgba(14,22,40,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.1); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    transition: all var(--transition);
}

.faq-item:hover { border-color: rgba(11,107,58,0.2); }

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 2px 16px var(--primary-glow);
}

.faq-question {
    width: 100%;
    padding: 20px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    transition: transform var(--transition);
    font-size: 0.8rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,107,58,0.08);
    border-radius: var(--radius-full);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--white);
}

.faq-item.active .faq-question {
    color: var(--primary);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 22px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.faq-answer a { color: var(--primary); font-weight: 500; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a2540 50%, var(--bg-darker) 100%) !important;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(212,169,72,0.1), transparent 70%);
    bottom: -200px;
    right: -100px;
    pointer-events: none;
}

.contact-section .section-badge {
    background: linear-gradient(135deg, rgba(212,169,72,0.15), rgba(212,169,72,0.08));
    color: var(--accent-light);
    border-color: rgba(212,169,72,0.3);
}

.contact-section .section-title { color: var(--white); }
.contact-section .section-subtitle { color: rgba(255,255,255,0.65); }
.contact-section .section-divider { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: var(--glass-dark);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.contact-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,169,72,0.2);
    transform: translateX(6px);
}

.contact-card i {
    font-size: 1.3rem;
    color: var(--accent-light);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,169,72,0.2), rgba(212,169,72,0.05));
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card a,
.contact-card p {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.contact-card a:hover { color: var(--accent-light); }

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 22px;
    color: var(--primary);
    text-align: center;
    font-family: var(--font-body);
    font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-darker);
    color: rgba(255,255,255,0.65);
    padding: 56px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer h3 {
    color: var(--white);
    font-size: 1.08rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-about p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-links ul li { margin-bottom: 10px; }

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links ul li a::before {
    content: '→';
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact ul li i {
    color: var(--accent);
    width: 18px;
    text-align: center;
}

.footer-contact ul li a {
    color: rgba(255,255,255,0.65);
}
.footer-contact ul li a:hover { color: var(--accent-light); }

.footer-bottom {
    padding: 26px 0;
    text-align: center;
}

.footer-disclaimer { padding: 16px 0; margin-bottom: 12px; }

.footer-disclaimer p {
    font-size: 0.76rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.4);
}

.footer-disclaimer a { color: var(--accent); }

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    transition: all var(--transition);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.15);
    color: var(--white);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: ripple 2.5s infinite;
}
.whatsapp-btn:hover {
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.call-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 4px 20px rgba(59,130,246,0.4);
}
.call-btn:hover {
    box-shadow: 0 6px 28px rgba(59,130,246,0.5);
}

/* ============================================================
   LIGHTBOX — Modern
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 20px;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox.active .lightbox-img {
    animation: fadeInScale 0.4s var(--ease-bounce);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 998;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--text);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.animate-on-scroll.animated .amenity-card,
.animate-on-scroll.animated .highlight-card,
.animate-on-scroll.animated .why-card,
.animate-on-scroll.animated .pricing-card,
.animate-on-scroll.animated .floorplan-card,
.animate-on-scroll.animated .gallery-item,
.animate-on-scroll.animated .faq-item {
    animation: slideUp 0.5s var(--ease) both;
}

.animate-on-scroll.animated .amenity-card:nth-child(1),
.animate-on-scroll.animated .highlight-card:nth-child(1) { animation-delay: 0.05s; }
.animate-on-scroll.animated .amenity-card:nth-child(2),
.animate-on-scroll.animated .highlight-card:nth-child(2) { animation-delay: 0.1s; }
.animate-on-scroll.animated .amenity-card:nth-child(3),
.animate-on-scroll.animated .highlight-card:nth-child(3) { animation-delay: 0.15s; }
.animate-on-scroll.animated .amenity-card:nth-child(4),
.animate-on-scroll.animated .highlight-card:nth-child(4) { animation-delay: 0.2s; }
.animate-on-scroll.animated .amenity-card:nth-child(5) { animation-delay: 0.25s; }
.animate-on-scroll.animated .amenity-card:nth-child(6) { animation-delay: 0.3s; }
.animate-on-scroll.animated .amenity-card:nth-child(7) { animation-delay: 0.35s; }
.animate-on-scroll.animated .amenity-card:nth-child(8) { animation-delay: 0.4s; }
.animate-on-scroll.animated .amenity-card:nth-child(9) { animation-delay: 0.45s; }
.animate-on-scroll.animated .amenity-card:nth-child(10) { animation-delay: 0.5s; }
.animate-on-scroll.animated .amenity-card:nth-child(11) { animation-delay: 0.55s; }
.animate-on-scroll.animated .amenity-card:nth-child(12) { animation-delay: 0.6s; }

/* ============================================================
   RESPONSIVE — 576px+
   ============================================================ */
@media (min-width: 576px) {
    .about-features { grid-template-columns: 1fr 1fr; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-info { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px+
   ============================================================ */
@media (min-width: 768px) {
    .container { padding: 0 32px; }
    .section { padding: 100px 0; }
    .section-title { font-size: 2.6rem; }
    .hero h1 { font-size: 3rem; }

    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        padding: 60px 32px;
    }

    .about-grid { grid-template-columns: 1fr 1.2fr; }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .floorplan-gallery { grid-template-columns: repeat(3, 1fr); }
    .location-grid { grid-template-columns: 1.5fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }

    .wave-divider svg { height: 80px; }
}

/* ============================================================
   RESPONSIVE — 992px+
   ============================================================ */
@media (min-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .highlights-grid { grid-template-columns: repeat(4, 1fr); }
    .amenities-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .floorplan-gallery { grid-template-columns: repeat(5, 1fr); }
    .floorplan-card img { height: 280px; }

    .wave-divider svg { height: 100px; }
}

/* ============================================================
   RESPONSIVE — Mobile Nav
   ============================================================ */
@media (max-width: 991px) {
    .hamburger { display: block; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border-left: 1px solid var(--glass-border);
        transition: right var(--transition);
        z-index: 1000;
        padding: 90px 28px 28px;
        overflow-y: auto;
    }

    .nav.open { right: 0; }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: var(--radius-md);
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: 14px;
        text-align: center;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 1.9rem; }
    .hero-highlights { flex-direction: column; }
    .hero-highlight-item { flex: none; }
    .amenities-grid { grid-template-columns: 1fr; }
    .floorplan-gallery { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Print Styles ---------- */
@media print {
    .header, .floating-actions, .back-to-top, .lightbox, .hamburger,
    .wave-divider { display: none !important; }
    .hero { min-height: auto; padding: 30px 0; }
    .hero-overlay { background: none; }
    .section { padding: 30px 0; }
    .animate-on-scroll { opacity: 1 !important; transform: none !important; }
}
