/* ================================================================
   BHOO VAIBHAV GARDEN — Premium Real Estate Design System
   ================================================================ */

/* ---------------------------------------------------------------
   0. IMPORTS & RESET
   --------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #0B3D2E;
    --primary-dark: #072A1F;
    --primary-light: #145A40;
    --primary-lighter: #1B7A57;
    --accent: #C9A84C;
    --accent-light: #E0C97F;
    --accent-dark: #A68B3A;
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --cream: #FDF9F0;
    --text-dark: #1A1A1A;
    --text-medium: #3D3D3D;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border-light: rgba(201, 168, 76, 0.15);
    --border-medium: rgba(201, 168, 76, 0.3);
    
    /* Glass */
    --glass-bg: rgba(11, 61, 46, 0.75);
    --glass-bg-light: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(201, 168, 76, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-py: 100px;
    --container-max: 1200px;
    --container-px: 24px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-pill: 50px;
    --radius-full: 50%;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-in-out);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    width: 100%;
}

/* ---------------------------------------------------------------
   1. SCROLL PROGRESS BAR
   --------------------------------------------------------------- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    width: 0%;
    z-index: 10000;
    transition: width 50ms linear;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

/* ---------------------------------------------------------------
   2. STICKY HEADER
   --------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 18px 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(7, 42, 31, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
}

.logo-icon {
    width: 60px !important; 
    height: 60px !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--accent-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all var(--duration-fast) var(--ease-in-out);
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(201, 168, 76, 0.15);
}

.nav-cta {
    font-family: var(--font-accent) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--primary-dark) !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-pill) !important;
    margin-left: 8px;
    transition: all var(--duration-fast) var(--ease-in-out) !important;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4) !important;
    background: linear-gradient(135deg, var(--accent-light), var(--accent)) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
    padding: 8px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------------------------------------------------------------
   3. SECTION TYPOGRAPHY
   --------------------------------------------------------------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ---------------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-light);
    color: var(--accent-light);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.85rem;
}

/* ---------------------------------------------------------------
   5. HERO SECTION
   --------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.hero:hover .hero-bg img {
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: 
        linear-gradient(180deg, 
            rgba(7, 42, 31, 0.7) 0%, 
            rgba(11, 61, 46, 0.5) 40%, 
            rgba(7, 42, 31, 0.85) 100%),
        linear-gradient(135deg, 
            rgba(201, 168, 76, 0.05) 0%, 
            transparent 60%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.hero-particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 3s; animation-duration: 22s; }
.hero-particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 6s; animation-duration: 16s; }
.hero-particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 9s; animation-duration: 20s; }
.hero-particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 2s; animation-duration: 24s; }
.hero-particle:nth-child(6) { left: 15%; top: 80%; animation-delay: 5s; animation-duration: 19s; }
.hero-particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 8s; animation-duration: 21s; }
.hero-particle:nth-child(8) { left: 90%; top: 85%; animation-delay: 11s; animation-duration: 17s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-100px) translateX(30px) scale(1.5); opacity: 0.6; }
    90% { opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--container-px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent);
    font-size: 0.7rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 44px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    font-family: var(--font-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ---------------------------------------------------------------
   6. ABOUT SECTION
   --------------------------------------------------------------- */
.about {
    padding: var(--section-py) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-image-badge i {
    font-size: 1.5rem;
    color: var(--accent);
}

.about-image-badge-text {
    color: var(--white);
}

.about-image-badge-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.about-image-badge-text span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin: 24px 0 16px;
}

.about-text p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-in-out);
}

.about-feature:hover {
    background: var(--cream);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.about-feature i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature span {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
}

/* ---------------------------------------------------------------
   7. SERVICES SECTION
   --------------------------------------------------------------- */
.services {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.08), rgba(201, 168, 76, 0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------------------------------------------------------------
   8. WHY CHOOSE US
   --------------------------------------------------------------- */
.why-us {
    padding: var(--section-py) 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--duration-normal) var(--ease-out);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--glass-border);
    transform: translateY(-6px);
}

