/* ==========================================
   NIKOO HOMES 8 - CUSTOM PREMIUM VANILLA CSS
   ========================================== */

/* 1. Theme Configuration Tokens */
:root {
    --primary-green: #1B3A2D;
    --primary-green-rgb: 27, 58, 45;
    --accent-gold: #C9A84C;
    --accent-gold-rgb: 201, 168, 76;
    --cta-saffron: #E8781A;
    --bg-cream: #F8F6F1;
    --bg-white: #FFFFFF;
    --text-charcoal: #2C2C2C;
    --text-muted: #666666;
    --border-color: rgba(27, 58, 45, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --border-radius-lg: 24px;
    --border-radius-sm: 12px;
}

/* 2. Global Resets & Elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, select, textarea {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

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

/* Section Common Styles */
section {
    padding: 100px 5% 80px 5%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
}

/* 3. Helper components */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    background-color: var(--primary-green);
    color: var(--bg-white);
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 58, 45, 0.2);
}

.cta-saffron {
    background-color: var(--cta-saffron);
}

.cta-saffron:hover {
    box-shadow: 0 4px 15px rgba(232, 120, 26, 0.3);
}

.cta-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cta-outline:hover {
    background-color: var(--primary-green);
    color: var(--bg-white);
}

.gold-text {
    color: var(--accent-gold);
}

/* 4. Header (Sticky Navbar) */
.header {
    position: fixed;
    top: 20px;
    left: 5%;
    right: 5%;
    width: 90%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header.scrolled {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 30px;
}

.logo-area {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: var(--primary-green);
    white-space: nowrap;
}

.header-logo {
    max-height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-charcoal);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-green);
    border: 1px solid rgba(27, 58, 45, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.phone-link:hover {
    background: rgba(27, 58, 45, 0.05);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--primary-green);
}

/* 5. Mobile Drawer Menu */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1100;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.close-drawer {
    font-size: 24px;
    color: var(--primary-green);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
}

