/* ======= BASE STYLES ======= */
:root {
    --primary-color: #57561e;
    --secondary-color: #092922;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --off-white: #f5f5f5;
    --light-gray: #eaeaea;
    --dark-overlay: rgba(9, 41, 34, 0.7);
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ======= PRELOADER ======= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 5px;
}
/* Media Queries for Thumbnails and Preloader */

/* Large tablets and small desktops */
@media screen and (max-width: 1024px) {
    /* Thumbnails adjustments */
    .hero-thumbnails {
        bottom: 100px;
        right: 15px;
        gap: 8px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .thumbnail img {
        border-radius: 6px;
    }
    
    /* Preloader adjustments */
    .preloader-logo {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    /* Thumbnails adjustments */
    .hero-thumbnails {
        bottom: 80px;
        right: 10px;
        gap: 6px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .thumbnail img {
        border-radius: 5px;
    }
    
    /* Preloader adjustments */
    .preloader {
        background-color: rgba(25, 54, 45, 0.95);
    }
    
    .preloader-logo {
        font-size: 1.8rem;
        letter-spacing: 3px;
        padding: 0 20px;
        text-align: center;
        line-height: 1.3;
    }
}

/* Mobile devices */
@media screen and (max-width: 576px) {
    /* Thumbnails - make them smaller and reposition */
    .hero-thumbnails {
        bottom: 60px;
        right: 10px;
        gap: 4px;
        flex-direction: column;
    }
    
    .thumbnail {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .thumbnail.active {
        border-color: #fff;
        transform: scale(1.1);
    }
    
    .thumbnail img {
        border-radius: 4px;
    }
    
    .thumbnail-overlay {
        border-radius: 4px;
    }
    
    /* Preloader adjustments for mobile */
    .preloader {
        background-color: rgba(25, 54, 45, 0.98);
    }
    
    .preloader-logo {
        font-size: 1.4rem;
        letter-spacing: 2px;
        padding: 0 15px;
        text-align: center;
        line-height: 1.4;
        word-spacing: 3px;
        /* Break into multiple lines if needed */
        white-space: normal;
        max-width: 280px;
    }
}

/* Extra small mobile devices */
@media screen and (max-width: 480px) {
    /* Thumbnails - even smaller for very small screens */
    .hero-thumbnails {
        bottom: 50px;
        right: 8px;
        gap: 3px;
    }
    
    .thumbnail {
        width: 35px;
        height: 35px;
        border: 1.5px solid rgba(255, 255, 255, 0.5);
    }
    
    /* Preloader for very small screens */
    .preloader-logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
        padding: 0 10px;
        max-width: 250px;
        word-spacing: 2px;
    }
}

/* Landscape orientation adjustments for mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero-thumbnails {
        bottom: 40px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
    }
    
    .thumbnail {
        width: 45px;
        height: 45px;
    }
    
    .preloader-logo {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
}

/* High-resolution displays */
@media screen and (-webkit-min-device-pixel-ratio: 2), 
       screen and (min-resolution: 192dpi) {
    .thumbnail img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .preloader-logo {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Additional responsive enhancements */
@media screen and (max-width: 576px) {
    /* Hide thumbnails on very small screens if hero controls are present */
    .hero-controls + .hero-thumbnails {
        display: none;
    }
    
    /* Alternative: make thumbnails horizontal at bottom */
    .hero-thumbnails.bottom-layout {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 8px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .thumbnail {
        transition: transform 0.2s ease, border-color 0.2s ease;
    }
    
    .thumbnail:active {
        transform: scale(0.95);
    }
    
    .preloader-logo {
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }
}
/* ======= NAVIGATION ======= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 30px 0;
}

.navbar.scrolled {
    background: var(--secondary-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.book-now-button a {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.book-now-button a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* ======= HERO SECTION ======= */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 7s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(9, 41, 34, 0.8), rgba(9, 41, 34, 0.5));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 600px;
    z-index: 1;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

.title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    /* color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9); */
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.7s;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.9s;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 1.1s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: var(--transition);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid var(--white);
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Hero Thumbnails */
.hero-thumbnails {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.thumbnail {
    width: 190px;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.6;
    transform: scale(0.9);
}

.thumbnail.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--white);
}

.thumbnail:hover {
    opacity: 0.9;
    transform: scale(0.95);
}

.thumbnail.active:hover {
    transform: scale(1);
}

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

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.thumbnail.active .thumbnail-overlay {
    background: linear-gradient(to bottom, rgba(155, 154, 109, 0.2), rgba(155, 154, 109, 0.5));
}

.hero-controls {
    position: absolute;
    right: 5%;
    bottom: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    z-index: 1;
}


.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--white);
}

.slider-arrows {
    display: flex;
    gap: 15px;
}

.arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.arrow:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.scroll-down {
    position: absolute;
    left: 10%;
    bottom: 5%;
    z-index: 1;
}

.scroll-down a {
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scroll-down a i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ======= BOOKING WIDGET ======= */
.booking-widget {
    background-color: var(--white);
    padding: 0;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.booking-form {
    display: flex;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.booking-input {
    flex: 1;
    padding: 25px;
    border-right: 1px solid var(--light-gray);
}

.booking-input:last-of-type {
    border-right: none;
}

.booking-input label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.booking-input input,
.booking-input select {
    width: 100%;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    outline: none;
}

.check-availability {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.check-availability:hover {
    background-color: var(--secondary-color);
}

/* ======= SECTION HEADERS ======= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.header-line {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-header.light .header-line {
    background-color: var(--white);
}

/* ======= ABOUT SECTION ======= */
.about-section {
    padding: 120px 0 90px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.signature {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.signature img {
    height: 60px;
    margin-right: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
    gap: 10px;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--secondary-color);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-badge .years {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    max-width: 80px;
    text-align: center;
}

/* ======= FEATURES SECTION ======= */
.features-section {
    padding: 90px 0;
    background-color: var(--off-white);
}

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

.feature {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(155, 154, 109, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* ======= BOOKING PARTNERS ======= */
.booking-partners {
    padding: 60px 0;
    background-color: var(--white);
}

.partners-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners-text {
    flex: 0 0 30%;
}

.partners-text h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.partners-text p {
    color: var(--text-light);
}

.partners-logos {
    flex: 0 0 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partner-logo {
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img {
    height: 40px;
    width: auto;
}

/* ======= ACCOMMODATION PREVIEW ======= */
.accommodation-preview {
    padding: 90px 0;
    background-color: var(--white);
}

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

.accommodation-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.accommodation-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.accommodation-card:hover .accommodation-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.accommodation-details {
    padding: 25px;
}

.accommodation-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.accommodation-details p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.amenities li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
}

.amenities li i {
    margin-right: 5px;
    color: var(--primary-color);
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: var(--transition);
}

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

.btn-outline.light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline.light:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* ======= OCEAN FLAVOUR SECTION ======= */
.ocean-flavour-section {
    padding: 90px 0;
    background-color: var(--white);
}

.ocean-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ocean-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.ocean-details p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.ocean-features {
    margin: 40px 0;
}

.ocean-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.ocean-feature .feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(155, 154, 109, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.ocean-feature .feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ======= SPA SECTION ======= */
.spa-section {
    padding: 90px 0;
    background-color: var(--off-white);
}

.spa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spa-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.spa-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.spa-treatments {
    margin: 40px 0;
}

.treatment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(155, 154, 109, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.treatment-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.treatment-details h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.treatment-details p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Add to the responsive section */
@media (max-width: 992px) {
    .ocean-content,
    .spa-content {
        grid-template-columns: 1fr;
    }
    
    .spa-image {
        order: -1;
        margin-bottom: 30px;
    }
}


/* ======= TESTIMONIALS SECTION ======= */
.testimonials-section {
    padding: 90px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    margin-bottom: 40px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: #FFD700;
    margin: 0 2px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    background-color: rgba(255, 255, 255, 0.3);
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
    background-color: var(--white);
}

/* ======= CALL TO ACTION ======= */
.cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-overlay);
}

 .cta-content {
    position: relative;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
} 


/* Inquiry Form Modal Styles  */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.modal-header h3 {
    color: #2c2c2c;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #333;
    background: #f5f5f5;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #012402;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}
/* Add this to your CSS file */
.contact-preference {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-preference label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.contact-preference input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

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

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-buttons .btn-primary,
.form-buttons .btn-outline {
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.form-buttons .btn-primary {
    background: #05381a;
    color: #fff;
}

.form-buttons .btn-primary:hover {
    background: #33470cf8;
    transform: translateY(-1px);
}

.form-buttons .btn-outline {
    background: transparent;
    border: 2px solid #ddddddfd;
    color: #555;
}

.form-buttons .btn-outline:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #4CAF50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1100;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification i {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-buttons .btn-primary,
    .form-buttons .btn-outline {
        width: 100%;
    }
    
    .toast-notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* ======= FOOTER ======= */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-newsletter p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* ======= RESPONSIVE DESIGN ======= */

@media (max-width: 1200px) {
    .title {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-thumbnails {
        right: 3%;
    }
    
    .thumbnail {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 992px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .booking-form {
        flex-direction: column;
    }
    
    .booking-input {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .partners-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .partners-text,
    .partners-logos {
        flex: 0 0 100%;
        text-align: center;
    }
    
    /* Updated accommodation grid for medium screens - 2x2 layout */
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    
    .featured {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-thumbnails {
        right: auto;
        top: auto;
        bottom: 15%;
        left: 10%;
        flex-direction: row;
    }
    .check-availability {
        width: 100%;
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .slide-content {
        left: 5%;
        width: 90%;
    }
    
    .hero-controls {
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    .scroll-down {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
    
    .featured {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-thumbnails {
        display: none;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    
}



/* Modal for Booking Recommendations */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050; /* Make sure this is higher than any other z-index on the site */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    font-family: 'Montserrat', sans-serif;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content h3 {
    color: #011b02;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.modal-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #031b07;
}

.modal-content p {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.recommendation {
    background-color: #f8f9fa;
    padding: 1.75rem;
    border-radius: 4px;
    margin-bottom: 1.75rem;
    border-left: 4px solid #132010;
}

.recommendation h4 {
    color: #333;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.recommendation p {
    margin-bottom: 0;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

.modal-buttons button {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Using the same button styles as in your site */
.modal-buttons .view-details {
    background-color: #052905;
    color: white;
    border: none;
    text-transform: uppercase;
}

.modal-buttons .view-details:hover {
    background-color: #263417e3;
}

.modal-buttons .close-modal {
    background-color: transparent;
    color: #333;
    border: 1px solid #ddd;
    text-transform: uppercase;
}

.modal-buttons .close-modal:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

/* Add responsiveness for smaller screens */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.75rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons button {
        margin-bottom: 0.75rem;
    }
    
    .modal-content h3 {
        font-size: 1.75rem;
    }
    
    .recommendation h4 {
        font-size: 1.35rem;
    }
}