.why-card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.4;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--primary-dark);
    transition: transform var(--duration-normal) var(--ease-out);
}

.why-card:hover .why-card-icon {
    transform: rotateY(180deg);
}

.why-card h3 {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ---------------------------------------------------------------
   9. MASTER PLAN SECTION
   --------------------------------------------------------------- */
.masterplan {
    padding: var(--section-py) 0;
    background: var(--white);
}

.masterplan-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-light);
    cursor: zoom-in;
    max-height: 650px;
}

.masterplan-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--off-white);
    transition: transform var(--duration-slow) var(--ease-out);
}

.masterplan-wrapper:hover img {
    transform: scale(1.02);
}

.masterplan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(11, 61, 46, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    transition: all var(--duration-normal);
    pointer-events: none;
}

.masterplan-overlay-text {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.masterplan-overlay-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.masterplan-overlay-text .btn {
    pointer-events: all;
}

/* Master Plan Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    padding: 40px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    cursor: pointer;
    transition: all var(--duration-fast);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-content {
    max-width: 95vw;
    max-height: 90vh;
    overflow: auto;
    border-radius: var(--radius-md);
    transform: scale(0.9);
    transition: transform var(--duration-normal) var(--ease-out);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* Zoom controls */
.modal-zoom-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(0,0,0,0.6);
    padding: 8px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
}

.modal-zoom-controls button {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration-fast);
}

.modal-zoom-controls button:hover {
    background: rgba(255,255,255,0.3);
}

/* ---------------------------------------------------------------
   10. VIDEO SECTION
   --------------------------------------------------------------- */
.video-section {
    position: relative;
    padding: var(--section-py) 0;
    background: var(--primary-dark);
    overflow: hidden;
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 9;
    max-height: 600px;
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.video-overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(7, 42, 31, 0.4);
    pointer-events: none;
    z-index: 2;
}

.video-overlay-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.video-overlay-text p {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--accent-light);
    margin-top: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(201, 168, 76, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 32px;
    cursor: pointer;
    pointer-events: all;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
    animation: pulse-ring 2s infinite;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--accent);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(201, 168, 76, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* ---------------------------------------------------------------
   11. GALLERY SECTION
   --------------------------------------------------------------- */
.gallery {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 61, 46, 0.7) 100%);
    opacity: 0;
    transition: opacity var(--duration-normal);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-item-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 2rem;
    color: var(--white);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay i {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ---------------------------------------------------------------
   12. PLOT AVAILABILITY
   --------------------------------------------------------------- */
.plots {
    padding: var(--section-py) 0;
    background: var(--white);
}

.plots-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-medium);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.plots-table-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.plots-table {
    width: 100%;
    border-collapse: collapse;
}

.plots-table thead {
    background: var(--primary);
}

.plots-table thead th {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    padding: 16px 20px;
    text-align: left;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plots-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: all var(--duration-fast);
}

.plots-table tbody tr:hover {
    background: rgba(201, 168, 76, 0.05);
}

.plots-table tbody tr:last-child {
    border-bottom: none;
}

.plots-table tbody td {
    padding: 16px 20px;
    font-size: 0.92rem;
    color: var(--text-medium);
    white-space: nowrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
}

.status-available {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.status-available::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #059669;
    border-radius: 50%;
}

.status-sold {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.status-sold::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #DC2626;
    border-radius: 50%;
}

.status-reserved {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

.status-reserved::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #D97706;
    border-radius: 50%;
}

/* ---------------------------------------------------------------
   13. FEATURES / AMENITIES
   --------------------------------------------------------------- */
.features {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--off-white), var(--cream));
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.feature-item-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.feature-item h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------------------------------------------------------------
   14. LOCATION SECTION
   --------------------------------------------------------------- */
.location {
    padding: var(--section-py) 0;
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-light);
    height: 480px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.location-info p {
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.8;
}

.location-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-point {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    transition: all var(--duration-fast);
}

.location-point:hover {
    background: var(--cream);
    transform: translateX(4px);
}

.location-point i {
    font-size: 1.2rem;
    color: var(--accent);
    min-width: 20px;
}

