/* ============================================
   RADHA MEADOWS - Landing Page Styles
   Fonts: Canela (headings), Lato (body), Playfair Display Italic (highlight)
   Colors: #E7A252 (gold accent), #001822 (dark bg)
   ============================================ */

/* === Font Face Declarations === */
@font-face {
    font-family: 'Canela';
    src: url('fonts/Canela Family/Canela-Light-Trial.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Canela';
    src: url('fonts/Canela Family/Canela-Regular-Trial.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Canela';
    src: url('fonts/Canela Family/Canela-Medium-Trial.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Canela';
    src: url('fonts/Canela Family/Canela-Bold-Trial.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Canela';
    src: url('fonts/Canela Family/Canela-Black-Trial.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* === CSS Variables === */
:root {
    --gold: #E7A252;
    --gold-light: #f0be7e;
    --gold-dark: #c98a3c;
    --dark: #001822;
    --dark-light: #002a3a;
    --dark-lighter: #003d54;
    --white: #ffffff;
    --off-white: #f8f6f2;
    --text-body: #555555;
    --text-light: #999999;
    --border-light: #e8e8e8;
    --font-heading: 'Canela', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 30px rgba(231,162,82,0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
}

/* === Reset & Base === */
html { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--gold-dark); }

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.preloader-logo { width: 120px; margin: 0 auto 30px; animation: pulse 1.5s ease infinite; }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: var(--gold); border-radius: 3px; animation: loadFill 2s ease forwards; }
@keyframes loadFill { to { width: 100%; } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }

/* === Highlight Bayshore Text === */
.highlight-bayshore {
    font-family: var(--font-accent);
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
    display: inline;
    line-height: inherit;
}

/* === Section Common === */
.section { padding: 100px 0; position: relative; }
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--gold);
}
.section-tag-light { color: var(--gold); }
.section-tag-light::before { background: var(--gold); }
.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-title-light { color: var(--white); }
.section-subtitle {
    font-size: 17px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}
.section-subtitle-light { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* === Header === */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    transition: var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: var(--transition);
}
.site-header:not(.scrolled) .header-inner {
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}
.header-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-logo-link { display: flex; align-items: center; }
.header-logo-link .logo-meadows { width: 90px; height: auto; transition: var(--transition); }
.header-logo-link .logo-spaces { width: 82px; height: auto; transition: var(--transition); }
/* White logos visible by default (on hero), blue hidden */
.logo-blue { display: none; }
.logo-white { display: block; }
/* When scrolled: swap to blue logos */
.site-header.scrolled .logo-blue { display: block; }
.site-header.scrolled .logo-white { display: none; }
.logo-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.3);
    transition: var(--transition);
}
.header-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.header-nav ul li a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    padding: 8px 14px;
    position: relative;
    transition: var(--transition-fast);
}
.header-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}
.header-nav ul li a:hover { color: var(--gold); }
.header-nav ul li a:hover::after { width: 70%; }
.nav-enquire-btn {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 4px !important;
}
.nav-enquire-btn::after { display: none !important; }
.nav-enquire-btn:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
.site-header.scrolled .nav-enquire-btn { color: var(--white) !important; }
/* Center logo removed - now using dual logos on left */

