/* Base Styles */
:root {
    --primary-color: #c19a6b; /* Luxurious gold */
    --secondary-color: #c4a758; /* Dark charcoal */
    --accent-color: #8b6b3d; /* Darker gold for accents */
    --light-color: #f8f5f0; /* Creamy white */
    --dark-color: #222222; /* Almost black */
    --text-color: #555555; /* Dark gray */
    --text-light: #888888; /* Medium gray */
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    font-size: 0.95rem;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(193, 154, 107, 0.2);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(193, 154, 107, 0.2);
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.section-divider span {
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
    display: inline-block;
}

.section-divider i {
    color: var(--primary-color);
    margin: 0 15px;
    font-size: 0.8rem;
}

.tagline {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 10px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-logo img {
    height: 60px;
    margin-bottom: 30px;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(193, 154, 107, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Header Styles */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.luxury-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.luxury-nav ul {
    display: flex;
}

.luxury-nav ul li {
    margin: 0 15px;
    position: relative;
}

.luxury-nav ul li a {
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.luxury-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.luxury-nav ul li a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.call-btn {
    padding: 12px 20px;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Mobile Menu */
.luxury-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: var(--transition);
    overflow-y: auto;
}

.luxury-mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-header img {
    height: 40px;
}

.close-menu-btn {
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.luxury-mobile-menu ul {
    padding: 25px;
}

.luxury-mobile-menu ul li {
    margin-bottom: 20px;
}

.luxury-mobile-menu ul li a {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 1.1rem;
    display: block;
    padding: 8px 0;
}

.mobile-cta {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Hero Slider */
.luxury-hero-slider {
    margin-top: 80px;
    position: relative;
  
}

.swiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 100px;
    left: 100px;
    max-width: 600px;
    color: var(--white);
    z-index: 2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    padding: 50px;
 
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.856), rgba(0, 0, 0, 0));

    z-index: 1;
}





.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-scroll-down span {
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: 5px; opacity: 1; }
    100% { top: 15px; opacity: 0; }
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

.swiper-button-next, 
.swiper-button-prev {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background-color: var(--primary-color);
}

.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 1.8rem;
}

/* Overview Section */
.overview-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: column;
}

.overview-image {
    flex: 1;
    position: relative;
}

.image-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.image-frame img {
    width: 100vw;

    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.overview-image:hover .image-frame img {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

.overview-details {
    flex: 1;
}

.quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.fact-item {
    display: flex;
    gap: 15px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 90px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.fact-item:hover {
    transform: translateY(-5px);
}

.fact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fact-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.project-highlights h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.project-highlights h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 46%;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    text-align: center;

}

.highlights-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

/* Mobile: force 2 items per row */

.highlight-item {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 400px;
    height: 140px;
}


.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
}

@media only screen and (max-width: 800px) {
  .highlight-item {
    width: 150px;
    height: 220px;

}
.highlight-item i {
    font-size: 2rem;

}

.highlight-item h4 {
    font-size: 1rem;
  
}
}
/* About Section */
.about-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    background-repeat: repeat;
    opacity: 0.03;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: normal;
}

.about-text p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}
.card-zone {
    margin-bottom: 20px;
    position: relative;
}

#active-card-container .feature-item {
    border: 2px solid #007bff;
    background: #e9f2ff;
}

.carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x mandatory;
}

.feature-item {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Media query for small screens (mobile) */
@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-item .value{
        font-size:20px !important;
    }
    .fact-item .label{
        font-size:18px !important;
    }
}

.feature-item {
    text-align: center;
    padding: 20px 25px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    background-color: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item .value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.feature-item .label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}


/* Amenities Section */
/* Wrapper for the whole slider */
#amenities-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Horizontal scrolling container */
.slider-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    scrollbar-width: none; /* Firefox */
}
.slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Amenity card styling */
.amenity-card {
    flex: 0 0 auto;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Hover effect for desktop */
.amenity-card:hover {
    transform: translateY(-5px);
}

/* Image styling */
.amenity-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Buttons styling */
#prev-btn, #next-btn {
    background: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0 12px;
    z-index: 10;
    color: #333;
}

/* Responsive widths for amenity cards */
@media (max-width: 599px) {
    .amenity-card {
        width: 70vw; /* wider cards for small screens */
    }
}

@media (min-width: 600px) and (max-width: 1023px) {
    .amenity-card {
        width: 40vw; /* medium width cards for tablets */
    }
}

@media (min-width: 1024px) {
    .amenity-card {
        width: 400px; /* fixed width for desktops */
    }
}