.location-point-text strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--primary);
}

.location-point-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------------------------------------------------------------
   15. CONTACT SECTION
   --------------------------------------------------------------- */
.contact {
    padding: var(--section-py) 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    color: var(--white);
}

.contact-info .section-subtitle {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
}

.contact-detail-text {
    color: rgba(255, 255, 255, 0.8);
}

.contact-detail-text strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail-text a {
    color: var(--white);
    font-size: 1.05rem;
}

.contact-detail-text a:hover {
    color: var(--accent-light);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all var(--duration-fast);
}

.contact-social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-card > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: all var(--duration-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.6);
}

/* ---------------------------------------------------------------
   16. FOOTER
   --------------------------------------------------------------- */
.footer {
    background: var(--primary-dark);
    padding: 64px 0 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer h4 {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--duration-fast);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
}

.footer-newsletter-form input:focus {
    border-color: var(--accent);
}

.footer-newsletter-form button {
    padding: 12px 20px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: background var(--duration-fast);
}

.footer-newsletter-form button:hover {
    background: var(--accent-light);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links a:hover {
    color: var(--accent-light);
}

/* ---------------------------------------------------------------
   17. FLOATING ELEMENTS
   --------------------------------------------------------------- */
/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    transition: all var(--duration-normal) var(--ease-out);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--duration-normal) var(--ease-out);
    animation: pulse-whatsapp 2s infinite;
}



.btn {
    white-space: nowrap;   /* prevents line break */
}

.masterplan-overlay-text .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: var(--primary-dark);
    border-top: 1px solid var(--glass-border);
    padding: 12px 16px;
    backdrop-filter: blur(20px);
}

.mobile-cta-bar-inner {
    display: flex;
    gap: 10px;
}

.mobile-cta-bar .btn {
    flex: 1;
    padding: 14px;
    font-size: 0.85rem;
    text-align: center;
    justify-content: center;
}

/* ---------------------------------------------------------------
   18. ANIMATIONS
   --------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--duration-slow) var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all var(--duration-slow) var(--ease-out);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--duration-slow) var(--ease-out);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--duration-slow) var(--ease-out);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children > *:nth-child(7) { transition-delay: 480ms; }
.stagger-children > *:nth-child(8) { transition-delay: 560ms; }

/* Counter animation */
.counter-value {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------
   19. RESPONSIVE DESIGN
   --------------------------------------------------------------- */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    :root {
        --section-py: 80px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right var(--duration-normal) var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 14px 20px;
        border-radius: var(--radius-sm);
        width: 100%;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 16px;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 380px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 380px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --container-px: 20px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .plots-table-wrapper {
        overflow-x: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .mobile-cta-bar {
        display: block;
    }

    .whatsapp-float {
        bottom: 80px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    :root {
        --section-py: 52px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .gallery-item {
        height: 220px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .modal-overlay {
        padding: 16px;
    }

    .plots-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ---------------------------------------------------------------
   20. UTILITY CLASSES
   --------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.d-none { display: none; }
.d-block { display: block; }

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    cursor: zoom-out;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(0.9);
    transition: transform var(--duration-normal) var(--ease-out);
}

.gallery-modal.active img {
    transform: scale(1);
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-modal-prev {
    left: 24px;
}

.gallery-modal-next {
    right: 24px;
}

/* Print styles */
@media print {
    .header, .whatsapp-float, .mobile-cta-bar, .scroll-progress {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}

/* ================= MOBILE VIDEO FIX ================= */

@media (max-width: 768px) {

    .video-container {
        aspect-ratio: auto;       /* remove fixed ratio */
        height: 300px;            /* control height manually */
    }

    .video-overlay-text {
        padding: 16px;
        text-align: center;
    }

    .video-overlay-text h2 {
        font-size: 20px !important;   /* reduce big text */
        line-height: 1.3;
    }

    .video-overlay-text p {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .video-play-btn {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
}

/* Desktop (default) */
.hero-badge {
    margin-top: 100px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-badge {
        margin-top: 30px;
    }
}