/* Scrolled Header */
.site-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.site-header.scrolled::after { background: var(--border-light); }
.site-header.scrolled .header-inner { padding-top: 10px; padding-bottom: 10px; }
.site-header.scrolled .header-logo-link .logo-meadows { width: 78px; }
.site-header.scrolled .header-logo-link .logo-spaces { width: 71px; }
.site-header.scrolled .logo-divider { background: rgba(0,24,34,0.15); }
.site-header.scrolled .header-nav ul li a { color: var(--dark); }
.site-header.scrolled .header-nav ul li a:hover { color: var(--gold); }
/* Scrolled center logo removed */

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.site-header.scrolled .hamburger span { background: var(--dark); }
.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); }

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0; right: -100%;
    width: 320px;
    height: 100%;
    background: var(--dark);
    z-index: 1001;
    transition: var(--transition);
    padding: 80px 40px 40px;
    overflow-y: auto;
}
.mobile-nav-overlay.active { right: 0; }
.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.mobile-nav-close:hover { background: var(--gold); }
.mobile-nav-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}
.mobile-nav-logos .logo-divider {
    height: 32px;
    background: rgba(255,255,255,0.2);
}
.mobile-nav-logo-meadows { width: 80px; height: auto; }
.mobile-nav-logo-spaces { width: 73px; height: auto; }
.mobile-nav-inner ul { list-style: none; padding: 0; }
.mobile-nav-inner ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-inner ul li a {
    display: block;
    padding: 14px 0;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.mobile-nav-inner ul li a:hover { color: var(--gold); padding-left: 10px; }

/* === Hero Section === */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.hero-section picture { display: block; width: 100%; }
.hero-banner {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 4px;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.btn-hero-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-hero-primary:hover::before { left: 100%; }
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    white-space: nowrap;
    transition: var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    transition: var(--transition);
}
.btn-primary-custom:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* === Overview Section === */
.overview-section { background: var(--off-white); }
.overview-text { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.overview-highlights {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}
.overview-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
}
.overview-highlights li i {
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.overview-image-wrapper {
    position: relative;
    padding: 30px;
}
.overview-image-shape {
    position: relative;
    border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: morphShape 8s ease-in-out infinite;
}
@keyframes morphShape {
    0%, 100% { border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%; }
    25% { border-radius: 60% 40% 30% 70% / 40% 60% 50% 50%; }
    50% { border-radius: 40% 60% 70% 30% / 60% 50% 40% 50%; }
    75% { border-radius: 70% 30% 40% 60% / 50% 50% 60% 40%; }
}
.overview-image-shape img { width: 100%; height: 400px; object-fit: cover; }

/* === Highlights Section === */
.highlights-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.highlights-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,162,82,0.08) 0%, transparent 70%);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.highlight-card {
    text-align: center;
    padding: 44px 28px 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.highlight-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.highlight-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.06); }
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-icon-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.highlight-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: var(--gold);
    z-index: 2;
}
.highlight-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.highlight-circle circle {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}
.highlight-card.animated .highlight-circle circle { stroke-dashoffset: 0 !important; }
.highlight-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.highlight-text-stat { font-size: 36px; }
.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}
.highlight-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}

/* === Features Section === */
/* === Features Section === */
.features-section {
    background: var(--off-white);
}

/* --- Image Banner --- */
.feat-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 440px;
    margin-bottom: 0;
}
.feat-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.feat-img.active { opacity: 1; }
.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- 4 Equal Cards Row --- */
.feat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.feat-card {
    padding: 36px 28px;
    border-right: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    background: transparent;
}
.feat-card:last-child { border-right: none; }
.feat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.feat-card:hover {
    background: var(--white);
    transform: translateY(-16px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    z-index: 2;
    border-radius: var(--radius-md);
}
.feat-card.active {
    background: var(--white);
    transform: translateY(-16px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    z-index: 2;
    border-radius: var(--radius-md);
}
.feat-card:hover::before, .feat-card.active::before {
    transform: scaleX(1);
}
.feat-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 12px;
}
.feat-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0;
}

/* === Amenities Section === */
.amenities-section { background: var(--dark); }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.amenity-card {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: default;
}
.amenity-card:hover {
    transform: translateY(-6px);
    background: rgba(231,162,82,0.08);
    border-color: rgba(231,162,82,0.2);
}
.amenity-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(231,162,82,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    transition: var(--transition);
}
.amenity-card:hover .amenity-icon { background: var(--gold); color: var(--white); transform: scale(1.1); }
.amenity-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

/* === Parallax / Investment Section === */
.parallax-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.parallax-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,24,34,0.35);
}
.parallax-content { position: relative; z-index: 2; padding: 80px 0; }
.parallax-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}
.parallax-subtitle {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* === Master Plan Section === */
.masterplan-section { background: var(--off-white); }
.masterplan-wrapper { position: relative; }
.masterplan-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.masterplan-image img { width: 100%; }
.masterplan-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,24,34,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.masterplan-image:hover .masterplan-overlay { opacity: 1; }
.masterplan-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.masterplan-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.masterplan-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.masterplan-info-card i { font-size: 24px; color: var(--gold); }
.masterplan-info-card strong { display: block; font-size: 15px; color: var(--dark); }
.masterplan-info-card span { font-size: 14px; color: var(--text-light); }

/* Approved By Inline */
.approved-by-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.approved-by-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap;
}
.approved-by-inline img {
    height: 36px;
    width: auto;
}
.masterplan-compact {
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}
.masterplan-compact img {
    width: auto;
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
}

/* === Gallery Section === */
.gallery-section {
    background: var(--dark);
    padding-bottom: 100px;
    overflow: hidden;
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}
.gallery-masonry-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.gallery-masonry-big {
    grid-row: span 2;
}
.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(transparent, rgba(0,24,34,0.8));
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.gallery-masonry-item:hover .gallery-item-overlay { opacity: 1; transform: translateY(0); }
.gallery-item-overlay span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
}
.gallery-masonry-item { cursor: pointer; }
.gallery-masonry-item.gallery-mobile-only { display: none !important; }

