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

body {
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
    background: #fff;
    color: #333;
    margin: 0;
    padding: 0;
    height: 100%;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    overflow-y: auto;            
    justify-content: flex-start;

    padding-top: 0;
    margin-top: 0;
}

.logo {
    text-align: left;
    margin-bottom: 50px;
}

.logo h1 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #2c2c2c;
    line-height: 1.2;
}

.logo {
    display: flex;
    align-items: center;
    /* gap: 15px; space between logo and name */
    /* text-align: left; */
    margin-bottom: 50px;
}

.logo-img {
    width: auto;
    
    height: 200px;
    max-height: 250px;
    margin-top: 0;
    padding-top: 0;

    object-fit: contain;
}
.logo-wrapper {
    display: flex;
    justify-content: center;
}
.logo-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}
.stars {
    font-size: 20px;
    color: #C5A880;
}

.nav-links {
    list-style: none;
    margin: 40px 0;
}

.nav-links li {
    margin: 25px 0;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #C5A880;
}

.reservation {
    margin-top: auto;
    text-align: left;
}

.reservation p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.phone {
    text-decoration: none;
    color: #C5A880;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone i {
    font-size: 16px;
}

main {
    margin-left: 300px;
    min-height: 100vh;
}

.hero {
    height: 100vh;
    position: relative;
    background: url('./images/facilities/Facade.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-text h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 6px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #fff;
    color: #333;
}

/* Luxury Experience Section */
.luxury-experience {
    padding: 100px 80px;
    background: #fff;
}

.experience-content {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-content h3 {
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
    margin: 20px 0;
    font-weight: 500;
}

.experience-content h2 {
    font-size: 48px;
    color: #2c2c2c;
    margin-bottom: 40px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 2px;
}

.experience-text {
    max-width: 800px;
    margin-bottom: 60px;
}

.experience-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.image-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    main {
        margin-left: 0;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .luxury-experience {
        padding: 60px 20px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .experience-content h2 {
        font-size: 36px;
    }
}

/* Rooms Section */
.rooms-section {
    padding: 100px 0;
    background: #fff;
}

.rooms-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title {
    font-size: 48px;
    color: #2c2c2c;
    margin-bottom: 60px;
    font-weight: 400;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    position: relative;
    overflow: hidden;
}

.room-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.book-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.book-btn:hover {
    background: #C5A880;
}

.room-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.room-card:hover .room-details {
    transform: translateY(-60px);
}

.price {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    color: #C5A880;
}

.room-title {
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amenities {
    height: 0;
    overflow: hidden;
    margin-top: 0;
    display: flex;
    gap: 25px;
    opacity: 0;
    transition: all 0.3s ease;
}

.room-card:hover .amenities {
    height: 50px;
    margin-top: 20px;
    opacity: 1;
}

.amenities i {
    color: #C5A880;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.amenities i:hover {
    transform: scale(1.2);
}

/* Remove any potential top-left room name styles */
.room-image::before,
.room-image::after {
    display: none;
}

.room-name-overlay {
    display: none;
}

.details-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 15px;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.room-card:hover .details-link {
    opacity: 1;
    transform: translateY(0);
}

.details-link:hover {
    color: #C5A880;
}

@media (max-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-image {
        height: 400px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* Extra Services Section */
.extra-services {
    padding: 100px 80px;
    background: #1c1c1c;
    color: #fff;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-content h3 {
    font-size: 14px;
    letter-spacing: 3px;
    color: #C5A880;
    margin-bottom: 20px;
    font-weight: 500;
}

.services-content h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 2px;
}

.services-description {
    font-size: 18px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 20px;
    max-width: 600px;
}

.services-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 40px;
    max-width: 600px;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-info p {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.contact-info .phone {
    color: #C5A880;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 30px;
    background: #fff;
    color: #333;
}

.service-info h3 {
    font-size: 24px;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-info .price {
    font-size: 36px;
    color: #C5A880;
    margin-bottom: 25px;
}

.service-info .price span {
    font-size: 16px;
    color: #666;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.service-features li.available i {
    color: #4CAF50;
}

.service-features li.unavailable i {
    color: #f44336;
}

.service-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #C5A880;
}

@media (max-width: 1024px) {
    .extra-services {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-content h2 {
        font-size: 36px;
    }

    .service-info .price {
        font-size: 30px;
    }
}

/* Hotel Facilities Section */
.hotel-facilities {
    padding: 100px 80px;
    background: #fff;
}

.facilities-content {
    max-width: 1200px;
    margin: 0 auto;
}

.facilities-content h3 {
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.facilities-content h2 {
    font-size: 48px;
    color: #2c2c2c;
    margin-bottom: 60px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 2px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.facility-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.facility-card:hover {
    transform: translateY(-10px);
}

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #C5A880;
    border-radius: 50%;
    color: #C5A880;
    font-size: 30px;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    background: #C5A880;
    color: #fff;
}

.facility-card h3 {
    font-size: 24px;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 500;
}

.facility-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 auto;
    max-width: 280px;
}

@media (max-width: 1024px) {
    .hotel-facilities {
        padding: 60px 20px;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .facilities-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .facility-card {
        padding: 30px 20px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 80px;
    background: url('./images/facilities/mandir.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
    text-align: center;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 28, 28, 0.85);
    z-index: 1;
}

.testimonials-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-content h3 {
    font-size: 14px;
    letter-spacing: 3px;
    color: #C5A880;
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonials-content h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin: 0 auto 60px;
    max-width: 800px;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 0 20px;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.client-details .stars {
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.client-details h4 {
    color: #C5A880;
    font-size: 16px;
    margin: 0 0 8px 0;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-initial {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #C5A880;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-right: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.client-details p {
    color: #999;
    font-size: 13px;
    margin: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin: 0 auto 40px;
    max-width: 800px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #C5A880;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-content h2 {
        font-size: 36px;
    }

    .testimonial-text {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* Discover Sections (Restaurant & Spa) */
.discover-section {
    padding: 0;
    background: #fff;
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.discover-grid.reverse {
    direction: rtl;
}

.discover-grid.reverse .discover-content {
    direction: ltr;
}

.discover-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.discover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.discover-image:hover img {
    transform: scale(1.05);
}

.discover-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.discover-content h3 {
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.discover-content h2 {
    font-size: 48px;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 2px;
}

.discover-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.learn-more {
    display: inline-block;
    padding: 15px 40px;
    background: #C5A880;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.learn-more:hover {
    background: #2c2c2c;
}

@media (max-width: 1024px) {
    .discover-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .discover-image {
        height: 400px;
    }

    .discover-content {
        padding: 60px 20px;
    }

    .discover-content h2 {
        font-size: 36px;
    }

    .discover-grid.reverse {
        direction: ltr;
    }
}

/* Booking Section */
.booking-section {
    padding: 0;
    background: url('https://images.unsplash.com/photo-1618773928121-c32242e63f39') center/cover no-repeat;
    position: relative;
    min-height: 600px;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.room-info {
    background: rgba(28, 28, 28, 0.9);
    color: #fff;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-info .stars {
    color: #C5A880;
    font-size: 18px;
    margin-bottom: 40px;
    letter-spacing: 5px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-option {
    padding: 30px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    border-color: #C5A880;
}

.contact-option h4 {
    color: #C5A880;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
}

.contact-option .phone,
.contact-option .email {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.contact-option .phone:hover,
.contact-option .email:hover {
    color: #C5A880;
}

.contact-option i {
    font-size: 20px;
}

.call-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 14px;
}

.call-info i {
    color: #4CAF50;
    font-size: 14px;
}

.booking-form-container {
    background: #fff;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-form-container h3 {
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.booking-form-container h2 {
    font-size: 48px;
    color: #2c2c2c;
    margin-bottom: 40px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 2px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

.form-control {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
    background: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-control:focus {
    outline: none;
    border-color: #C5A880;
    box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.1);
}

.check-availability-btn {
    background: #C5A880;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
    text-transform: uppercase;
}

.check-availability-btn:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .booking-content {
        grid-template-columns: 1fr;
    }

    .room-info {
        padding: 60px 40px;
    }

    .booking-form-container {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .booking-section {
        min-height: auto;
    }

    .room-info {
        padding: 40px 20px;
    }

    .booking-form-container {
        padding: 40px 20px;
    }

    .booking-form-container h2 {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-option .phone,
    .contact-option .email {
        font-size: 20px;
    }
}

/* Partners Section */
.partners {
    padding: 40px 80px;
    background: #f8f8f8;
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.partners-grid img {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.partners-grid img:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .booking-section {
        grid-template-columns: 1fr;
    }

    .booking-content {
        grid-template-columns: 1fr;
    }

    .room-info,
    .booking-form-container {
        padding: 60px 20px;
    }

    .room-description {
        font-size: 24px;
    }

    .booking-form-container h2 {
        font-size: 36px;
    }

    .partners {
        padding: 40px 20px;
    }

    .partners-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
}

/* Footer Section */
.footer {
    background: #1c1c1c;
    padding: 100px 80px 40px;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 2px;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 30px;
}

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

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

.footer-explore a {
    color: #999;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-explore a:hover {
    color: #C5A880;
}

.footer-contact .address {
    color: #999;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact .phone-info {
    margin-bottom: 20px;
}

.footer-contact .phone {
    font-size: 20px;
}

.footer-contact .email {
    color: #999;
    font-size: 16px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #999;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #C5A880;
}

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

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Active Navigation Link */
.nav-links a.active {
    color: #C5A880;
}

/* Scroll Padding for Fixed Header */
html {
    scroll-padding-top: 20px;
}

/* Coming Soon Restaurant Section */
.discover-image {
    position: relative;
    overflow: hidden;
}

.coming-soon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #C5A880;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 2px;
    transform: rotate(3deg);
    z-index: 2;
}

.launch-info {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.launch-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.launch-detail i {
    color: #C5A880;
    font-size: 24px;
}

.launch-detail span {
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

.notify-btn {
    display: inline-block;
    background: #C5A880;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.notify-btn:hover {
    background: #2c2c2c;
}

@media (max-width: 768px) {
    .launch-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .coming-soon {
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* Location Highlights */
.location-highlights {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(197, 168, 128, 0.1);
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight i {
    color: #C5A880;
    font-size: 24px;
}

.highlight span {
    font-size: 14px;
    color: #2c2c2c;
    letter-spacing: 1px;
    font-weight: 500;
}

.location .discover-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.location .learn-more {
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .location-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight {
        padding: 12px;
    }

    .highlight i {
        font-size: 20px;
    }
} 

/* Room carousel inside each card */
.room-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .room-carousel .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .room-carousel img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    height: 280px;
    display: block;
  }
  
  .room-carousel button.prev,
  .room-carousel button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .room-carousel:hover button.prev,
  .room-carousel:hover button.next {
    opacity: 1;
  }
  
  .room-carousel button.prev { left: 10px; }
  .room-carousel button.next { right: 10px; }
  
  .room-carousel button i { font-size: 14px; }
  .nearby-section{padding:60px 60px;background:#faf7f4}
  .nearby-content{max-width:1200px;margin:0 auto}
  .nearby-content h2{font-size:34px;text-align:center;margin-bottom:28px}
  .nearby-content h2 span{display:block;color:#C5A880;font-size:16px;margin-top:8px}
  .attractions-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
  .attraction-card{background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 6px 18px rgba(0,0,0,0.06);text-align:center}
  .attraction-card img{width:100%;height:150px;object-fit:cover;display:block}
  .attraction-card h4{font-size:18px;margin:12px 0 6px;color:#2c2c2c}
  .attraction-card p{font-size:14px;color:#555;padding:0 12px 18px}

  
  .faq-section{padding:60px 60px;background:#fff}
  .faq-container{max-width:900px;margin:0 auto}
  .faq-container h2{text-align:center;margin-bottom:24px;font-size:28px;color:#2c2c2c}
  .faq-list{margin-top:16px}
  .faq-item{margin-bottom:14px;border-bottom:1px dashed rgba(0,0,0,0.04);padding-bottom:12px}
  .faq-question{width:100%;background:transparent;border:none;text-align:left;font-size:16px;color:#C5A880;padding:12px 0;cursor:pointer;font-weight:600}
  .faq-answer{margin-top:8px;color:#444;font-size:15px}


  .whatsapp-btn{
    position:fixed;right:20px;bottom:22px;width:56px;height:56px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;
    z-index:1400;box-shadow:0 8px 30px rgba(37,211,102,0.2);text-decoration:none;font-size:22px;
  }
  .whatsapp-btn:hover{transform:translateY(-3px);transition:all .15s ease}