.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.amenity-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.amenity-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-info {
    padding: 25px;
    background-color: var(--white);
    position: relative;
}

.amenity-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.amenities-list-container {
    margin-top: 60px;
    text-align: center;
}

.amenities-list-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.amenities-list-container h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
    text-align: left;
}
/* 🔽 Media Query for Mobile: Force 2 items per row */
@media (max-width: 600px) {
    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
.amenities-list li {
    padding: 15px 20px 15px 40px;
    background-color: var(--white);
    border-radius: 5px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.amenities-list li:hover {
    transform: translateX(10px);
}

.amenities-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    z-index: 2;
    transition: var(--transition);
}

.gallery-item:hover i {
    opacity: 1;
}

/* Floor Plans Section */
.floorplans-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.floorplan-card {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.floorplan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.floorplan-image {
    height: auto;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.floorplan-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floorplan-info {
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.floorplan-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.floorplan-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.floorplan-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
}

/* Location Section */
.location-section {
    background-color: var(--white);
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.location-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    transition: var(--transition);
        transform: translateY(-1px);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.advantage-content .distance {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
    position: absolute;
    top: 30px;
    right: 10px;

    
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
}

.testimonials-slider {
    padding: 0 50px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin: 20px 0;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(193, 154, 107, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-details a, 
.contact-details p {
    color: var(--text-color);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1em;
}

/* Brochure Section */
.brochure-section {
    background-color: var(--white);
    color: var(--primary-color);
}

.brochure-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.brochure-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color:  var(--primary-color);
}

.brochure-text p {
    color:  var(--primary-color);
}

.brochure-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid  var(--primary-color);
    white-space: nowrap;
}

.brochure-btn:hover {
    background-color: transparent;
    color:  var(--primary-color);
}

/* Footer */
.luxury-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 15px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-contact-item a,
.footer-contact-item p {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section {
        padding: 80px 0;
    }
    
    .swiper {
        height: 80vh;
    }
}

@media (max-width: 992px) {
    .overview-content,
    .contact-content,
    .brochure-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .overview-image,
    .overview-details,
    .contact-info,
    .contact-form {
        width: 100%;
    }
    
    .brochure-content {
        text-align: center;
    }
    
    .swiper {
        height: 70vh;
    }
    
    .slide-content {
        left: 50px;
        bottom: 50px;
        max-width: 80%;
    }
    
    .slide-content h2 {
        font-size: 3rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {

    .advantage-icon{
        font-size: 23px;
        height: 40px;
        width: 40px;
        margin-top: 15px;
    }
    .luxury-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .swiper {
        height: 60vh;
        min-height: 500px;
    }
    
    .slide-content {
        left: 30px;
        bottom: 30px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    
    
    .location-advantages {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .swiper {
        height: 50vh;
        min-height: 400px;
    }
    
    .slide-content {
        left: 20px;
        bottom: 20px;
        max-width: 90%;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .quick-facts {
        flex-direction: column;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
  font-family: 'Playfair Display', serif !important;
}

/* Paragraphs, divs, spans, list items, etc. use Playfair Display font */
p, div, span, li {
  font-family: 'Montserrat', sans-serif !important;
}
/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Content */
.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.countdown-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #c19a6b;
  border-top: 2px solid #ddd;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
}

.countdown-heading {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.countdown-timer {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
  margin-bottom: 35px;
}

.pulse-btn {
  position: relative;
      background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    white-space: nowrap;

}

.pulse-btn:hover {
    background-color: var(--white);
    color:  var(--primary-color);
}

.pulse-btn i {
  margin-right: 10px;
}
/* Hide mobile banner by default */
      .mobile-banner {
        display: none;
      }

      /* Show desktop banner by default */
      .desktop-banner {
        display: block;
        width: 100%;
        
      }
 

      /* Responsive behavior */
      @media (max-width: 768px) {
        /* On small screens, hide desktop banner and show mobile banner */
        .desktop-banner {
          display: none;
        }
        .mobile-banner {
          display: block;
          width: 100%;
        }
  
      }

      /* Optional: make images responsive */
      .desktop-banner img,
      .mobile-banner img {
        margin-top: 83PX;
        width: 100%;
        height: auto;
        display: block;
        background-color: #ede6de;
        background-image: url("images/20556979.jpg");
        background-blend-mode: overlay;
        background-size: 50%;
        background-position: center;
        background-repeat: repeat;

        /* Add these: */
        transform: translateZ(0);
        will-change: transform;
      }