/* === Lightbox === */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-prev,
.lightbox-next {
    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: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    text-align: center;
}
@media (max-width: 767px) {
    .lightbox-prev,
    .lightbox-next { width: 40px; height: 40px; font-size: 14px; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 16px; }
    .lightbox-caption { font-size: 14px; bottom: 24px; }
}

/* === Location Section === */
.location-section {
    background: var(--white);
}
.loc-header {
    margin-bottom: 40px;
}
.loc-address {
    font-size: 15px;
    color: var(--text-body);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.loc-address i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
}

/* --- Two Column Layout --- */
.loc-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

/* --- Timeline --- */
.loc-timeline {
    position: relative;
    padding-left: 56px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.loc-timeline-line {
    position: absolute;
    left: 22px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(231,162,82,0.12));
    border-radius: 2px;
}
.loc-stop {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    position: relative;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.loc-stop:last-child { border-bottom: none; }
.loc-stop:hover {
    transform: translateX(4px);
}
.loc-stop-dot {
    position: absolute;
    left: -56px;
    width: 46px;
    height: 46px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 0 0 6px var(--white);
}
.loc-stop:hover .loc-stop-dot {
    box-shadow: 0 0 0 6px var(--white), 0 0 0 10px rgba(231,162,82,0.15);
    transform: scale(1.08);
}
.loc-stop-info {
    flex: 1;
    padding-top: 2px;
}
.loc-stop-info strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.2;
}
.loc-stop-info span {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.5;
}
.loc-stop-time {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    white-space: nowrap;
    min-width: 65px;
    text-align: right;
}
.loc-stop-time small {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

/* --- Map Side --- */
.loc-map-side {
    position: sticky;
    top: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    box-shadow: var(--shadow-lg);
}
.loc-map-side iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Location Category Tabs --- */
.loc-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.loc-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.loc-cat-tab {
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--white);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.loc-cat-tab i {
    font-size: 14px;
    color: var(--gold);
}
.loc-cat-tab:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(231,162,82,0.05);
}
.loc-cat-tab.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.loc-cat-tab.active i {
    color: var(--white);
}
.loc-cat-content {
    min-height: 200px;
}
.loc-cat-panel {
    display: none;
}
.loc-cat-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.loc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.loc-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}
.loc-list li:last-child {
    border-bottom: none;
}
.loc-list li:hover {
    padding-left: 8px;
}
.loc-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}
.loc-time {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    background: rgba(231,162,82,0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* === FAQ Section === */
.faq-section { background: var(--off-white); }
.accordion-item {
    border: none !important;
    margin-bottom: 12px;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.accordion-button {
    font-family: var(--font-heading) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    color: var(--dark) !important;
    padding: 20px 24px !important;
    background: var(--white) !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--dark) !important; background: var(--white) !important; font-weight: 500 !important; }
.accordion-button::after { filter: none; background-size: 14px; }
.accordion-button:not(.collapsed)::after { filter: brightness(0.3); }
.accordion-item:has(.accordion-button:not(.collapsed)) { border-left: 3px solid var(--gold) !important; box-shadow: var(--shadow-md); }
.accordion-body { padding: 4px 24px 22px !important; font-size: 15px; color: var(--dark); line-height: 1.8; background: var(--white); }

/* === Contact Section === */
.contact-section { background: var(--dark); }
.contact-desc { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 30px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-info-item i { font-size: 20px; color: var(--gold); margin-top: 4px; }
.contact-info-item strong { display: block; color: var(--white); font-size: 16px; margin-bottom: 4px; }
.contact-info-item span, .contact-info-item a { color: rgba(255,255,255,0.6); font-size: 15px; }
.contact-info-item a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 12px; }
.contact-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}
.contact-socials a:hover { background: var(--gold); border-color: var(--gold); }

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 24px;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 0.2rem rgba(231,162,82,0.2); }
.form-floating label { color: var(--text-light); }
.btn-submit {
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-submit:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* === Footer === */
.site-footer {
    background: #000d14;
    padding: 40px 0 0;
    color: rgba(255,255,255,0.6);
}
.site-footer > .container > .row {
    row-gap: 30px;
}
/* Footer Approvals Column */
.footer-approvals-col {
    display: flex;
    flex-direction: column;
}
.footer-approval-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.footer-approval-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-approval-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.footer-approval-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer-approval-number {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.2px;
    word-break: break-word;
    overflow-wrap: break-word;
}
.footer-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.footer-logo-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.2);
}
.footer-logo-meadows { width: 90px; height: auto; }
.footer-logo-spaces { width: 82px; height: auto; }
.footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 0; padding-right: 30px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition-fast);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 14px; transition: var(--transition-fast); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; font-size: 13px; }
.footer-disclaimer-row {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 28px;
    padding-top: 18px;
}
.footer-disclaimer-row .footer-disclaimer {
    margin-bottom: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    margin-top: 18px;
}
.footer-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 12px;
    line-height: 1.6;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.5); font-weight: 700; }
