/* Global Styles - Modern Dark Luxury */
:root {
    --primary-green: #3A5A40;
    /* Muted Forest Green */
    --dark-green: #0b1a12;
    /* Deep Jungle (almost black) */
    --accent-gold: #E5D3B3;
    /* Champagne Gold (More modern than yellow) */
    --soft-cream: #0F0F10;
    /* Soft Black Background */
    --earth-brown: #a68a64;
    --text-dark: #FFFFFF;
    /* Pure White */
    --text-light: #B0B0B0;
    /* Light Grey */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 30px 60px rgba(0, 0, 0, 0.6);
    --transition-speed: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--soft-cream);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--soft-cream);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
    /* Visibility on all backgrounds */
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-gold);
    transition: width 0.2s, height 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.highlight {
    color: var(--accent-gold);
    font-style: italic;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh 5vw;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    /* Initially transparent */
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    /* Dark Glass */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-gold);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.05);
    /* Glassy background */
    color: var(--accent-gold) !important;
    padding: 14px 32px;
    border-radius: 4px;
    /* Slight rounding, modern tech feel */
    border: 1px solid var(--glass-border);
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: #000 !important;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(229, 211, 179, 0.3);
    /* Glow effect */
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-gold);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark-green);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    text-decoration: none;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--accent-gold);
}

/* Parallax Hero */
.hero-parallax {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000;
    /* Fallback */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: translateY(0);
    filter: brightness(0.7) contrast(1.2);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5vw;
    position: relative;
    z-index: 3;
}

.hero-card {
    max-width: 700px;
    color: white;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 4;
}

.glass-card {
    box-shadow: none;
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 6px;
    /* Widen tracking */
    font-size: 0.8rem;
    display: block;
    margin-bottom: 25px;
    opacity: 0.8;
    color: var(--accent-gold);
}

.hero-card h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-text {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-text:hover {
    color: var(--accent-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Philosophy - Dark Organic Layout */
.philosophy-section {
    padding: 150px 0;
    background: var(--soft-cream);
    overflow: hidden;
}

.organic-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.organic-text h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.organic-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.soul-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.soul-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 50px 30px;
    transition: all 0.4s ease;
    text-align: center;
    cursor: default;
}

.soul-item:hover {
    border-color: var(--accent-gold);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.soul-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.soul-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blob-image-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
}

.blob-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    /* Arch shape instead of blob for stability */
    filter: grayscale(100%) contrast(1.2);
    /* Black & white artistic look */
    transition: filter 0.5s;
}

.blob-image:hover {
    filter: grayscale(0%) contrast(1.1);
}

.floating-badge {
    position: absolute;
    bottom: -50px;
    right: -50px;
    background: var(--accent-gold);
    color: var(--dark-green);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.2;
    animation: rotateBadge 10s linear infinite;
    font-weight: 700;
}

@keyframes rotateBadge {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* About - Elegant Dark Collage */
.about-section.dark-theme {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    color: var(--text-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section.dark-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    opacity: 0.3;
}

.section-title {
    margin-bottom: 80px;
}

.subtitle {
    display: block;
    text-align: center;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.about-section h2 {
    color: white;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.about-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 450px);
    gap: 15px;
    padding: 0 5vw;
    margin-bottom: 80px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Specific Grid Layout */
.collage-item:nth-child(1) {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.collage-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.collage-item:nth-child(3) {
    grid-column: 1 / 6;
    grid-row: 2 / 3;
}

.collage-item:nth-child(4) {
    grid-column: 6 / 13;
    grid-row: 2 / 3;
}

/* Elegant Image Overlay */
.collage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.collage-item:hover::before {
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 60%,
            rgba(0, 0, 0, 0.8) 100%);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(0.9) contrast(1.1);
}

.collage-item:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.15);
}

.collage-item .overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.5s ease;
}

.collage-item:hover .overlay-text {
    transform: translateY(0);
    opacity: 1;
}

.collage-item .overlay-text h3 {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin: 0;
    letter-spacing: 1px;
    position: relative;
}

.collage-item .overlay-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.4s ease;
}

