/* --- CSS Reset & Premium Variables --- */
:root {
    /* Earthy, Natural, Luxurious Palette */
    --color-bg-light: #F9F8F6; /* Soft airy off-white */
    --color-bg-dark: #1E2521;  /* Deep forest green/black */
    --color-text-main: #232C27; /* Dark elegant green-grey */
    --color-text-muted: #5A6B60; /* Muted forest grey */
    --color-accent: #A68A61; /* Warm cardamom / wood tone */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --spacing-section: 6rem;
    --spacing-element: 2rem;
    --container-max-width: 1400px;
    
    /* Transitions */
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: 0.4s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.7;
    font-size: 0.95rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.2rem); }
h5 { font-size: clamp(1rem, 1.5vw, 1.25rem); }
h6 { font-size: clamp(0.9rem, 1vw, 1rem); }

.section-title {
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

p {
    margin: 0;
    color: var(--color-text-muted);
}

p + p {
    margin-top: 1.5rem;
}

/* --- Layout --- */
.container {
    width: 92%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}

.section-padding {
    padding: var(--spacing-section) 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-medium);
    cursor: pointer;
    border: 1px solid transparent;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-text-main);
    color: var(--color-bg-light);
}
.btn-primary:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-text-main);
}
.btn-outline:hover {
    background-color: var(--color-text-main);
    color: var(--color-bg-light);
}

/* --- Header & Nav (Premium Solid Design) --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.4s ease;
}

.logo img {
    height: 65px;
    transition: all 0.4s ease;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links > a, .dropdown > a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-links > a:hover, .nav-links > a.active, .dropdown > a:hover, .dropdown > a.active {
    color: var(--color-accent);
}

.nav-links > a::after, .dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links > a:hover::after, .nav-links > a.active::after, .dropdown:hover > a::after {
    width: 100%;
}

/* Dropdown Menu - Sleeker Design */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.08);
    z-index: 1;
    border-top: 3px solid var(--color-accent);
    border-radius: 0 0 4px 4px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Invisible bridge to prevent hover loss in the margin gap */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.dropdown-content a {
    color: #333;
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a::after {
    display: none;
}
.dropdown-content a:hover {
    background-color: #fafafa;
    color: var(--color-accent);
    padding-left: 25px;
}

/* Book Now Button (Elegant Red) */
.btn-book-now {
    background-color: #D32F2F !important;
    color: #ffffff !important;
    border-radius: 30px;
    padding: 12px 28px !important;
    font-weight: 600;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease !important;
}
.btn-book-now::after {
    display: none !important;
}
.btn-book-now:hover {
    background-color: #B71C1C !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
}

/* --- Ultra-Modern Hero Slider --- */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 800px;
    width: 100%;
    overflow: hidden;
    /* Removes the margin-top because we will use a transparent header overlay */
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.swiper-slide-active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Static Text Overlay */
.hero-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
    pointer-events: none;
    width: 92%;
    max-width: 1600px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* Modern Fractional Pagination */
.hero-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    width: 92%;
    max-width: 1600px;
}

.custom-pagination {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 300;
    position: relative !important;
    width: auto !important;
}
.custom-pagination .swiper-pagination-current {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
}
.custom-pagination .swiper-pagination-total {
    color: rgba(255,255,255,0.5);
}

.hero-nav-arrows {
    display: flex;
    gap: 15px;
}
.hero-nav-arrows .swiper-button-prev,
.hero-nav-arrows .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: transparent;
    transition: all 0.3s ease;
    margin: 0;
}
.hero-nav-arrows .swiper-button-prev::after,
.hero-nav-arrows .swiper-button-next::after {
    font-size: 1rem;
}
.hero-nav-arrows .swiper-button-prev:hover,
.hero-nav-arrows .swiper-button-next:hover {
    background: #fff;
    color: #000 !important;
}

/* Booking Bar */
.booking-bar-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transform: translateY(50%);
}

.booking-bar {
    background: #fff;
    padding: 30px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-end;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-field label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.booking-field input,
.booking-field select {
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-text-main);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
}

.btn-book-submit {
    background: var(--color-text-main);
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    height: 52px;
}
.btn-book-submit:hover {
    background: var(--color-accent);
}