.footer-disclaimer a { color: rgba(255,255,255,0.45); text-decoration: underline; }
.footer-disclaimer a:hover { color: rgba(255,255,255,0.6); }
.footer-rera {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.footer-rera-link {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    display: inline-block;
}
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-credit-link { color: var(--gold); font-weight: 600; }
.footer-credit-link:hover { color: var(--gold-light); }

/* === Lead Modal === */
.modal-sm-custom { max-width: 400px; }
.lead-modal-content {
    border: none !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    background: var(--white) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--dark);
    font-size: 14px;
}
.modal-close-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.lead-modal-form {
    padding: 44px 36px 36px;
}
.lead-modal-header {
    text-align: center;
    margin-bottom: 30px;
}
.modal-logo { height: 44px; margin: 0 auto 18px; }
.lead-modal-header h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}
.lead-modal-header p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}
.modal-input-group {
    margin-bottom: 16px;
}
.modal-input-group .input-wrap {
    position: relative;
}
.modal-input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--gold);
    pointer-events: none;
}
.modal-input-group input,
.modal-input-group select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--off-white);
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    outline: none;
    transition: var(--transition-fast);
}
.modal-input-group input::placeholder {
    color: var(--text-light);
}
.modal-input-group input:focus,
.modal-input-group select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(231,162,82,0.1);
}
.modal-input-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='none' stroke='%23001822' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
}
.modal-input-group select:required:invalid {
    color: var(--text-light);
}
.modal-input-group select option {
    color: var(--dark);
}
.modal-input-group select option[value=""][disabled] {
    color: var(--text-light);
}
.modal-consent-wrap {
    margin-bottom: 20px;
}
.modal-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.modal-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}
.modal-consent label {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

/* --- Form Validation Errors --- */
.field-error {
    display: none;
    font-size: 12px;
    color: #dc3545;
    margin-top: 4px;
    line-height: 1.4;
}
.field-error.visible {
    display: block;
}
.modal-consent-wrap .field-error {
    margin-top: 4px;
}
.modal-input-group input.input-error,
.modal-input-group select.input-error {
    border-color: #dc3545;
}
.modal-input-group input.input-error:focus,
.modal-input-group select.input-error:focus {
    box-shadow: 0 0 0 3px rgba(220,53,69,0.15);
    border-color: #dc3545;
}
.form-floating .form-control.input-error {
    border-color: #dc3545;
}
.form-floating .form-control.input-error:focus {
    box-shadow: 0 0 0 3px rgba(220,53,69,0.15);
    border-color: #dc3545;
}
.modal-consent-wrap.consent-error input[type="checkbox"] {
    outline: 2px solid #dc3545;
    outline-offset: 1px;
}

/* === Sticky Side CTA === */
.sticky-side-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
}
.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    white-space: nowrap;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    border-radius: 0 8px 8px 0;
}
.sticky-btn:hover { color: var(--white); box-shadow: var(--shadow-gold); }
.sticky-btn i { display: none; }
.sticky-enquiry { background: var(--gold); }

/* === Mobile Sticky Bottom Bar === */
.mobile-sticky-bottom {
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: var(--white);
    z-index: 900;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 0;
}
.mobile-sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-fast);
}
.mobile-sticky-btn i { font-size: 18px; color: var(--gold); }
.mobile-sticky-btn:hover { color: var(--gold); }
.mobile-sticky-primary { background: var(--gold); color: var(--white) !important; }
.mobile-sticky-primary i { color: var(--white); }

/* === Go to Top Button === */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--gold);
    border: 2px solid var(--gold);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 899;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.go-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.go-to-top:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

/* === Scroll Animations === */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate].animated { opacity: 1; transform: translate(0, 0); }

