:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d3748;
    --accent-color: #c9a961;
    --gold: #d4af37;
    --text-dark: #2d3748;
    --text-light: #859671;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Smart Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 20px 0;
    transition: transform 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
    transform: translateY(0);
}

.header.hide {
    transform: translateY(-100%);
}

.header.show {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #c9a961;
}

.header.show .logo {
    color: white;
}

.header.show .nav-links a {
    color: white;
}

.header.show .nav-links a:hover {
    color: var(--accent-color);
}

.header.show .mobile-menu {
    color: white;
}

.header.show .nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
} 

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: White;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: #c9a961;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--accent-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.nav-cta:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1002;
}

.mobile-nav {
    /*display: none;*/
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 80px 40px 40px;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 24px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
}
/* Show hamburger & hide desktop links on mobile */
@media (max-width: 900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}


/* Hero Section */
/* Hero Section with Video */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(201, 169, 97, 0.3));
    z-index: 2;
}

/* Add mobile nav CTA styling - ADD THIS */
.mobile-nav-cta {
    margin-top: 30px;
    padding: 12px 24px;
    background: var(--accent-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: var(--transition);
}

.mobile-nav-cta:hover {
    background: var(--gold);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* luxuary Freature */
/* Luxury Features Carousel Section */
/* Luxury Features Carousel Section */
.luxury-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.luxury-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(194, 147, 80, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.luxury-features-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

/* Carousel Container */
.luxury-carousel-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 100px rgba(194, 147, 80, 0.15);
}

.luxury-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.luxury-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.luxury-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.luxury-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Features List */
.luxury-features-list {
    padding: 40px 0;
}

.luxury-features-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    color: white;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.luxury-feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(194, 147, 80, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.luxury-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--gold));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.luxury-feature-item:hover,
.luxury-feature-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(194, 147, 80, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(194, 147, 80, 0.2);
}

.luxury-feature-item.active::before {
    transform: scaleY(1);
}

.luxury-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #c29350 0%, #d4af37 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(194, 147, 80, 0.3);
}

.luxury-feature-item:hover .luxury-feature-icon,
.luxury-feature-item.active .luxury-feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(194, 147, 80, 0.5);
}