.collage-item:hover .overlay-text h3::after {
    width: 120px;
}

.about-narrative {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.8;
    color: #ccc;
    padding: 0 40px;
    position: relative;
}

.about-narrative::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--accent-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* Base Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* 5 Zones - Luxury Accordion Gallery */
.zones-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.zones-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.zones-section .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.zones-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.zones-track {
    display: flex;
    width: 100%;
    height: 70vh;
    min-height: 650px;
    gap: 0;
    padding: 0;
}

.zone-card {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.zone-card:last-child {
    border-right: none;
}

/* Subtle Overlay */
.zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
    transition: opacity 0.5s;
}

.zone-card:hover {
    flex: 5;
}

.zone-card:hover::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
}

/* Collapsed Vertical Title */
.zone-vertical-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 8px;
    transition: all 0.5s ease;
    z-index: 5;
    pointer-events: none;
    opacity: 0.4;
}

.zone-card:hover .zone-vertical-text {
    opacity: 0;
    transform: translate(-50%, -80%) rotate(-90deg);
}

/* Expanded Content Details */
.zone-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    z-index: 10;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    text-align: left;
}

.zone-card:hover .zone-content {
    opacity: 1;
    transform: translateY(0);
}

.zone-content h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: white;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.zone-type {
    color: var(--accent-gold);
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--accent-gold);
    width: fit-content;
    padding-bottom: 5px;
}

.zone-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.zone-highlights li {
    font-size: 0.9rem;
    color: #eee;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
}