/* === Responsive === */
@media (max-width: 1200px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .masterplan-info-cards { grid-template-columns: repeat(3, 1fr); }
    .header-nav ul { gap: 2px; }
    .header-nav ul li a { font-size: 11px; padding: 8px 10px; }
    .section-title { font-size: 38px; }
    .section-subtitle { font-size: 16px; }
    .parallax-title { font-size: 46px; }
    .parallax-subtitle { font-size: 24px; }
    .highlight-number { font-size: 36px; }
    .highlight-text-stat { font-size: 32px; }
    .highlight-card h3 { font-size: 17px; }
    .highlight-card p { font-size: 13px; }
    .highlight-icon-wrap { width: 76px; height: 76px; margin-bottom: 18px; }
    .highlight-icon { font-size: 26px; }
    .highlight-card { padding: 36px 22px 32px; }
    .contact-form-card h3 { font-size: 24px; }
    .overview-text { font-size: 15px; }
    .highlights-grid { gap: 20px; }
    .feat-img-wrap { height: 380px; }
    .feat-card { padding: 28px 22px; }
    .feat-card h4 { font-size: 18px; }
}

@media (max-width: 991px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 34px; }
    .section-subtitle { font-size: 15px; max-width: 500px; }
    .section-subtitle-light { font-size: 15px; max-width: 500px; }
    .section-tag { font-size: 12px; letter-spacing: 2.5px; }
    .header-nav { display: none; }
    .hamburger { display: flex; }

    .btn-hero-primary, .btn-hero-outline { font-size: 13px; padding: 13px 24px; }
    .btn-primary-custom { font-size: 12px; padding: 12px 28px; }

    .feat-img-wrap { height: 320px; }
    .feat-cards { grid-template-columns: repeat(2, 1fr); }
    .feat-card { padding: 28px 24px; }
    .feat-card:nth-child(2) { border-right: none; }
    .feat-card:nth-child(3), .feat-card:nth-child(4) { border-top: 1px solid var(--border-light); }
    .feat-card h4 { font-size: 18px; }
    .feat-card p { font-size: 13px; }

    .overview-text { font-size: 15px; }
    .overview-highlights { gap: 12px 20px; }
    .overview-highlights li { font-size: 14px; }

    .highlights-grid { gap: 16px; }
    .highlight-card { padding: 32px 20px 28px; }
    .highlight-number { font-size: 34px; }
    .highlight-text-stat { font-size: 30px; }
    .highlight-card h3 { font-size: 16px; margin-bottom: 8px; }
    .highlight-card p { font-size: 13px; }
    .highlight-icon { font-size: 24px; }
    .highlight-icon-wrap { width: 68px; height: 68px; margin-bottom: 16px; }

    .amenity-card h4 { font-size: 14px; }
    .amenity-icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 12px; }

    .parallax-title { font-size: 40px; }
    .parallax-subtitle { font-size: 22px; }
    .parallax-content { padding: 60px 0; }

    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-masonry-item.gallery-mobile-only { display: block !important; }
    .gallery-item-overlay span { font-size: 16px; }

    .loc-layout { grid-template-columns: 1fr 1fr; gap: 36px; }
    .loc-map-side { min-height: 420px; }
    .loc-cat-tab { padding: 8px 16px; font-size: 13px; }
    .loc-name { font-size: 14px; }
    .loc-time { font-size: 13px; }

    .masterplan-info-card strong { font-size: 14px; }
    .masterplan-info-card span { font-size: 13px; }
    .masterplan-info-card i { font-size: 20px; }

    .accordion-button { font-size: 16px !important; padding: 18px 20px !important; }
    .accordion-body { font-size: 14px; padding: 0 20px 18px !important; }

    .contact-desc { font-size: 15px; }
    .contact-form-card h3 { font-size: 22px; }
    .contact-info-item i { font-size: 18px; }
    .contact-info-item strong { font-size: 15px; }
    .contact-info-item span, .contact-info-item a { font-size: 14px; }
    .btn-submit { font-size: 13px; padding: 14px 28px; }

    .footer-col h5 { font-size: 18px; margin-bottom: 16px; }
    .footer-about { font-size: 15px; }
    .footer-col ul li a { font-size: 14px; }
    .footer-contact li { font-size: 14px; }
    .footer-contact li i { font-size: 13px; }
    .footer-socials a { width: 36px; height: 36px; font-size: 14px; }
    .footer-disclaimer { font-size: 12px; }
    .footer-rera { font-size: 13px; }
    .footer-rera-link { font-size: 12px; }
    .footer-bottom p { font-size: 13px; }
    .footer-logo-meadows { width: 80px; }
    .footer-logo-spaces { width: 73px; }

    .lead-modal-header h4 { font-size: 22px; }
    .lead-modal-header p { font-size: 13px; }

    .sticky-side-cta { display: none; }
    .mobile-sticky-bottom { display: flex; }
    body { padding-bottom: 60px; }
    .go-to-top { bottom: 80px; right: 20px; width: 42px; height: 42px; font-size: 16px; }
}