.luxury-feature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: white;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.luxury-feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .luxury-features-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .luxury-carousel-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .luxury-features-section {
        padding: 60px 0;
    }
    
    .luxury-carousel-container {
        height: 300px;
        border-radius: 16px;
    }
    
    .luxury-features-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .luxury-feature-item {
        padding: 18px 20px;
        margin-bottom: 14px;
        gap: 18px;
    }
    
    .luxury-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
        border-radius: 10px;
    }
    
    .luxury-feature-content h3 {
        font-size: 16px;
    }
    
    .luxury-feature-content p {
        font-size: 13px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* .gallery-carousel {
    position: relative;
    height: 600px;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    display: flex;
    align-items: center;
} */
.gallery-carousel {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.gallery-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    position: absolute;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

/* Main/Active slide - center position */
.gallery-slide.active {
    width: 60%;
    left: 20%;
    z-index: 10;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-slide.active:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* Previous slide - left side */
.gallery-slide.prev {
    width: 25%;
    left: 0;
    z-index: 5;
    opacity: 0.8;
    transform: scale(0.9);
    filter: brightness(0.8);
}

.gallery-slide.prev:hover {
    opacity: 1;
    transform: scale(0.95);
    filter: brightness(0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Next slide - right side */
.gallery-slide.next {
    width: 25%;
    right: 0;
    z-index: 5;
    opacity: 0.8;
    transform: scale(0.9);
    filter: brightness(0.8);
}

.gallery-slide.next:hover {
    opacity: 1;
    transform: scale(0.95);
    filter: brightness(0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Hide other slides */
.gallery-slide:not(.active):not(.prev):not(.next) {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

/* Navigation arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #333;
    z-index: 15;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots indicator */
.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.3);
}
/* Project Description Section */
.project-description-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.project-description-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.description-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.description-content {
    max-width: 600px;
}

.description-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold));
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.description-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.description-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
    text-align: justify;
}

/* Image Section */
.description-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.image-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    width: 100%;
}

.overlay-content i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 16px;
    display: block;
}

.overlay-content p {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .description-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .description-content {
        max-width: 100%;
    }
    
    .main-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .project-description-section {
        padding: 60px 0;
    }
    
    .description-wrapper {
        gap: 40px;
    }
    
    .description-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .description-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .description-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .main-image {
        height: 350px;
    }
    
    .image-frame {
        border-radius: 16px;
    }
    
    .overlay-content i {
        font-size: 36px;
    }
    
    .overlay-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .description-title {
        font-size: 24px;
    }
    
    .description-text {
        font-size: 14px;
        text-align: left;
    }
    
    .main-image {
        height: 280px;
    }
}

/* Amenities Section - FIXED FOR MOBILE */
.amenities-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.amenity-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold));
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-card:hover::before {
    transform: translateX(0);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.amenity-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.amenity-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* Floor Plans Section */
.floor-plans {
    padding: 120px 0;
    background: var(--bg-light);
}

.floor-plan-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    gap: 8px;
    background: var(--bg-white);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.floor-plan-tab {
    padding: 16px 32px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.floor-plan-tab.active {
    background: var(--accent-color);
    color: white;
}

.floor-plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.floor-plan-image {
    width: 100%;
    height: 500px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.floor-plan-details {
    padding: 40px;
}

.floor-plan-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.floor-plan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.floor-plan-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floor-plan-feature i {
    color: var(--accent-color);
    width: 20px;
}

/* Additional CSS for amenities image flipping - Add this to your existing CSS */

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.amenity-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
}

.amenity-icon i {
    position: relative;
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Enhanced hover effects */
.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.amenity-card:hover .amenity-bg-image {
    opacity: 1;
    transform: scale(1.05);
}

.amenity-card:hover .amenity-icon i {
    opacity: 0;
    transform: scale(0.8);
}

/* Loading state for images */
.amenity-bg-image:not([src]) {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    background-size: 200% 200%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Fallback for cards without images */
.amenity-card:not([data-has-image="true"]) .amenity-icon:hover {
    background: linear-gradient(135deg, var(--gold), var(--accent-color));
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .amenity-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    /* On mobile, show image on tap/touch */
    .amenity-card:active .amenity-bg-image {
        opacity: 1;
    }
    
    .amenity-card:active .amenity-icon i {
        opacity: 0;
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .amenity-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
}



/* Location Section */
.location-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-map {
    width: 100%;
    height: 500px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.leaflet-container {
    border-radius: var(--border-radius);
}

.custom-popup {
    text-align: center;
}

.custom-popup h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.custom-popup p {
    color: #666;
    font-size: 14px;
}

.location-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.location-features {
    list-style: none;
    margin: 32px 0;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.location-features li:hover {
    background: var(--accent-color);
    color: white;
}

.location-features i {
    color: var(--accent-color);
    width: 20px;
}

.location-features li:hover i {
    color: white;
}
/* Add these new styles */
.connectivity-showcase {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.connectivity-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.connectivity-showcase::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.connectivity-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.connectivity-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.connectivity-header p {
    color: var(--accent-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.connectivity-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.connectivity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.connectivity-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.connectivity-card:hover::before {
    opacity: 1;
}

.connectivity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #d4b76a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.connectivity-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.connectivity-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.connectivity-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
}
/* Compact Connectivity Cards */
.connectivity-compact {
    margin-bottom: 60px;
}

.connectivity-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.connectivity-mini-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.connectivity-mini-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.mini-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    color: white;
}

.connectivity-mini-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: white;
    margin-bottom: 6px;
    font-weight: 600;
}

.connectivity-mini-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .connectivity-cards-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }
    
    .connectivity-compact {
        margin-bottom: 40px;
    }
    
    .connectivity-mini-card {
        padding: 16px;
    }
    
    .mini-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .connectivity-mini-card h5 {
        font-size: 14px;
    }
    
    .connectivity-mini-card p {
        font-size: 12px;
    }
}
/* Responsive additions */
@media (max-width: 1024px) {
    .connectivity-grid {
        grid-template-columns: 1fr;
    }
    
    .connectivity-showcase {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .connectivity-header h3 {
        font-size: 28px;
    }
    
    .connectivity-showcase {
        padding: 30px;
        margin-bottom: 60px;
    }
}

/* Project Highlights Section - FIXED LAYOUT */
.project-highlights-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.highlights-content {
    display: block;
    text-align: center;
}

.highlights-image-container {
    margin-bottom: 40px;
}

.highlights-image-box {
    width: 280px;
    height: 200px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 41, 59, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f8fafc;
    overflow: hidden;
    transition: all 0.4s ease;
}

.highlights-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.highlights-details {
    max-width: 800px;
    margin: 0 auto;
}

.highlights-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlights-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

/* QR Section - FIXED LAYOUT */
.qr-description-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.qr-content {
    display: block;
    text-align: center;
}

.qr-text-content {
    margin-bottom: 40px;
}

.qr-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.qr-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.qr-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-box {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 41, 59, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid #f1f5f9;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
}

.qr-placeholder i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.qr-caption {
    font-size: 14px;
    color: var(--text-light);
    max-width: 200px;
    text-align: center;
}

/* Brochure Section */
.brochure-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.brochure-content {
    text-align: center;
}

.brochure-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 24px;
}

.brochure-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.brochure-cta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.brochure-btn {
    padding: 20px 40px;
    border: 2px solid var(--accent-color);
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.brochure-btn:hover {
    background: transparent;
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form {
    background: var(--bg-white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

/* Sticky Contact Bar */
.sticky-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

.sticky-contact-content {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.sticky-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.sticky-btn.call {
    background: #10b981;
    color: white;
}

.sticky-btn.whatsapp {
    background: #25d366;
    color: white;
}

.sticky-btn.enquiry {
    background: var(--accent-color);
    color: white;
}

.sticky-btn:hover {
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--bg-white);
    margin: 5% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* HEADER MOBILE */
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none; /* Hide desktop CTA on mobile */
    }

    .mobile-menu {
        display: block;
    }

    .logo {
        font-size: 24px;
    }

    /* HERO MOBILE */
    .hero {
        height: 100vh;
        padding: 0;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* GALLERY MOBILE */
    .gallery-carousel {
        height: 400px;
    }
    
    .gallery-slide.active {
        width: 75%;
        left: 12.5%;
    }
    
    .gallery-slide.prev,
    .gallery-slide.next {
        width: 15%;
        opacity: 0.6;
        transform: scale(0.85);
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }

    /* AMENITIES MOBILE - FIXED TO 2 COLUMNS */
    .amenities-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .amenity-card {
        padding: 20px 15px;
    }

    .amenity-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .amenity-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .amenity-description {
        font-size: 13px;
        line-height: 1.5;
    }

    /* FLOOR PLANS MOBILE */
    .floor-plans {
        padding: 80px 0;
    }

    .floor-plan-tabs {
        flex-direction: row;
        width: auto;
        padding: 6px;
    }

    .floor-plan-tab {
        padding: 12px 24px;
        font-size: 14px;
    }

    .floor-plan-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floor-plan-image {
        height: 300px;
    }

    .floor-plan-details {
        padding: 20px 0;
    }

    .floor-plan-title {
        font-size: 28px;
    }

    .floor-plan-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* LOCATION MOBILE */
    .location-section {
        padding: 80px 0;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-map {
        height: 300px;
        order: 2;
    }

    .location-details {
        order: 1;
    }

    .location-details h3 {
        font-size: 28px;
    }

    /* PROJECT HIGHLIGHTS MOBILE */
    .project-highlights-section {
        padding: 60px 0;
    }

    .highlights-image-box {
        width: 100%;
        max-width: 300px;
        height: 180px;
    }

    .highlights-title {
        font-size: clamp(20px, 6vw, 28px);
        margin-bottom: 16px;
    }

    .highlights-description {
        font-size: 14px;
        text-align: left;
        padding: 0 10px;
    }

    /* QR SECTION MOBILE */
    .qr-description-section {
        padding: 60px 0;
    }

    .qr-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 16px;
    }

    .qr-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .qr-box {
        width: 160px;
        height: 160px;
    }

    .qr-placeholder i {
        font-size: 36px;
    }

    /* BROCHURE MOBILE */
    .brochure-section {
        padding: 60px 0;
    }

    .brochure-title {
        font-size: 32px;
    }

    .brochure-subtitle {
        font-size: 16px;
    }

    .brochure-cta {
        flex-direction: column;
        align-items: center;
    }

    .brochure-btn {
        padding: 16px 32px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* CONTACT MOBILE */
    .contact-section {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h3 {
        font-size: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* STICKY CONTACT MOBILE */
    .sticky-contact-content {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 16px;
    }

    .sticky-btn {
        padding: 10px 16px;
        font-size: 14px;
        flex: 1;
        min-width: 100px;
        justify-content: center;
    }

    /* MODAL MOBILE */
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
        max-height: 80vh;
        overflow-y: auto;
    }

    .modal-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    /* VERY SMALL SCREENS */
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .amenity-card {
        padding: 16px 12px;
    }

    .amenity-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .amenity-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .amenity-description {
        font-size: 12px;
    }

    .gallery-slide.prev,
    .gallery-slide.next {
        width: 12%;
        opacity: 0.4;
    }
    
    .gallery-slide.active {
        width: 80%;
        left: 10%;
    }

    .highlights-image-box {
        width: 100%;
        max-width: 280px;
        height: 160px;
    }

    .qr-box {
        width: 140px;
        height: 140px;
    }

    .sticky-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
    }

    .floor-plan-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}