/* Transparent Header Logic */
body.transparent-header header {
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
body.transparent-header header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    border-bottom: none;
}
body.transparent-header header:not(.scrolled) .nav-links > a,
body.transparent-header header:not(.scrolled) .dropdown > a {
    color: #ffffff;
}
body.transparent-header header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
    .hero-title {  }
    .booking-bar { flex-wrap: wrap; }
    .booking-field { min-width: calc(50% - 10px); }
    .btn-book-submit { width: 100%; margin-top: 15px; }
}
@media (max-width: 768px) {
    .hero-title {  }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 10px; }
    .hero-controls { bottom: 30px; right: 50%; transform: translateX(50%); }
    .booking-bar-wrapper { position: relative; transform: none; background: #fff; }
    .booking-bar { padding: 30px; box-shadow: none; border-bottom: 1px solid #eee; }
    .booking-field { min-width: 100%; }
}

/* --- Elegant Overlapping Room Cards --- */
.room-swiper {
    padding: 20px 20px 80px 20px !important;
}

.room-card {
    background: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin: 0 auto;
}

.room-image {
    width: 60%;
    height: 550px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.room-details {
    width: 45%;
    margin-left: -5%;
    background: #fff;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.room-title {
    margin-bottom: 25px;
    color: var(--color-text-main);
    line-height: 1.3;
}

.room-details .desc {
    overflow-y: auto;
    padding-right: 20px;
    margin-bottom: 10px;
}
@media(min-width:992px){
  .room-details .desc {
    max-height: 200px;
}
}
@media(min-width:1350px){
  .room-details .desc {
    max-height: 300px;
}
}
/* Custom Premium Scrollbar */
.room-details .desc::-webkit-scrollbar {
    width: 4px;
}
.room-details .desc::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
}
.room-details .desc::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 10px;
}

.room-details .desc p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.room-details h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: var(--color-text-main);
}

.room-details ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    list-style: none;
    margin-left: 0 !important;
}

.room-details ul li {
    position: relative;
    padding-left: 20px;
    font-size: 1rem;
    color: var(--color-text-muted);
}
/* Styled Icons */
.room-details ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 0;
}
.room-details ul li i {
    font-size: 1.3rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Room Swiper Controls - Custom External Buttons */
.room-custom-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
    padding-right: 20px;
}
.room-nav-btn {
    color: var(--color-text-main);
    background: #fff;
    width: 55px; height: 55px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}
.room-nav-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}
.room-nav-btn:hover {
    color: #fff;
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.room-next:hover i {
    transform: translateX(3px);
}
.room-prev:hover i {
    transform: translateX(-3px);
}

.room-swiper .swiper-pagination {
    text-align: center;
    bottom: 0;
}
@media(min-width:992px){
    .room-swiper .swiper-pagination {
    text-align: left;
        bottom: 15px;
}
}
.room-swiper .swiper-pagination-bullet {
    background: var(--color-text-muted) !important;
    border-radius: 0;
    width: 25px;
    height: 3px;
    transition: all 0.3s ease;
}
.room-swiper .swiper-pagination-bullet-active {
    background: var(--color-accent) !important;
    width: 40px;
}

@media (max-width: 1024px) {
    .room-card {
        flex-direction: column;
    }
    .room-image {
        width: 100%;
        height: 400px;
    }
    .room-details {
        width: 90%;
        margin-left: 0;
        margin-top: -50px;
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .room-details {
        width: 95%;
        padding: 30px 20px;
    }
    .room-details ul {
        grid-template-columns: 1fr;
    }
.room-swiper {
    padding: 0 !important;
}


      .room-image {
    
        height: 240px;
    }
}




/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.feature-card i {
    font-size: 3.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}
.feature-card h4 {
    font-family: var(--font-body);
    letter-spacing: 1px;
    margin-bottom: 15px;
        margin-top: 10px;
    color: var(--color-text-main);
    text-transform: uppercase;
}
.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* --- Testimonial Section --- */
.testimonial-card {
    background: #fdfdfd;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-accent);
}
.premium-quote-icon {
    font-size: 3rem;
    color: rgba(93, 109, 85, 0.15); /* Faint accent color */
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}
.testimonial-author {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.testimonial-swiper .swiper-pagination-bullet {
    background: var(--color-accent);
}
.testimonial-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}
.testimonial-nav-arrows .swiper-button-prev,
.testimonial-nav-arrows .swiper-button-next {
    position: absolute;
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--color-accent);
}
.testimonial-nav-arrows .swiper-button-prev {
    left: -20px;
}
.testimonial-nav-arrows .swiper-button-next {
    right: -20px;
}
.testimonial-nav-arrows .swiper-button-prev::after,
.testimonial-nav-arrows .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

/* --- High-end Editorial Activities Layout --- */
.activities-section {
    background: #fff;
    padding-bottom: 150px;
}
.activity-alternate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 120px;
    background: transparent;
}
.activity-alternate:last-child {
    margin-bottom: 0;
}
.activity-alternate:nth-child(even) {
    flex-direction: row-reverse;
    background: transparent;
}
.activity-alternate .act-img {
    flex: 1;
    height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.activity-alternate .act-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}