@media (max-width: 767px) {
    .section { padding: 50px 0; overflow-x: hidden; }
    [data-animate="fade-left"] { transform: translateX(20px); }
    [data-animate="fade-right"] { transform: translateX(-20px); }
    .section-title { font-size: 28px; margin-bottom: 16px; }
    .section-subtitle { font-size: 14px; max-width: 100%; }
    .section-subtitle-light { font-size: 14px; max-width: 100%; }
    .section-tag { font-size: 11px; letter-spacing: 2px; padding-left: 32px; margin-bottom: 10px; }
    .section-tag::before { width: 22px; }

    .header-logos { gap: 10px; }
    .header-logo-link .logo-meadows { width: 72px; }
    .header-logo-link .logo-spaces { width: 66px; }
    .logo-divider { height: 26px; }
    .site-header.scrolled .header-logo-link .logo-meadows { width: 64px; }
    .site-header.scrolled .header-logo-link .logo-spaces { width: 58px; }

    .btn-hero-primary, .btn-hero-outline { padding: 12px 20px; font-size: 12px; letter-spacing: 0.5px; }
    .btn-primary-custom { font-size: 12px; padding: 12px 24px; }

    .overview-text { font-size: 14px; line-height: 1.7; }
    .overview-highlights { grid-template-columns: 1fr; gap: 10px; margin-top: 20px; }
    .overview-highlights li { font-size: 14px; }
    .overview-image-shape img { height: 300px; }
    .overview-image-wrapper { padding: 20px; }

    .highlights-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .highlight-card { padding: 28px 16px 24px; }
    .highlight-number { font-size: 30px; margin-bottom: 8px; }
    .highlight-text-stat { font-size: 26px; }
    .highlight-card h3 { font-size: 15px; margin-bottom: 6px; }
    .highlight-card p { font-size: 12px; line-height: 1.5; }
    .highlight-icon { font-size: 22px; }
    .highlight-icon-wrap { width: 62px; height: 62px; margin-bottom: 14px; }

    .feat-img-wrap { height: 260px; }
    .feat-cards { grid-template-columns: 1fr 1fr; }
    .feat-card { padding: 24px 20px; }
    .feat-card h4 { font-size: 17px; margin-bottom: 8px; }
    .feat-card p { font-size: 13px; }

    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .amenity-card { padding: 20px 12px; }
    .amenity-card h4 { font-size: 13px; }
    .amenity-icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 10px; }

    .parallax-title { font-size: 34px; margin-bottom: 12px; }
    .parallax-subtitle { font-size: 20px; }
    .parallax-content { padding: 50px 0; }
    .parallax-bg { background-attachment: scroll; }

    .masterplan-info-cards { grid-template-columns: 1fr; gap: 12px; }
    .masterplan-info-card { padding: 16px 20px; gap: 12px; }
    .masterplan-info-card i { font-size: 20px; }
    .masterplan-info-card strong { font-size: 13px; }
    .masterplan-info-card span { font-size: 12px; }
    .approved-by-inline { padding: 10px 20px; gap: 12px; margin-top: 16px; }
    .approved-by-label { font-size: 10px; letter-spacing: 1.5px; }
    .approved-by-inline img { height: 28px; }

    .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 10px; }
    .gallery-masonry-big { grid-row: span 2; }
    .gallery-item-overlay span { font-size: 15px; }
    .gallery-item-overlay { padding: 30px 16px 16px; }

    .loc-layout { grid-template-columns: 1fr; gap: 32px; }
    .loc-map-side { position: relative; top: auto; min-height: 300px; order: -1; border-radius: var(--radius-md); }
    .loc-cat-tabs { gap: 6px; }
    .loc-cat-tab { padding: 8px 14px; font-size: 12px; }
    .loc-list li { padding: 12px 0; }
    .loc-name { font-size: 14px; }
    .loc-time { font-size: 12px; padding: 3px 10px; }
    .loc-address { font-size: 13px; align-items: flex-start; gap: 0; }
    .loc-address i { margin-top: 4px; }
    .loc-header { margin-bottom: 28px; }

    .faq-section .col-lg-4 { margin-bottom: 32px; }
    .accordion-button { font-size: 15px !important; padding: 16px 20px !important; }
    .accordion-body { font-size: 14px; padding: 0 20px 16px !important; }

    .contact-desc { font-size: 14px; margin-bottom: 24px; }
    .contact-form-card { padding: 24px; }
    .contact-form-card h3 { font-size: 20px; margin-bottom: 20px; }
    .contact-info-item i { font-size: 17px; }
    .contact-info-item strong { font-size: 14px; }
    .contact-info-item span, .contact-info-item a { font-size: 14px; }
    .contact-info-list { gap: 16px; margin-bottom: 24px; }
    .contact-socials a { width: 38px; height: 38px; font-size: 14px; }
    .btn-submit { font-size: 13px; padding: 14px 28px; }

    .footer-col h5 { font-size: 17px; margin-bottom: 14px; }
    .footer-about { font-size: 14px; margin-bottom: 16px; }
    .footer-col ul li a { font-size: 14px; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-contact li { font-size: 14px; gap: 10px; }
    .footer-contact li i { font-size: 13px; }
    .footer-socials a { width: 34px; height: 34px; font-size: 14px; }
    .footer-disclaimer { font-size: 12px; margin-bottom: 10px; }
    .footer-approval-logo { width: 40px; height: 40px; }
    .footer-approval-label { font-size: 11px; }
    .footer-approval-number { font-size: 11px; }
    .footer-rera { font-size: 12px; }
    .footer-rera-link { font-size: 11px; }
    .footer-bottom p { font-size: 12px; }
    .footer-bottom { padding: 16px 0; margin-top: 30px; }
    .site-footer { padding: 40px 0 0; }

    .lead-modal-form { padding: 32px 20px 28px; }
    .lead-modal-header h4 { font-size: 20px; }
    .lead-modal-header p { font-size: 12px; }
    .modal-logo { height: 38px; margin-bottom: 14px; }
    .modal-input-group input,
    .modal-input-group select { font-size: 13px; padding: 12px 14px 12px 40px; }
    .modal-input-group select { padding-right: 36px; }
    .modal-input-group i { font-size: 13px; left: 14px; }
    .modal-consent label { font-size: 11px; }

    .mobile-nav-overlay { width: 280px; padding: 70px 30px 30px; }
    .mobile-nav-inner ul li a { font-size: 14px; padding: 12px 0; }
    .mobile-nav-logos { gap: 10px; margin-bottom: 30px; }
    .mobile-nav-logos .logo-divider { height: 26px; }
    .mobile-nav-logo-meadows { width: 70px; }
    .mobile-nav-logo-spaces { width: 64px; }
    .footer-logo-meadows { width: 72px; }
    .footer-logo-spaces { width: 66px; }
    .footer-logos { gap: 10px; margin-bottom: 16px; }
    .footer-logo-divider { height: 26px; }
}