.btn-zone-details {
    background: white;
    border: none;
    color: black;
    padding: 15px 35px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-zone-details:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .zones-track {
        flex-direction: column;
        height: auto;
    }

    .zone-card {
        height: 350px;
        flex: none !important;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .zone-vertical-text {
        display: none;
    }

    .zone-content {
        opacity: 1;
        transform: translateY(0);
        padding: 30px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    }

    .zone-content h3 {
        font-size: 2rem;
    }
}



/* Location - Dark Map Theme */
.location-section-split {
    background: var(--soft-cream);
    display: flex;
    min-height: 700px;
}

.location-map {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removed filters to show user's custom dark map correctly */
    opacity: 1;
    border-right: 1px solid var(--glass-border);
}

/* Note on Location Image:
    The previous filter (invert) was removed to ensure the user's uploaded "Capture.PNG" 
    displays exactly as anticipated without being inverted again. 
*/

.location-info {
    flex: 0.8;
    background: #080808;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.location-info h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 50px;
}

.location-list-styled {
    list-style: none;
    padding: 0;
}

.location-list-styled li {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.loc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 60px;
    height: 60px;
}

.loc-text strong {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.loc-text {
    color: #888;
}



/* Masterplan Section */
.masterplan-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    position: relative;
}

.masterplan-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.masterplan-section .section-header h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.masterplan-section .section-header p {
    font-size: 1.2rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
}

.masterplan-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.masterplan-visual {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.masterplan-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.masterplan-visual:hover img {
    transform: scale(1.05);
}

.plan-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 5;
}

.plan-tag {
    background: var(--accent-gold);
    color: #000;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(229, 211, 179, 0.4);
}

.masterplan-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.stat-card h3 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-card p {
    color: #999;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Video Section */
.video-section {
    padding: 150px 0;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2053') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.video-content p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 50px;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent-gold);
    color: #000;
    padding: 20px 45px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(229, 211, 179, 0.3);
}

.btn-video:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
}

.btn-video i {
    font-size: 1.5rem;
}

/* Responsive: Masterplan & Video */
@media (max-width: 900px) {
    .masterplan-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .masterplan-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .video-content h2 {
        font-size: 2.5rem;
    }

    .video-section {
        padding: 100px 0;
    }
}

@media (max-width: 600px) {
    .masterplan-section .section-header h2 {
        font-size: 2rem;
    }

    .masterplan-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-content h2 {
        font-size: 2rem;
    }

    .video-content p {
        font-size: 1.1rem;
    }

    .btn-video {
        padding: 16px 35px;
        font-size: 0.85rem;
    }
}

/* Contact - Minimal Luxury */
.contact-section-minimal {
    padding: 120px 0;
    background: #050505;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card-glass {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    border-radius: 0;
    margin: 0 auto;
    padding: 60px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 0;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: var(--accent-gold);
    outline: none;
}

.btn-submit-full {
    background: var(--accent-gold);
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    padding: 20px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    grid-column: span 2;
}

.btn-submit-full:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.contact-direct {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-direct a {
    color: #888;
    transition: 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-direct a:hover {
    color: var(--accent-gold);
}

/* Footer - Luxury Multi-Column */
.footer-luxury {
    background: #000;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--accent-gold);
    color: black;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 3px;
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* Responsive Design for Footer & Contact */
@media (max-width: 900px) {
    .contact-section-minimal {
        padding: 60px 0;
    }

    .contact-card-glass {
        padding: 40px 25px;
        margin: 0 15px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-input {
        padding: 18px;
        font-size: 1rem;
    }

    .btn-submit-full {
        grid-column: span 1;
        padding: 18px;
        font-size: 0.85rem;
    }

    .contact-direct {
        margin-top: 25px;
        gap: 20px;
    }

    .contact-direct a {
        font-size: 0.9rem;
    }

    .footer-luxury {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .contact-section-minimal {
        padding: 50px 0;
    }

    .contact-card-glass {
        padding: 30px 20px;
        margin: 0 10px;
        max-width: calc(100% - 20px);
        border: none;
        background: rgba(255, 255, 255, 0.02) !important;
    }

    .contact-header {
        margin-bottom: 30px;
    }

    .contact-header h2 {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .contact-header p {
        font-size: 0.95rem;
        color: #999;
    }

    .contact-form-grid {
        gap: 12px;
        margin-bottom: 25px;
    }

    .form-input {
        padding: 16px 15px;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        -webkit-appearance: none;
        appearance: none;
    }

    .form-input::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }

    .btn-submit-full {
        padding: 16px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-top: 5px;
    }

    .contact-direct {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .contact-direct a {
        font-size: 0.85rem;
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .contact-card-glass {
        padding: 25px 15px;
    }

    .contact-header h2 {
        font-size: 1.6rem;
    }

    .form-input {
        padding: 14px 12px;
        font-size: 0.9rem;
    }

    .btn-submit-full {
        padding: 14px;
        font-size: 0.75rem;
    }

    .contact-direct a {
        font-size: 0.8rem;
    }
}

/* Amenities Modal - Modern Grid/Card View */
.amenities-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Bottom sheet */
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenities-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #0a0a0a;
    width: 100%;
    max-width: 1100px;
    height: 85vh;
    border-radius: 30px 30px 0 0;
    padding: 60px 40px 40px;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.amenities-modal.open .modal-container {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
}

.close-modal:hover {
    background: var(--accent-gold);
    color: black;
    transform: rotate(90deg);
}

/* Hide Header as requested by user ("don't show before zon-name and amenities text") */
.modal-header {
    display: none;
}

.modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 20px 0;
}

/* Grid of Small Cards */
.modal-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    /* Small boxy cards */
    gap: 12px;
    list-style: none;
    padding: 0;
}

.modal-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    /* Slightly rounded for modern feel */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
    font-size: 0.85rem;
    color: #eee;
    justify-content: center;
    min-height: 100px;
}

.modal-list li:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.modal-list li i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Scrollbar styling */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.in-view {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Location Fixes */
.location-section-split {
    background: #0a0a0a;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES 
   Mobile-First Approach
======================================== */

/* Large Tablets & Small Desktops (1200px and below) */
@media (max-width: 1200px) {
    .container {
        padding: 0 4vw;
    }

    .hero-card h1 {
        font-size: 3.5rem;
    }

    .organic-layout {
        gap: 60px;
    }

    .about-collage {
        gap: 15px;
    }
}

/* Tablets (900px and below) */
@media (max-width: 900px) {

    /* Navigation */
    .nav-links,
    nav .btn-primary {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Hero Section */
    .hero-card h1 {
        font-size: 2.5rem;
    }

    .hero-card p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    /* Philosophy Section */
    .organic-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .organic-text h2 {
        font-size: 2.5rem;
    }

    .soul-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blob-image-wrapper {
        height: 400px;
    }

    .floating-badge {
        width: 100px;
        height: 100px;
        font-size: 1rem;
        bottom: -30px;
        right: -30px;
    }

    /* About Section */
    .about-collage {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
        padding: 0;
    }

    .collage-item:nth-child(n) {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .about-narrative {
        font-size: 1.4rem;
        margin-top: 60px;
        padding-left: 20px;
    }

    /* Location Section */
    .location-section-split {
        flex-direction: column;
    }

    .location-map {
        height: 400px;
    }

    .location-info {
        padding: 60px 40px;
    }

    .location-info h2 {
        font-size: 2.5rem;
    }
}

/* Mobile Phones (600px and below) */
@media (max-width: 600px) {

    /* Global */
    .container {
        padding: 0 5vw;
    }

    /* Navigation */
    nav {
        padding: 2vh 5vw;
    }

    .logo {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero-parallax {
        height: 80vh;
    }

    .hero-card {
        padding: 0 20px;
    }

    .hero-card h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .tagline {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .hero-card p {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.7rem;
    }

    /* Philosophy Section */
    .philosophy-section {
        padding: 80px 0;
    }

    .organic-text h2 {
        font-size: 2rem;
    }

    .organic-text p {
        font-size: 1rem;
    }

    .soul-grid {
        gap: 15px;
    }

    .soul-item {
        padding: 30px 20px;
    }

    .blob-image-wrapper {
        height: 300px;
    }

    .blob-image {
        border-radius: 100px 100px 0 0;
    }

    /* About Section */
    .about-section.dark-theme {
        padding: 80px 0;
    }

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .about-collage {
        grid-template-rows: repeat(4, 200px);
    }

    .about-narrative {
        font-size: 1.2rem;
        padding-left: 15px;
        margin-top: 40px;
    }

    /* Zones Section */
    .zones-section {
        padding: 60px 0;
    }

    .zones-section .section-header h2 {
        font-size: 2rem;
    }

    .zones-section .section-header p {
        font-size: 1rem;
    }

    /* Location Section */
    .location-map {
        height: 300px;
    }

    .location-info {
        padding: 40px 20px;
    }

    .location-info h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .loc-icon {
        width: 50px;
        height: 50px;
    }

    .loc-text strong {
        font-size: 1rem;
    }

    /* Modal Responsive */
    .modal-container {
        height: 90vh;
        padding: 50px 20px 20px;
        border-radius: 20px 20px 0 0;
    }

    .modal-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .modal-list li {
        padding: 12px;
        font-size: 0.8rem;
        min-height: 80px;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {
    .hero-card h1 {
        font-size: 1.8rem;
    }

    .organic-text h2,
    .about-section h2,
    .zones-section .section-header h2,
    .location-info h2 {
        font-size: 1.8rem;
    }

    .soul-item {
        padding: 25px 15px;
    }

    .modal-list {
        grid-template-columns: 1fr;
    }

    .footer-socials a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Landscape Orientation Fix for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-parallax {
        height: 100vh;
    }

    .hero-card h1 {
        font-size: 2rem;
    }

    .zones-track {
        height: 500px;
    }

    .modal-container {
        height: 95vh;
    }
}