.drawer-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-charcoal);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* 6. Hero Section (Asymmetric Bayt Layout) */
.hero-section {
    padding-top: 150px;
    background: radial-gradient(circle at 10% 20%, rgba(27, 58, 45, 0.03) 0%, rgba(255, 255, 255, 0) 90%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
}

.hero-text-col {
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-green);
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.highlight-text {
    color: var(--cta-saffron);
}

.hero-description {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-timer {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(27, 58, 45, 0.02);
}

.timer-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown-grid {
    display: flex;
    gap: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.countdown-item small {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-visual-col {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.visual-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.visual-card:hover .visual-img {
    transform: scale(1.05);
}

.floating-tag {
    position: absolute;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-tag {
    bottom: 30px;
    left: 20px;
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 700;
    border-left: 4px solid var(--accent-gold);
}

.status-tag {
    top: 20px;
    right: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
}

/* 7. Overview Stats Bar */
.stats-section {
    padding: 40px 5%;
    background-color: var(--primary-green);
    color: var(--bg-white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.stat-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* 8. About Section (Bento Grid) */
.about-section {
    background-color: var(--bg-white);
}

.bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bento-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.bento-card:hover {
    box-shadow: 0 15px 35px rgba(27, 58, 45, 0.04);
}

.card-wide {
    grid-column: span 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-narrow {
    grid-column: span 1;
}

.bg-green-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0d2017 100%);
    color: var(--bg-white);
}

.bg-green-gradient h3 {
    color: var(--bg-white);
    font-size: 28px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.card-badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    background-color: rgba(201, 168, 76, 0.15);
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.bento-bullets {
    list-style: none;
    margin-top: 25px;
}

.bento-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}

.bento-bullets i {
    color: var(--accent-gold);
    font-size: 18px;
}

.visual-bento {
    position: relative;
    height: 380px;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.visual-bento:hover .bento-img {
    transform: scale(1.04);
}

.bento-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.bg-cream {
    background-color: var(--bg-cream);
}

.bg-cream h3 {
    font-size: 28px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.bento-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.bento-stat-item h4 {
    font-size: 24px;
    color: var(--cta-saffron);
}

.bento-stat-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* 9. Pricing Section */
.bhk-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.filter-btn {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-green);
    color: var(--bg-white);
    border-color: var(--primary-green);
}

.pricing-grid {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(27, 58, 45, 0.05);
}

.price-card.hidden {
    display: none;
}

.price-card .card-header {
    margin-bottom: 25px;
}

.unit-badge {
    display: inline-block;
    background: rgba(27, 58, 45, 0.05);
    color: var(--primary-green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.price-card h3 {
    font-size: 22px;
}

.price-card .card-body {
    flex-grow: 1;
    margin-bottom: 30px;
}

.area-spec {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--cta-saffron);
    margin-bottom: 24px;
    line-height: 1;
}

.price-value small {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 4px;
}

.spec-list {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.spec-list li {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-charcoal);
}

.spec-list li i {
    color: #4CAF50;
}

.price-card .card-footer .cta-btn {
    width: 100%;
}

/* Featured Price Card (Framer Style highlight) */
.price-card.featured-card {
    background-color: var(--primary-green);
    color: var(--bg-white);
    border-color: var(--primary-green);
}

.price-card.featured-card h3 {
    color: var(--bg-white);
}

.price-card.featured-card .unit-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
}

.price-card.featured-card .area-spec {
    color: rgba(255, 255, 255, 0.7);
}

.price-card.featured-card .price-value {
    color: var(--accent-gold);
}

.price-card.featured-card .price-value small {
    color: rgba(255, 255, 255, 0.6);
}

.price-card.featured-card .spec-list {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.price-card.featured-card .spec-list li {
    color: rgba(255, 255, 255, 0.9);
}

.price-card.featured-card .spec-list li i {
    color: var(--accent-gold);
}

.featured-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cta-saffron);
    color: var(--bg-white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Scroll Ticker */
.scroll-ticker-container {
    width: 100vw;
    margin-left: calc(-5vw - 2px);
    background-color: var(--primary-green);
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    padding: 16px 0;
    margin-top: 80px;
    overflow: hidden;
}

.scroll-ticker {
    display: flex;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: 40px;
    animation: ticker 25s linear infinite;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bg-white);
    letter-spacing: 2px;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* 10. Floor plans gallery */
.floorplans-section {
    background-color: var(--bg-white);
}

.floorplan-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.floorplan-card {
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.floorplan-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #fff;
    padding: 20px;
    transition: var(--transition-smooth);
}

.floorplan-img.locked-blur {
    filter: blur(8px);
}

.floorplan-card .lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cta-saffron);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(239, 131, 84, 0.4);
    z-index: 2;
    pointer-events: none;
    transition: var(--transition-smooth);
    border: none;
}

.floorplan-card.unlocked .lock-overlay {
    opacity: 0;
}

.floorplan-card.unlocked .floorplan-img.locked-blur {
    filter: blur(0);
}

.floorplan-card:hover .floorplan-img {
    transform: scale(1.05);
}

.floorplan-info {
    padding: 20px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.floorplan-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.floorplan-info p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.zoom-icon {
    align-self: flex-start;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 10.5 Photo Gallery Section */
.gallery-section {
    background-color: var(--bg-cream);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 250px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(27, 58, 45, 0.85));
    padding: 16px 20px;
    color: var(--bg-white);
    font-size: 13px;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

/* 11. Amenities Section */
.amenities-section {
    position: relative;
    background: url('../images/gallery12.jpg') no-repeat center center/cover;
    padding: 100px 0;
}

.amenities-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 58, 45, 0.95) 0%, rgba(13, 32, 23, 0.98) 100%);
    z-index: 1;
}

.amenities-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.amenities-section .section-title {
    color: var(--bg-white);
}

.amenities-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.amenity-icon {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.amenity-item h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 8px;
}

.amenity-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.amenities-action {
    text-align: center;
    margin-top: 50px;
}

/* 12. Highlights USPs */
.highlights-section {
    background-color: var(--bg-white);
}

.highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-card {
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 58, 45, 0.03);
}

.highlight-card .card-icon {
    font-size: 32px;
    color: var(--cta-saffron);
    margin-bottom: 16px;
    display: block;
}

.highlight-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* 13. Walkthrough Video Gated */
.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-inner-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.video-inner-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-smooth);
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn-circle {
    width: 70px;
    height: 70px;
    background: var(--cta-saffron);
    color: var(--bg-white);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232, 120, 26, 0.4);
    transition: var(--transition-smooth);
}

.play-btn-circle:hover {
    transform: scale(1.1);
}

/* 14. Master Plan */
.masterplan-section {
    background-color: var(--bg-white);
}

.masterplan-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.masterplan-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.masterplan-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    max-width: 450px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.masterplan-overlay-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.masterplan-overlay-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* 15. FAQ Accordion (Bayt Style) */
.faq-section {
    background-color: var(--bg-cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-row {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--primary-green);
    background: transparent;
    transition: var(--transition-smooth);
}

.faq-chevron {
    font-size: 20px;
    transition: var(--transition-smooth);
    color: var(--accent-gold);
}

.faq-row.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-answer-inner {
    padding: 0 28px 24px 28px;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid rgba(27, 58, 45, 0.05);
}

/* 16. Location Section */
.location-section {
    background-color: var(--bg-white);
}

.location-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: flex-start;
}

.distance-category {
    margin-bottom: 30px;
}

.distance-category h3 {
    font-size: 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.distance-category h3 i {
    color: var(--accent-gold);
}

.distance-list {
    list-style: none;
}

.distance-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(27, 58, 45, 0.05);
    font-size: 14px;
}

.distance-list li span {
    color: var(--text-charcoal);
}

.distance-list li strong {
    color: var(--cta-saffron);
}

.map-col {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
}

.google-map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* 17. Bottom Lead Form (CTA Banner) */
.bottom-form-section {
    padding: 80px 5%;
}

.form-banner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0c2016 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
    color: var(--bg-white);
    border-bottom: 5px solid var(--accent-gold);
    box-shadow: 0 20px 45px rgba(27, 58, 45, 0.15);
}

.form-banner-text h2 {
    color: var(--bg-white);
    font-size: 36px;
    margin-bottom: 16px;
}

.form-banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 24px;
}

.rera-badge-bottom {
    display: inline-block;
    border: 1px dashed var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.form-banner-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    color: var(--text-charcoal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* General form layout */
.main-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-row label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-form input[type="text"],
.main-form input[type="email"],
.main-form input[type="tel"],
.main-form select {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-cream);
    outline: none;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.main-form input:focus,
.main-form select:focus {
    border-color: var(--primary-green);
    background: var(--bg-white);
}

/* intl-tel-input override styling */
.iti {
    width: 100%;
}

.main-form .iti input[type="tel"] {
    padding-left: 52px !important;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
}

.form-msg {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
}

.form-msg.success {
    color: #4CAF50;
}

.form-msg.error {
    color: #f44336;
}

/* 18. Footer */
.footer {
    background-color: var(--primary-green);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 5% 40px 5%;
    border-top: 5px solid var(--accent-gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% repeat(2, 30%);
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: var(--bg-white);
    font-size: 22px;
    margin-bottom: 12px;
}

.brand-desc {
    font-size: 13px;
    margin-bottom: 20px;
}

.rera-info {
    font-size: 12px;
    color: var(--accent-gold);
    border-left: 3px solid var(--accent-gold);
    padding-left: 10px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col h4 {
    color: var(--bg-white);
    font-size: 15px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.footer-links-col a {
    font-size: 13px;
    transition: var(--transition-smooth);
}

.footer-links-col a:hover {
    color: var(--accent-gold);
    transform: translateX(3px);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 11px;
    line-height: 1.8;
}

.footer-disclaimer p {
    margin-bottom: 12px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: 20px;
}

/* 19. Popups & Modals (General) */
.modal-overlay,
.lightbox-overlay,
.video-gate-overlay,
.privacy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 32, 23, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active,
.lightbox-overlay.active,
.video-gate-overlay.active,
.privacy-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lead-modal,
.lightbox-modal,
.video-gate-modal,
.privacy-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 90%;
    max-width: 800px;
}

.lead-modal,
.video-gate-modal {
    max-width: 480px;
}

.lead-modal.active,
.lightbox-modal.active,
.video-gate-modal.active,
.privacy-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

/* Lead enquiry modal layout */
.modal-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.modal-close,
.lightbox-close,
.privacy-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover,
.lightbox-close:hover,
.privacy-close:hover {
    background: var(--primary-green);
    color: var(--bg-white);
}

.modal-body-content {
    display: grid;
    grid-template-columns: 45% 55%;
}

.modal-left {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a1f15 100%);
    color: var(--bg-white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 4px solid var(--accent-gold);
}

.modal-left h3 {
    color: var(--bg-white);
    font-size: 24px;
    margin-bottom: 12px;
}

.modal-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.modal-bullets {
    list-style: none;
}

.modal-bullets li {
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-bullets i {
    color: var(--accent-gold);
}

.modal-right {
    padding: 40px;
}

/* Lightbox Modal styles */
.lightbox-modal {
    max-width: 900px;
}

.lightbox-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.lightbox-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.lightbox-caption {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    color: var(--primary-green);
    font-family: var(--font-heading);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--bg-cream);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: var(--primary-green);
    color: var(--bg-white);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Video Gate Unlock modal layout */
.video-gate-modal {
    max-width: 450px;
}

.video-gate-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border: 3px solid var(--accent-gold);
    text-align: center;
}

.video-gate-box h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.video-gate-box p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Privacy Modal */
.privacy-modal {
    max-width: 600px;
}

.privacy-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.privacy-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.privacy-content-scroll {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 15px;
    font-size: 13px;
    color: var(--text-charcoal);
}

.privacy-content-scroll h4 {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* 20. Sticky Action Bar & Floating Call triggers */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    background: var(--bg-white);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
    z-index: 999;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-color);
}

.mobile-sticky-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.call-action {
    color: var(--primary-green);
    border-right: 1px solid var(--border-color);
}

.whatsapp-action {
    color: #25D366;
    border-right: 1px solid var(--border-color);
}

.enquire-action {
    background: var(--cta-saffron);
    color: var(--bg-white);
}

.desktop-floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--bg-white);
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.desktop-floating-whatsapp:hover {
    transform: scale(1.1);
}

/* ==========================================
   21. RESPONSIVE MEDIA BREAKPOINTS
   ========================================== */

@media (max-width: 1300px) {
    .header {
        width: 96%;
        left: 2%;
        right: 2%;
    }
    .header-container {
        padding: 0 15px;
    }
    .nav-menu {
        gap: 12px;
    }
    .nav-link {
        font-size: 13px;
    }
    .header-actions {
        gap: 12px;
    }
    .phone-link {
        padding: 6px 12px;
        font-size: 13px;
    }
    .header-actions .cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .logo-area {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-menu, .header-actions .phone-link {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-col {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 46px;
    }
    
    .hero-description {
        max-width: 600px;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-card:nth-child(3) {
        border-right: none;
    }
    
    .stat-card:nth-child(3n) {
        border-right: none;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .card-wide, .card-narrow {
        grid-column: span 3;
    }
    
    .pricing-grid, .floorplan-grid, .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .form-banner {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 4% 50px 4%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        border-right: none !important;
    }
    
    .pricing-grid, .floorplan-grid, .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .modal-body-content {
        grid-template-columns: 1fr;
    }
    
    .modal-left {
        border-right: none;
        border-bottom: 4px solid var(--accent-gold);
    }
    
    .mobile-sticky-bar {
        display: grid;
    }
    
    body {
        padding-bottom: 60px; /* offset sticky bar */
    }
    
    .desktop-floating-whatsapp {
        bottom: 75px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .visual-img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .cta-btn {
        width: 100%;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .form-banner {
        padding: 24px 16px;
    }
    
    .form-banner-box {
        padding: 24px 16px;
    }
    
    .masterplan-overlay-card {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0;
        padding: 20px;
    }
    
    .masterplan-img {
        height: 300px;
    }
}