.activity-alternate:hover .act-img img {
    transform: scale(1.05);
}
.activity-alternate .act-text {
    flex: 1;
    padding: 0;
    max-width: 500px;
}
.activity-alternate h3 {
    margin-bottom: 1.2rem;
    color: var(--color-text-main);
    line-height: 1.2;
}
.activity-alternate p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text-muted);
        margin: 0;

}

@media (max-width: 991px) {
    .activity-alternate, .activity-alternate:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    .activity-alternate .act-text {
        max-width: 100%;
        padding: 0 20px;
    }
    .activity-alternate .act-img {
        width: 100%;
        height: 400px;
    }
}

/* --- Premium Dining Section --- */
.dining-premium-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.dining-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.dining-text {
    width: 40%;
    padding-right: 20px;
}

.dining-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text-muted);
}

.dining-text .section-subtitle {
    text-align: left;
    margin-bottom: 15px;
}

.dining-image-block {
    width: 60%;
    position: relative;
    height: 600px;
}

.dining-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.1);
    transition: transform 1.5s ease;
}

.dining-image-block:hover img {
    transform: scale(1.03);
}

.dining-badge {
    position: absolute;
    bottom: -30px;
    right: -40px;
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    z-index: 2;
}

@media (max-width: 991px) {
    .dining-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    .dining-text, .dining-image-block {
        width: 100%;
    }
    .dining-image-block {
        height: 400px;
    }
    .dining-badge {
        bottom: -20px;
        left: 20px;
    }
}

/* --- Premium Footer --- */
footer {
    background-color: #1a1c1a;
    color: #f0f0f0;
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

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

.footer-heading {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-links li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: #fff;
}

/* --- Floating Action Buttons (Icons Only) --- */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff !important;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.fab::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.2);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

.fab:hover::before {
    transform: scale(2);
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-phone {
    background-color: var(--color-accent);
}

/* --- Gallery Grid --- */
.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 50px;
}
.gallery-grid-full a {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
}
.gallery-grid-full a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-grid-full a:hover img {
    transform: scale(1.05);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
}
/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title {  }
    .nav-links { gap: 20px; }
    
    .activity-alternate .act-img { height: 400px; }
    
    .overlap-image { width: 100%; }
    .overlap-content { position: relative; right: auto; top: auto; transform: translateY(-50px); margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-title {  }
    .section-title {  }
    
    .activity-alternate, .activity-alternate:nth-child(even) {
        flex-direction: column;
    }
    .activity-alternate .act-text { padding: 4rem 2rem; }
    
    .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .gallery-grid-full { grid-template-columns: 1fr; }
}

/* --- Forms & Input (Premium styling) --- */
.form-control {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-main);
    transition: var(--transition-medium);
    margin-bottom: 30px;
}
.form-control:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
}
.form-control::placeholder {
    color: rgba(0,0,0,0.4);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border-top: 2px solid var(--color-accent);
}
.dropdown-content a {
    color: var(--color-text-main);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.dropdown-content a::after {
    display: none;
}
.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--color-accent);
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* Book Now Button */
.btn-book-now {
    background-color: #e53935;
    color: #fff !important;
    border-radius: 4px;
    padding: 10px 25px !important;
    transition: background-color 0.3s;
}
.btn-book-now::after {
    display: none !important;
}
.btn-book-now:hover {
    background-color: #c62828 !important;
    color: #fff !important;
}

/* --- Mobile Offcanvas Menu --- */

.scrolled .mobile-menu-toggle {
    color: var(--color-text-main);
}

.offcanvas-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 95%;
     height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}
.offcanvas-menu.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
}
.offcanvas-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.3s;
}
.offcanvas-close:hover {
    color: var(--color-accent);
}

.offcanvas-body {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow-y: auto;
}
.offcanvas-body a {
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-main);
    letter-spacing: 2px;
    transition: color 0.3s;
}
.offcanvas-body a:hover {
    color: var(--color-accent);
}
.btn-book-now-mobile {
    background-color: #e53935;
    color: #fff !important;
    text-align: center;
    padding: 15px !important;
    border-radius: 4px;
    margin-top: 20px;
}



