:root {
    --primary-color: #c5a880; /* Premium Gold/Bronze */
    --primary-hover: #e0be8f;
    --secondary-color: #ffffff;
    --secondary-hover: #f3e5d8;
    --text-color: #d1cfc9;
    --text-muted: #8b8882;
    --bg-light: #0d0c0a; /* Premium dark luxury */
    --bg-white: #070706; /* Dark background */
    --border-color: rgba(197, 168, 128, 0.2); /* Subtle gold border */
    --border-light: rgba(255, 255, 255, 0.05);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-premium: 0 20px 40px rgba(197, 168, 128, 0.05);
    --shadow-glow: 0 0 35px rgba(197, 168, 128, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ffe8cc 50%, #c5a880 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #070706;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Header & Glassmorphism */
header {
    background: rgba(7, 7, 6, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(7, 7, 6, 0.65);
    border-bottom: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Scroll Progress Bar at bottom of header */
.scroll-progress-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1001;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition: width 0.1s ease-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: var(--transition);
}

.logo:hover {
    opacity: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1002;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary-color);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary-color);
}

/* Premium Skeuomorphic Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Premium 3D Gold Metallic Skeuomorphic Button */
.btn-primary {
    background: linear-gradient(to bottom, #ebd5b3 0%, #c5a880 50%, #a7885b 100%);
    color: #070706 !important;
    border: 1px solid #dfc49f;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4), 
        0 4px 15px rgba(197, 168, 128, 0.25), 
        0 1px 2px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5), 
        0 6px 20px rgba(197, 168, 128, 0.4), 
        0 1px 3px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, #f2dec0 0%, #d2b68c 50%, #b39467 100%);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3), 
        0 1px 2px rgba(197, 168, 128, 0.1);
}

/* Skeuomorphic Dark Outline Button */
.btn-outline {
    background: linear-gradient(to bottom, #211e1b 0%, #151311 100%);
    color: var(--primary-color) !important;
    border: 1px solid rgba(197, 168, 128, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #2d2925 0%, #1d1a18 100%);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 6px 15px rgba(197, 168, 128, 0.15);
}

.btn-outline:active {
    transform: translateY(1px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.5), 
        0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Premium Loop Diagonal Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.15) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 2;
    animation: permanent-shine 6s infinite linear;
}

@keyframes permanent-shine {
    0% {
        left: -150%;
    }
    40% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125%; /* Extra height to accommodate parallax translation */
    object-fit: cover;
    z-index: -1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.35) 60%,
        rgba(15, 15, 15, 1) 100%
    ); /* Soft dark gradient blending into subsequent sections */
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    width: 100%;
}

.hero-brand-logo {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
    opacity: 0.95;
    filter: drop-shadow(0 0 15px rgba(197, 168, 128, 0.5));
    animation: soft-float 4s ease-in-out infinite alternate;
}

@keyframes soft-float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

.hero-text h1 {
    font-size: 5rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scroll-wheel-anim {
    0% {
        top: 6px;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Quick Details */
.quick-details-section {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.quick-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.detail-item {
    text-align: center;
    background: var(--bg-white);
    padding: 35px 25px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-premium);
}

.detail-item:hover::before {
    transform: scaleX(1);
}

.detail-text .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.detail-text .value {
    font-weight: 800;
    font-size: 1.35rem;
    text-transform: uppercase;
    color: var(--secondary-color);
}

/* Overview */
.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.rounded-img {
    width: 100%;
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
}

.rounded-img:hover {
    transform: scale(1.02);
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background: var(--primary-color);
}

/* Amenities Slider */
.amenities-slider-container {
    width: 100%;
    overflow: hidden;
    background: #000;
    position: relative;
}

.amenities-track {
    display: flex;
    width: calc(400px * 8);
    animation: scroll 40s linear infinite;
}

.amenities-track:hover {
    animation-play-state: paused;
}

.amenity-slide {
    width: 400px;
    height: 520px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.amenity-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-slide:hover img {
    transform: scale(1.08);
}

.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    z-index: 2;
    transition: var(--transition);
}

.amenity-overlay h4 {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.amenity-slide:hover .amenity-overlay h4 {
    transform: translateY(0);
    color: var(--primary-color);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 4)); }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border: none;
}

.price-card {
    padding: 60px 25px;
    background: linear-gradient(145deg, #161616 0%, #0a0a0a 100%); /* Premium dark gradient */
    color: #ffffff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), transparent 40%, transparent 60%, var(--primary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.15;
    transition: var(--transition);
    pointer-events: none;
}

.price-card:hover::before {
    opacity: 0.8;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow), 0 20px 45px rgba(0, 0, 0, 0.5);
    border-color: rgba(197, 168, 128, 0.4);
}

.price-card h3 {
    font-size: 1.35rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffe8cc 50%, #c5a880 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 700;
}

.price-card p {
    color: rgba(255, 255, 255, 0.7);
}

.price-card .area {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.price-tag {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f7dfbe 40%, #c5a880 70%, #947547 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.price-card .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.price-card .btn-outline::before {
    background: var(--primary-color);
}

.price-card .btn-outline:hover {
    color: #0f0f0f;
    border-color: var(--primary-color);
}

/* Floor Plans Section */
.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.floor-plan-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
}

.floor-plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-premium);
}