@media (max-width: 480px) {
    .section { padding: 40px 0; }
    .section-title { font-size: 24px; margin-bottom: 14px; }
    .section-subtitle { font-size: 13px; }
    .section-subtitle-light { font-size: 13px; }
    .section-tag { font-size: 10px; letter-spacing: 1.5px; padding-left: 28px; }
    .section-tag::before { width: 18px; }

    .btn-hero-primary, .btn-hero-outline { padding: 10px 16px; font-size: 11px; }

    .overview-text { font-size: 13px; }
    .overview-highlights { grid-template-columns: 1fr; gap: 8px; margin-top: 16px; }
    .overview-highlights li { font-size: 13px; gap: 8px; }
    .overview-highlights li i { font-size: 14px; }
    .overview-image-wrapper { padding: 16px; }
    .overview-image-shape img { height: 250px; }

    .highlights-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .highlight-card { padding: 24px 14px 20px; }
    .highlight-number { font-size: 26px; margin-bottom: 6px; }
    .highlight-text-stat { font-size: 22px; }
    .highlight-card h3 { font-size: 14px; margin-bottom: 4px; }
    .highlight-card p { font-size: 11px; line-height: 1.5; }
    .highlight-icon { font-size: 20px; }
    .highlight-icon-wrap { width: 54px; height: 54px; margin-bottom: 12px; }

    .feat-img-wrap { height: 200px; }
    .feat-cards { grid-template-columns: 1fr; }
    .feat-card { padding: 20px 16px; border-right: none; border-bottom: 1px solid var(--border-light); }
    .feat-card:last-child { border-bottom: none; }
    .feat-card:nth-child(2) { border-right: none; }
    .feat-card:nth-child(3), .feat-card:nth-child(4) { border-top: none; }
    .feat-card h4 { font-size: 16px; }
    .feat-card p { font-size: 12px; }

    .amenities-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .amenity-card { padding: 16px 10px; }
    .amenity-card h4 { font-size: 12px; }
    .amenity-icon { width: 40px; height: 40px; font-size: 16px; margin-bottom: 8px; }

    .parallax-title { font-size: 28px; margin-bottom: 10px; }
    .parallax-subtitle { font-size: 18px; }
    .parallax-content { padding: 40px 0; }

    .masterplan-info-cards { grid-template-columns: 1fr; gap: 10px; }
    .masterplan-info-card { padding: 14px 16px; }
    .masterplan-info-card i { font-size: 18px; }
    .masterplan-info-card strong { font-size: 12px; }
    .masterplan-info-card span { font-size: 11px; }
    .approved-by-inline { padding: 8px 16px; gap: 10px; }
    .approved-by-label { font-size: 9px; }
    .approved-by-inline img { height: 24px; }

    .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; gap: 6px; }
    .gallery-masonry-big { grid-row: span 1; grid-column: span 1; }
    .gallery-item-overlay span { font-size: 11px; }
    .gallery-item-overlay { padding: 16px 8px 8px; background: linear-gradient(transparent, rgba(0,0,0,0.5)); }

    .loc-map-side { min-height: 250px; }
    .loc-cat-tab { padding: 6px 12px; font-size: 11px; }
    .loc-list li { padding: 10px 0; }
    .loc-name { font-size: 13px; }
    .loc-time { font-size: 11px; padding: 3px 8px; }
    .loc-address { font-size: 13px; align-items: flex-start; gap: 0; }
    .loc-address i { margin-top: 4px; }

    .faq-section .col-lg-4 { margin-bottom: 24px; }
    .accordion-button { font-size: 14px !important; padding: 14px 16px !important; }
    .accordion-body { font-size: 13px; padding: 0 16px 14px !important; }

    .contact-desc { font-size: 13px; margin-bottom: 20px; }
    .contact-form-card { padding: 20px; }
    .contact-form-card h3 { font-size: 18px; margin-bottom: 16px; }
    .contact-info-item i { font-size: 16px; }
    .contact-info-item strong { font-size: 13px; }
    .contact-info-item span, .contact-info-item a { font-size: 13px; }
    .contact-info-list { gap: 14px; }
    .contact-socials a { width: 36px; height: 36px; font-size: 13px; }
    .btn-submit { font-size: 12px; padding: 12px 24px; }

    .footer-col h5 { font-size: 16px; margin-bottom: 12px; }
    .footer-about { font-size: 13px; }
    .footer-col ul li a { font-size: 13px; }
    .footer-contact li { font-size: 13px; }
    .footer-contact li i { font-size: 12px; }
    .footer-socials a { width: 32px; height: 32px; font-size: 13px; }
    .footer-logo-meadows { width: 64px; }
    .footer-logo-spaces { width: 58px; }
    .footer-logos { gap: 8px; margin-bottom: 14px; }
    .footer-logo-divider { height: 22px; }
    .footer-disclaimer { font-size: 11px; }
    .footer-rera { font-size: 12px; }
    .footer-rera-link { font-size: 11px; }
    .footer-bottom p { font-size: 12px; }
    .site-footer { padding: 30px 0 0; }

    .header-logos { gap: 8px; }
    .header-logo-link .logo-meadows { width: 60px; }
    .header-logo-link .logo-spaces { width: 55px; }
    .site-header.scrolled .header-logo-link .logo-meadows { width: 54px; }
    .site-header.scrolled .header-logo-link .logo-spaces { width: 49px; }
    .logo-divider { height: 20px; }

    .lead-modal-form { padding: 28px 16px 24px; }
    .lead-modal-header h4 { font-size: 18px; }
    .lead-modal-header p { font-size: 11px; }
    .modal-logo { height: 34px; margin-bottom: 12px; }
    .modal-input-group input,
    .modal-input-group select { font-size: 13px; padding: 11px 12px 11px 38px; }
    .modal-input-group select { padding-right: 32px; }
    .modal-consent label { font-size: 10px; }
    .modal-close-btn { width: 30px; height: 30px; font-size: 12px; }

    .mobile-nav-overlay { width: 260px; padding: 60px 24px 24px; }
    .mobile-nav-inner ul li a { font-size: 13px; padding: 11px 0; }
    .mobile-nav-logos { gap: 8px; margin-bottom: 24px; }
    .mobile-nav-logos .logo-divider { height: 20px; }
    .mobile-nav-logo-meadows { width: 60px; }
    .mobile-nav-logo-spaces { width: 55px; }

    .mobile-sticky-btn { font-size: 9px; padding: 8px 6px; }
    .mobile-sticky-btn i { font-size: 16px; }
}

/* === Print Styles === */
@media print {
    .site-header, .sticky-side-cta, .mobile-sticky-bottom, #preloader { display: none !important; }
    .section { padding: 30px 0; }
    .hero-section { min-height: auto; height: auto; }
}