/* --- Extracted Inline Styles --- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-subtitle { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 15px; }
.intro-title { font-family: var(--font-heading);  line-height: 1.2; color: var(--color-text-main); margin-bottom: 20px; }
.intro-divider { width: 60px; height: 2px; background-color: var(--color-accent); }
.intro-p-main { font-size: 1rem; color: var(--color-text-main); line-height: 1.8; margin-bottom: 20px; }
.intro-p-sub { font-size: 1rem; color: var(--color-text-muted); line-height: 1.9; }

.bg-white { background-color: #fff; }
.living-subtitle-top { font-family: var(--font-body); font-weight: 400; color: var(--color-text-main); margin-bottom: 10px; font-size: 1rem; }
.living-subtitle-bottom { font-family: var(--font-body); font-weight: 600; color: var(--color-text-main); font-size: 1rem; margin-bottom: 40px; }
.living-desc {
    max-width: 70%;
    margin: 0 auto 60px auto;
    color: var(--color-text-muted);
    line-height: 1.9;
    font-size: 1rem;
    text-align: center;
  
}

.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.room-features-title { margin: 20px 0 10px 0; color: var(--color-text-main); font-family: var(--font-body); font-weight: 600; }
.room-features-list { list-style: none; margin-left: 0; color: var(--color-text-muted); line-height: 1.8; }

.dining-title { text-align: left; margin-bottom: 30px; }
.badge-icon { font-size: 2rem; color: var(--color-accent); margin-bottom: 5px; }
.badge-text { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }

.max-w-800 { max-width: 1000px; margin: 0 auto; } 
.activities-intro-p { color: var(--color-text-muted); line-height: 1.8; font-size: 1rem; }
.gallery-intro-p { color: var(--color-text-muted); max-width: 1000px; margin: 0 auto; line-height: 1.8; }

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


/* --- Inner Banner --- */
.inner-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 0;
}
.inner-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}
.inner-banner-content {
    position: relative;
    z-index: 2;
    padding-top: 80px; /* Offset for transparent header */
}
.inner-banner-title {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.inner-banner-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}
.inner-banner-breadcrumb {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.inner-banner-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.inner-banner-breadcrumb a:hover {
    color: var(--color-accent);
}
.inner-banner-breadcrumb span {
    color: #fff;
}

@media (max-width: 768px) {
    .inner-banner { height: 320px; background-attachment: scroll; }
    .inner-banner-title {  }
}

/* --- Comprehensive Mobile Fixes --- */
@media (max-width: 768px) {
    /* General Paddings */
    .section-padding { padding: 50px 0 !important; }
    
    /* Living Section Fixes */

    .room-card { flex-direction: column !important; }
    .room-img-wrapper { width: 100% !important; height: 300px !important; }
    .room-details { 
        width: 100% !important; 
        margin: -40px auto 0 auto !important; 
        padding: 25px 20px !important; 
        position: relative;
    }
    .room-title {  margin-bottom: 15px !important; }
    
    /* Dining Section Fixes */
    .dining-premium-section { padding: 60px 0 !important; }
    .dining-wrapper { flex-direction: column; gap: 40px; }
    .dining-text { width: 100% !important; padding-right: 0; }
    .dining-image-block { width: 100% !important; height: 350px !important; }
    .dining-badge { left: 10px !important; bottom: -20px !important; padding: 15px 20px !important; }
    
    /* Activities Lookbook Fixes */
    .activities-section { padding-bottom:0px !important; }
    .activity-alternate { flex-direction: column !important; gap: 30px !important; }
    .activity-alternate:nth-child(even) { flex-direction: column !important; }
    .activity-alternate .act-img { width: 100% !important; height: 300px !important; box-shadow: unset;}
    .activity-alternate .act-text { width: 100% !important; padding: 20px 0 !important; }
    
    /* Global Container */
    .container { width: 92% !important; }
    
    /* Global Fonts & Spacing */
    h2 {  }
    .section-title {  margin-bottom: 15px !important; }
    .hero-title {  }
    
    /* Gallery Grid (2 columns on mobile) */
    .gallery-grid-full { grid-template-columns: repeat(2, 1fr) !important; }
    
    /* Footer Fix */
    .footer-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    
    /* Floating Icons - Fixed Bottom Bar on Mobile */
    .fab-container { 
        bottom: 0 !important; 
        right: 0 !important; 
        left: 0 !important;
        width: 100% !important;
        flex-direction: row !important;
        gap: 0 !important;
        z-index: 9997 !important; 
    }
    .fab { 
        width: 50% !important; 
        height: 60px !important; 
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .fab svg { width: 24px !important; height: 24px !important; }
    
    /* Add padding to body so the bottom bar doesn't hide content */
    body { padding-bottom: 60px !important; }

    .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
}
}

/* --- Parallax Hero Wrapper --- */
.hero-bg-parallax {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    /* Will be translated via JS on scroll */
    will-change: transform;
}

/* --- About Features Grid --- */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.about-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid transparent;
}
.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top-color: var(--color-accent);
}
.about-feature-icon {
    font-size: 3.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}