.plan-preview-container {
    position: relative;
    height: 220px;
    background: #0c0a08;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.plan-blurred-bg {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(197, 168, 128, 0.2) 1.5px, transparent 0), radial-gradient(rgba(197, 168, 128, 0.2) 1.5px, transparent 0);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    filter: blur(5px);
    opacity: 0.6;
}

.plan-blurred-bg::before {
    content: '';
    position: absolute;
    inset: 25px;
    border: 2px solid rgba(197, 168, 128, 0.4);
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(197, 168, 128, 0.08) 10px, rgba(197, 168, 128, 0.08) 20px);
}

.plan-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    gap: 8px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.plan-lock-overlay i {
    font-size: 2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.6));
}

.plan-lock-overlay span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.plan-info {
    padding: 24px 20px;
    text-align: center;
}

.plan-info h3 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: 700;
}

.plan-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Location Timeline */
.landmark-group {
    background: var(--bg-white);
    padding: 60px 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.location-timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
}

.location-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary-color), var(--border-color));
}

.location-timeline-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.location-timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    z-index: 2;
    transition: var(--transition);
}

.location-timeline-item::after {
    content: '';
    position: absolute;
    left: -29px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.location-timeline-item:hover::before {
    transform: translateY(-50%) scale(1.3);
    background: var(--primary-color);
}

.location-timeline-item:hover::after {
    transform: translateY(-50%) scale(2.2);
    opacity: 0.3;
}

.location-place {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-place i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.location-time {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 0.95rem;
    background: rgba(197, 168, 128, 0.12);
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.location-timeline-item:hover .location-time {
    background: var(--primary-color);
    color: #0f0f0f;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 120px 0 50px;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

footer h4 {
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--primary-color);
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.6;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links ul a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links ul a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 15px;
}

.footer-links ul a:hover::before {
    left: 0;
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.footer-contact p i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.4;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.footer-bottom .footer-disclaimer {
    opacity: 0.3;
    max-width: 900px;
    margin: 15px auto 0;
    line-height: 1.5;
}

/* Form Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.85); /* Premium glass backdrop */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    align-items: center;
    justify-content: center;
}

.modal.is-active {
    display: flex;
    opacity: 1;
}

.close {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 44px;
    height: 44px;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2001;
}

.close:hover {
    background: var(--primary-color);
    color: #0f0f0f;
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

/* Premium Form Underlines and Transitions */
.hero-form-container {
    background: var(--bg-white);
    padding: 55px 45px;
    margin: 8vh auto;
    width: 100%;
    max-width: 480px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: modalFormFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalFormFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-form-container h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 800;
}

.hero-form-container p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.enquiry-form .form-group {
    position: relative;
    width: 100%;
}

.enquiry-form input {
    width: 100%;
    padding: 18px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 0;
    outline: none;
    transition: var(--transition);
    letter-spacing: 1px;
}

.enquiry-form input::placeholder {
    color: #999999;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.enquiry-form input:hover {
    background-color: #f2effa;
    border-color: rgba(197, 168, 128, 0.4);
}

.enquiry-form input:focus {
    background-color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.enquiry-form .btn-block {
    width: 100%;
    margin-top: 10px;
    padding: 18px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.enquiry-form .btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197,168,128,0.25);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed #25d366;
    opacity: 0.4;
    animation: rotate-pulse 10s linear infinite;
}

@keyframes rotate-pulse {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: #FFF;
}

/* Scroll Reveal Animations (Scroll Observer Fallback / Native CSS combined) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* When visible */
.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }

/* Native CSS Scroll-Driven Animations (Modern Browsers) */
@supports ((animation-timeline: view()) and (animation-range: entry)) {
    @media (prefers-reduced-motion: no-preference) {
        /* Parallax Hero Image */
        .hero {
            view-timeline: --hero-timeline block;
        }
        .hero-video {
            animation: hero-scroll-parallax linear forwards;
            animation-timeline: --hero-timeline;
            animation-range: exit 0% exit 100%;
        }
        @keyframes hero-scroll-parallax {
            to {
                transform: translateY(180px);
            }
        }
    }
}

/* Native CSS scroll progress bar */
@supports ((animation-timeline: scroll()) and (animation-range: entry)) {
    .scroll-progress-bar {
        animation: progress-grow linear forwards;
        animation-timeline: scroll();
    }
    @keyframes progress-grow {
        from { width: 0%; }
        to { width: 100%; }
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .hero-brand-logo {
        height: 50px;
        margin-bottom: 12px;
    }
    
    footer {
        padding: 60px 0 30px !important;
    }
    
    .nav-actions {
        gap: 12px;
    }

    .nav-actions .btn {
        padding: 10px 18px !important;
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }

    .hamburger-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .quick-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .detail-item {
        padding: 25px 15px;
    }

    .detail-text .value {
        font-size: 1.15rem;
    }

    /* Amenities Slider responsive adjustment */
    .amenity-slide {
        width: 280px;
        height: 380px;
    }

    .amenities-track {
        width: calc(280px * 8);
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-280px * 4)); }
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 100%;
        margin: 0 auto;
    }

    .price-card {
        padding: 30px 15px;
    }

    .price-card h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .price-card .area {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .price-tag {
        font-size: 1.35rem;
        margin-bottom: 20px;
    }

    .price-card .btn {
        padding: 12px 18px;
        font-size: 0.65rem;
        width: 100%;
        text-align: center;
    }

    /* Floor Plans Mobile Responsive */
    .floor-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 30px;
    }

    .plan-preview-container {
        height: 160px;
    }

    .plan-info {
        padding: 16px 12px;
    }

    .plan-info h3 {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    .plan-info p {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .landmark-group {
        padding: 30px;
    }

    .location-timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px !important;
        text-align: left;
    }

    .footer-about {
        grid-column: span 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-contact p {
        justify-content: flex-start;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    .hero-form-container {
        padding: 30px 20px;
        margin: 0;
        width: 90%;
        max-width: 380px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .hero-form-container h3 {
        font-size: 1.35rem;
    }

    .hero-form-container p {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .enquiry-form {
        gap: 15px;
    }

    .enquiry-form input {
        padding: 14px 16px;
        font-size: 0.8rem;
    }

    .enquiry-form .btn-block {
        padding: 14px;
        font-size: 0.8rem;
        margin-top: 5px;
    }

    .close {
        top: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .nav-actions .btn {
        padding: 8px 12px !important;
        font-size: 0.65rem !important;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .quick-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .detail-item {
        padding: 15px 10px;
    }

    .detail-text .label {
        font-size: 0.6rem;
        margin-bottom: 6px;
    }

    .detail-text .value {
        font-size: 0.95rem;
    }

    .pricing-grid {
        gap: 10px;
    }

    .price-card {
        padding: 24px 10px;
    }

    .price-card h3 {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .price-card .area {
        font-size: 0.65rem;
        margin-bottom: 12px;
    }

    .price-tag {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .price-card .btn {
        padding: 10px 12px;
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .footer-grid {
        gap: 20px;
    }

    .hero-form-container {
        padding: 25px 15px;
        max-width: 340px;
    }

    .hero-form-container h3 {
        font-size: 1.25rem;
    }
}

/* Ambient Glow Bubble Styles */
.ambient-glow-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.glow-bubble {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, rgba(197, 168, 128, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.glow-bubble-1 {
    top: -15%;
    left: -10%;
}

.glow-bubble-2 {
    bottom: -15%;
    right: -10%;
}

.glow-bubble-3 {
    top: 30%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, rgba(197, 168, 128, 0) 70%);
}

/* Premium Text Animations */
.word-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.25em;
}

.word-inner {
    display: inline-block;
    transform: translateY(100%);
    animation: slide-up-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.word-mask:nth-child(1) .word-inner { animation-delay: 0.1s; }
.word-mask:nth-child(2) .word-inner { animation-delay: 0.25s; }
.word-mask:nth-child(3) .word-inner { animation-delay: 0.4s; }

@keyframes slide-up-reveal {
    to {
        transform: translateY(0);
    }
}

.rotating-word {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(0);
    opacity: 1;
}

.rotating-word.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}
