html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

:root {
    /* Color Palette */
    --primary: #758364;
    /* Soft Sage */
    --primary-light: #8B9772;
    /* Sage from Logo */
    --secondary: #4A5340;
    /* Deep Moss */
    --accent: #C89F70;
    /* Earthy Gold/Tan */
    --bg-light: #F9F9F4;
    /* Pale Cream */
    --bg-alt: #F0F2ED;
    /* Sage White */
    --text-dark: #2C3327;
    --text-muted: #666E5E;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 40px rgba(117, 131, 100, 0.1);
}

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

body {
    font-family: var(--font-body);
    background-color: #f1f2ed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;

}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

nav.scrolled .logo img {
    filter: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

nav.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

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

.btn-book {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(117, 131, 100, 0.2);
}

.btn-book:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 131, 100, 0.3);
}

.btn-outline {
    background: transparent !important;
    border: 2px solid white !important;
    box-shadow: none !important;
}

.btn-outline:hover {
    background: white !important;
    color: var(--primary) !important;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 51, 39, 0.55), rgba(44, 51, 39, 0.35));
    z-index: 10;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* iOS / mobile: background-attachment:fixed breaks on Safari */
@media (max-width: 768px) {
    .hero-bg-slider .swiper-slide {
        background-attachment: scroll !important;
    }
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.6rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.weather-badge {
    background: rgb(255 255 255 / 44%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.1s backwards;
}

.weather-badge i {
    color: var(--accent);
    font-size: 1.2rem;
}

.weather-badge .temp {
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 1rem;
}

/* --- Booking Bar --- */
.booking-bar-container {
    width: 100%;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 5%;
}

.booking-bar {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 2rem;
    align-items: flex-end;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-field label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.booking-field input[type="date"] {
    padding: 0.8rem 1rem;
    border: 1.5px solid #eee;
    border-radius: 10px;
    font-family: inherit;
}

.stepper {
    display: flex;
    align-items: center;
    border: 1.5px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    justify-content: space-between;
}

.stepper button {
    background: #f9f9f9;
    border: none;
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--primary);
}

.stepper input {
    width: 60px;
    text-align: center;
    border: none;
    font-family: inherit;
    font-weight: 600;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
}

.btn-direct-book {
    background: #000;
    color: #fff;
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-direct-book:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* --- Sections Common --- */
section {
    padding: 80px 10%;
    position: relative;
}

section.bg-alt {
    background-color: var(--bg-alt);
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title span {
    text-transform: capitalize;
    display: block;
    letter-spacing: 2px;
    font-size: 1rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

/* --- Room Slider --- */
.roomSwiper {
    padding-bottom: 100px !important;
}

.room-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.room-image {
    height: 280px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    padding: 2.22rem;
    flex-grow: 1;
}

.room-info h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f1f1;
}

.room-specs span {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Ensure equal height slides */
.swiper-slide {
    height: auto !important;
    display: flex;
}

.room-card,
.review-card,
.nearby-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Center containers for sliders and their titles */
.room-types,
.testimonials,
.nearby {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.slider-container {
    position: relative;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: white;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    z-index: 2;
}

.swiper-button-next {
    right: -25px !important;
}

.swiper-button-prev {
    left: -25px !important;
}

.roomSwiper,
.reviewSwiper,
.nearbySwiper {
    overflow: hidden !important;
    width: 100%;
}

@media (max-width: 1400px) {
    .swiper-button-next {
        right: 5px !important;
    }

    .swiper-button-prev {
        left: 5px !important;
    }
}

@media (max-width: 850px) {

    .roomSwiper,
    .reviewSwiper,
    .nearbySwiper {
        overflow: hidden !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
        /* Hide outside buttons on tablet if they touch edges */
    }
}

@media (max-width: 768px) {

    .roomSwiper,
    .reviewSwiper,
    .nearbySwiper {
        padding-bottom: 70px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: flex !important;
        /* Re-enable for mobile in a stacked view if space exists */
        width: 40px !important;
        height: 40px !important;
        top: auto;
        bottom: -50px;
        transform: none;
    }

    .swiper-button-next {
        right: 25% !important;
        left: auto;
    }

    .swiper-button-prev {
        left: 25% !important;
        right: auto;
    }
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

/* --- About Section --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 18px;
}

.about-badge h4 {
    font-size: 2.2rem;
    margin: 0;
}

.about-checks {
    flex-wrap: wrap;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}


.about-checks i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* --- Amenities grid --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.amenity-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.amenity-card i {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* --- Features grid --- */
.features-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-content {
    padding: 5rem;
    background: var(--primary);
    color: white;
}

.feature-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 2.5rem;
}
.feature-list strong{
    display: block;
    width: 100%;
}

.feature-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-list i {
    color: var(--accent);
}

.feature-image {
    background: url('assets/story.jpg') center/cover;
}

/* --- Venues & Dining Section --- */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.venue-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(117, 131, 100, 0.18);
}

.venue-image {
    height: 160px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.venue-card:hover .venue-image img {
    transform: scale(1.08);
}

.venue-body {
    padding: 2rem 2.2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.venue-body h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.venue-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.venue-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid #f0f0ec;
}

.venue-features li {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.venue-features li i {
    color: var(--primary);
    font-size: 0.75rem;
    background: rgba(117, 131, 100, 0.12);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* CTA Card */
.venue-cta-card {
    background: linear-gradient(145deg, var(--secondary), var(--primary));
    color: white;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2.5rem;
    gap: 1.2rem;
}

.venue-cta-card>i {
    font-size: 3rem;
    color: var(--accent);
}

.venue-cta-card h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.venue-cta-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0.4rem 0 1.2rem;
}

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

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

/* --- Gallery grid --- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Gallery anchor wrapper for Fancybox */
.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-item {
        height: 180px;
        border-radius: 12px;
    }

    /* Wide items revert to normal on mobile */
    .gallery-item.gallery-wide {
        grid-column: span 1;
    }
}

/* --- Testimonials --- */
.review-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card p {
    flex-grow: 1;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.user-avatar {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    border: none;
    font-weight: 700;
}

/* --- Nearby --- */

.nearby {
    background: var(--primary);
    color: white;
}

.nearby .section-title h2,
.nearby .section-title span {
    color: white;
}

.nearby {
    background: var(--primary);
    color: white;
}

.nearby-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nearby-card p {
    flex-grow: 1;
}

.distance {
    color: var(--accent);
    font-weight: 800;
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- FAQ --- */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: #f9f9f7;
    border-radius: 15px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    padding: 1.8rem 2.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.8rem;
    max-height: 250px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

/* --- Contact & Location --- */
.contact-location {
    padding: 60px 30px !important;
}

@media (max-width: 768px) {
    .contact-location {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr 0.8fr;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.info-card {
    height: 100%;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item div {
    width: 73%;
}

.info-item:last-of-type {
    margin-bottom: 0;
}

.info-item i {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 1.4rem;
    transition: var(--transition);
}

.info-item a {
    text-decoration: none;
    color: var(--text-dark);
}

.info-item:hover i {
    background: var(--primary);
    color: white;
}

.whatsapp-card {
    margin-top: 3rem;
    background: #E8F8EF;
    padding: 1.5rem;
    border-radius: 20px;
    transition: var(--transition);
}

.whatsapp-card:hover {
    background: #d4f2e1;
    transform: translateY(-5px);
}

.whatsapp-card a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: #075E54;
}

.whatsapp-card i {
    font-size: 2.5rem;
    color: #25D366;
}

.whatsapp-card span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.whatsapp-card strong {
    font-size: 1.1rem;
}

.form-card {
    height: 100%;
    padding: 2.5rem !important;
}

.form-title {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fcfcfc;
    font-family: inherit;
}

.form-group textarea {
    height: 160px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.map-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
    height: 100%;
    border: 1px solid #000;
}

.w-100 {
    width: 100%;
}

@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }

    .map-card {
        grid-column: span 2;
        height: 350px;
        min-height: auto;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-card {
        grid-column: auto;
        height: 300px;
    }
}

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

    .contact-card {
        padding: 2rem;
    }
}

/* --- Legal / Policy pages --- */
.legal-page {
    padding: 8rem 5% 4rem;
    min-height: 60vh;
}

.legal-page-inner {
    margin: 0 auto;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-page h1 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.legal-page .legal-intro {
    font-size: 1.05rem;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section {
    margin-top: 2.25rem;
    padding: 1.5rem;
    border-top: 1px solid var(--bg-alt);
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.25rem 0 0.5rem;
}

.legal-section ul {
    margin: 0.75rem 0 0 1.25rem;
    color: var(--text-dark);
}

.legal-section li {
    margin-bottom: 0.45rem;
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section a:hover {
    color: var(--secondary);
}

.legal-policy-list strong {
    font-weight: 600;
    color: var(--secondary);
}

.legal-back {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-alt);
    margin-bottom: 0;
}

.legal-back .btn-book {
    display: inline-block;
    text-decoration: none;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .legal-page-inner {
        padding: 2rem 1.5rem;
    }

    .legal-page h1 {
        font-size: 1.85rem;
    }

    .footer-meta {
        align-items: center;
        text-align: center;
    }
}

/* --- Footer --- */
footer {
    background: #111;
    color: white;
    padding: 80px 10% 40px;
    text-align: center;
}

.footer-top {
    margin-bottom: 4rem;
}

.footer-top p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 450px;
    margin: 1.5rem auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 2rem;
    font-size: 1.6rem;
}

.footer-socials a {
    color: white;
    opacity: 0.5;
    transition: 0.3s;
}

.footer-socials a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 9999;
}

/* Floating Call */
.float-call {
    position: fixed;
    bottom: 115px;
    right: 35px;
    background: var(--primary);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(117, 131, 100, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: call-pulse 2.5s ease-in-out infinite;
}

.float-call:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

@keyframes call-pulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(117, 131, 100, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(117, 131, 100, 0.7), 0 0 0 10px rgba(117, 131, 100, 0.12);
    }
}

/* Lightbox Styles */

.lightbox {
    display: none;
    position: fixed;
    z-index: 10001;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
    height: 80vh;
    object-fit: cover;
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0.1)
    }

    to {
        transform: scale(1)
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 100%;
        margin: auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Fixes --- */
@media (max-width: 1024px) {
    section {
        padding: 80px 7%;
    }

    .about,
    .contact-container,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {

    nav {
        padding: 1rem 5%;
    }

    .logo img {
        height: 42px;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        color: white;
        cursor: pointer;
        z-index: 1100;
        /* Above nav-links */
        position: relative;
        transition: var(--transition);
    }

    nav.scrolled .mobile-menu-btn {
        color: var(--primary);
    }

    /* Change icon color when menu is active */
    nav:has(.nav-links.active) .mobile-menu-btn,
    body.menu-open .mobile-menu-btn {
        color: var(--primary) !important;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        padding-top: 70px;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-links .btn-book {
        color: #fff !important;
        padding: 12px 35px !important;
        line-height: normal;
        border-radius: 5px;
        margin-top: auto;
        margin-bottom: 50px;
        font-weight: 500;

        &::after {
            content: none;
        }
    }

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

    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 1.4rem;
        font-weight: 700;
    }

}

@media (max-width: 768px) {
    section {
        padding: 40px 5%;
    }

    .hero {
        padding: 0 5%;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .booking-bar-container {
        margin-top: -30px;
    }

    .booking-bar {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .btn-direct-book {
        width: 100%;
    }

    .section-title {
        margin-bottom: 1.5rem !important;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .about-badge {
        padding: 1.2rem;
        bottom: 0;
        right: 0;
        border-radius: 12px;
    }

    .about-badge h4 {
        font-size: 1.6rem;
    }

    .about-checks {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-content {
        padding: 3rem 1.5rem;
    }

    .feature-content h2 {
        font-size: 2rem;
    }

    .feature-image {
        height: 280px;
    }

    .room-image {
        height: 230px;
    }

    .room-info {
        padding: 1.8rem;
    }

    .room-info h3 {
        font-size: 1.4rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .review-card {
        padding: 2rem;
    }

    .amenity-card {
        padding: 2rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }

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

    .float-call {
        width: 52px;
        height: 52px;
        font-size: 22px;
        bottom: 84px;
        right: 20px;
    }
}



@media (min-width: 992px) {
    .d-md-none {
        display: none;
    }
}
.pb-0{
    padding-bottom: 0!important;
}