.about-feature-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.about-feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}
@media (max-width: 768px) {
    .about-features-grid { grid-template-columns: 1fr; gap: 30px; }
    .intro-title {  }
}

/* --- Policy Pages --- */
.policy-content {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 80px;
}
.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 1.8rem;
}
.policy-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.4rem;
}
.policy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 20px;
}
.policy-content ul, .policy-content ol {
    margin-left: 20px;
    margin-bottom: 25px;
}
.policy-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .policy-content { padding: 30px 20px; }
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    transition: transform var(--transition-medium);
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(166, 138, 97, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.contact-details h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-text-main);
}
.contact-details p, .contact-details a {
    color: var(--color-text-muted);
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
        margin: 0;
}
.contact-details a:hover {
    color: var(--color-accent);
}
.contact-details .whatsapp-link {
    color: #25D366; /* WhatsApp brand color */
    font-weight: 500;
}
.contact-details .whatsapp-link:hover {
    color: #128C7E;
}

.enquiry-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.enquiry-form h3 {
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 0.9rem;
}
textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* --- Compact Form Design --- */
.compact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 600px) {
    .compact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.compact-form .form-group {
    margin-bottom: 20px;
}
.compact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: #FAFAF8;
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(166, 138, 97, 0.15);
}
.form-control::placeholder {
    color: #A0A0A0;
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.enquiry-form {
    padding: 40px;
}

/* --- Booking Modal --- */
.booking-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.booking-modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 90vh; /* Enable vertical scrolling */
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.booking-modal-overlay.active .booking-modal-content {
    transform: translateY(0);
}
.booking-modal-header {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 30px 40px;
    text-align: center;
}
.booking-modal-header h3 {
    color: #fff;
    margin-bottom: 5px;
}
.booking-modal-header p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
}
.booking-modal-body {
    padding: 40px;
}
.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.booking-modal-close:hover {
    background: rgba(255,255,255,0.4);
}
@media (max-width: 600px) {
    .booking-modal-body { padding: 20px; }
    .booking-modal-header { padding: 20px; }
    .form-group, .form-control { margin-bottom: 15px !important; }
    .booking-modal-header p {
    font-size: 0.8rem;

}
.hero-slider {

    height: 500px;
    min-height: auto;
}
.activity-alternate h3 {
}
.activity-alternate{
    margin-bottom: 0!important;
}


}
.room-img-wrapper img {
    width: 100%;
    height: auto;
}
/* --- New Layout Utilities --- */
@media(min-width:992px){
    .intro-grid-new {
        width: 81%;
}
}
.intro-grid-new {

    margin: 0 auto;
}
.intro-divider-center {
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 30px auto;
}
.pb-sm {
    padding-bottom: 2rem !important;
}
.pt-sm {
    padding-top: 2rem !important;
}

/* --- Minimalist Split Layout --- */
.split-layout {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}
.split-left {
    width: 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    background-color: #000;
}
.split-slider {
    width: 100%;
    height: 100%;
}
.split-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-right {
    width: 50%;
    background-color: #fcfcfc;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-content {
    max-width: 600px;
    margin: 0 auto;
}
.split-amenities-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.split-amenities-list li {
    font-size: 1.05rem;
    color: var(--color-text-main);
}
.split-amenities-list i {
    color: var(--color-accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* --- Custom Swiper Controls for Split Layout --- */
.split-slider .swiper-button-next,
.split-slider .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.split-slider .swiper-button-next:hover,
.split-slider .swiper-button-prev:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}
.split-slider .swiper-button-next::after,
.split-slider .swiper-button-prev::after {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 900;
}
.split-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}
.split-slider .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 4px;
    background: var(--color-accent);
}

@media (max-width: 991px) {
    .split-left, .split-right {
        width: 100%;
    }
    .split-left {
        position: relative;
        height: 60vh;
    }
    .split-right {
        padding: 60px 30px;
    }
}
@media(max-width:991px) {
    .living-desc,.dining-image-block,.dining-text {
    max-width: 100%;
    }
    .dining-badge{
        width: fit-content;
    }
    .split-amenities-list li {
    font-size: 14px;
}

.split-amenities-list {
    gap: 5px 0px;
}
}
