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

:root {
    --primary-forest: #1B261E; 
    --accent-sand: #E3D9C6;    
    --charcoal: #222222;       
    --gold-accent: #D4AF37;    
    --gold-shimmer: linear-gradient(135deg, #D4AF37 0%, #f5e7c8 50%, #D4AF37 100%);
    --sage-green: #8fbc8f;
    --terra-cotta: #cd5c5c;
    --pure-white: #ffffff;
    --text-light: #FDFBF7;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&display=swap');


/* Global Smooth Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--accent-sand);
    color: var(--charcoal);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.8;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--primary-forest);
    color: var(--accent-sand);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(227, 217, 198, 0.1);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--accent-sand);
    line-height: 1;
}

.logo h1 span {
    color: var(--gold-accent);
    font-weight: 400;
    font-style: italic;
    position: relative;
}

.logo p {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-accent);
    opacity: 0.8;
}

.menu-toggle {
    display: none;
}

.hamburger-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px 5px;
    z-index: 1001;
}

.hamburger-label span {
    width: 30px;
    height: 3px;
    background: var(--gold-accent);
    margin: 3px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85%);
    height: 100vh;
    background: var(--primary-forest);
    padding: 100px 30px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    border-left: 1px solid rgba(227, 217, 198, 0.1);
    backdrop-filter: blur(15px);
}

.sidebar ul {
    list-style: none;
    padding: 20px;
}

.sidebar li {
    margin: 20px 0;
}

.sidebar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.sidebar a i {
    color: var(--gold-accent);
    width: 25px;
}

.sidebar a:hover {
    background: var(--accent-terra);
    transform: translateX(5px);
}

#menu-toggle:checked~.sidebar {
    right: 0;
}

#menu-toggle:checked+.hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked+.hamburger-label span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked+.hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

#menu-toggle:checked~.sidebar-overlay {
    display: block;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    animation: slideAnimation 24s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1000px;
    z-index: 2;
}

.slide-content h2 {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.slide-content h2 span {
    color: var(--gold-accent);
    display: block;
    font-size: 0.7em;
    font-weight: 400;
    font-style: italic;
}

.slide-content p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: var(--gold-accent);
    transform: scale(1.2);
}

@keyframes slideAnimation {
    0%, 28% { transform: translateX(0); }
    33%, 61% { transform: translateX(-100%); }
    66%, 94% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin: 3rem 0 2rem;
    color: var(--primary-forest);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
}

.section-title::after {
    content: '✦';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--accent-terra);
    background: var(--accent-sand);
    padding: 0 10px;
}

.welcome-heading {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--primary-forest);
    margin: 2rem 0;
}

/* About Section */
.about-mission {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .about-mission {
        grid-template-columns: 1fr 1fr;
    }
}

.about-card,
.mission-card {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(155, 174, 123, 0.2);
    transition: all 0.4s ease;
}

.about-card:hover,
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
}

.about-card h3,
.mission-card h3 {
    font-size: 1.5rem;
    border-left: 4px solid var(--gold-accent);
    padding-left: 15px;
    margin-bottom: 1rem;
}

/* Wellness Sections */
.wellness-section {
    background: var(--pure-white);
    border-radius: 40px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(155, 174, 123, 0.1);
}

.wellness-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wellness-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-forest);
}

.wellness-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 600px) {
    .wellness-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wellness-card {
    background: #fdfbf7;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.wellness-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

.wellness-card .card-text {
    padding: 1.5rem;
}

.wellness-card .card-text h3 {
    color: var(--accent-terra);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.dual-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.dual-image-row img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid var(--accent-sage);
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 500px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1100px) {
    .activities-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.activity-card {
    background: var(--pure-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
}

.card-image {
    height: 180px;
    overflow: hidden;
}

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

.card-content {
    padding: 1.2rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-terra);
    margin: 0.5rem 0;
}

.btn-group {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-book,
.btn-detail {
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.btn-detail:hover {
    background: var(--gold-accent);
    color: var(--primary-forest);
}

/* Gallery Preview */
.gallery-preview {
    background: var(--pure-white);
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.preview-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
    .preview-header {
        flex-direction: row;
        justify-content: space-between;
    }
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 500px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 800px) {
    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1000px) {
    .preview-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.preview-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.preview-grid img:hover {
    transform: scale(1.02);
    border: 2px solid var(--gold-accent);
}

.btn-viewmore {
    background: var(--primary-forest);
    color: var(--accent-sand);
    border: 2px solid var(--gold-accent);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Dining Section */
.dining-section {
    background: #faf7f0;
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.dining-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dining-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.dining-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .dining-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

.dining-image {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

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

.dining-content h3 {
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.dining-features {
    list-style: none;
    margin: 1.5rem 0;
}

.dining-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.dining-features li i {
    color: var(--gold-accent);
}

.menu-preview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .menu-preview {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
}

.menu-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.8rem;
}

/* Booking Process Section */
.booking-process {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.process-header {
    text-align: center;
    margin-bottom: 2rem;
}

.process-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .timeline {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    .timeline::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: #e2e8f0;
        z-index: 1;
    }
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-forest);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 0.8rem;
    border: 3px solid var(--gold-accent);
}

.step-title {
    font-weight: 600;
}

/* Combo Booking Section */
.combo-booking-section {
    background: linear-gradient(135deg, #ffffff, #fef9f0);
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold-accent);
}

.combo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.combo-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-forest);
}

.combo-activities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .combo-activities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .combo-activities {
        grid-template-columns: repeat(3, 1fr);
    }
}

.combo-item {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid #e8e8e8;
    transition: 0.3s;
    cursor: pointer;
}

.combo-item.selected {
    border-color: var(--gold-accent);
    background: #fef9f0;
    box-shadow: 0 5px 15px rgba(201, 162, 75, 0.2);
}

.combo-item input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold-accent);
}

.combo-item-info {
    flex: 1;
}

.combo-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.combo-item-info p {
    color: var(--accent-terra);
    font-weight: 600;
    font-size: 0.9rem;
}

.combo-total {
    background: var(--primary-forest);
    color: white;
    padding: 1.2rem;
    border-radius: 15px;
    text-align: center;
    margin: 1.5rem 0;
}

.combo-total span {
    color: var(--gold-accent);
    font-size: 2rem;
    font-weight: 700;
}

.combo-book-btn {
    background: linear-gradient(135deg, #c9a24b, #dbb268);
    color: var(--primary-forest);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.combo-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 75, 0.4);
}

/* Full Gallery Page */
.full-gallery-page {
    display: none;
    background: white;
    border-radius: 30px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.close-gallery-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-forest);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: 2px solid var(--gold-accent);
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.category-btn {
    background: #f0f0f0;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active {
    background: var(--gold-accent);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.instagram-feed {
    background: #faf7f0;
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.insta-link {
    background: var(--primary-forest);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* Detail Pages */
.detail-page {
    display: none;
    background: white;
    border-radius: 30px;
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    position: relative;
}

.detail-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    z-index: 10;
}

.detail-badge {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--primary-forest);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-title {
    font-size: 2.5rem;
    color: var(--primary-forest);
    margin-bottom: 1rem;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.detail-image-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
}

.side-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.side-images img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
}

.detail-video video {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-terra);
    margin: 1rem 0;
}

.booking-button {
    background: linear-gradient(135deg, #0a2f1f, #1b4d3e);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.booking-button:hover {
    transform: translateY(-2px);
}

/* Booking Lightbox */
.booking-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.booking-lightbox.active {
    display: flex;
}

.booking-container {
    background: linear-gradient(135deg, #ffffff, #fef9f0);
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold-accent);
}

@keyframes slideUp {
    from {
        transform: translateY(60px) scale(0.95);
        opacity: 0;
    }

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

.booking-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    transition: 0.3s;
    z-index: 10;
}

.booking-close:hover {
    background: var(--gold-accent);
    color: white;
    transform: rotate(90deg);
}

.booking-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.booking-header h3 {
    font-size: 1.8rem;
    color: var(--primary-forest);
}

.leader-image-section {
    text-align: center;
    margin-bottom: 1.8rem;
    padding: 1rem;
    background: #f9f6ef;
    border-radius: 20px;
}

.leader-image-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.leader-image-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-accent);
}

.leader-image-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--gold-accent);
    font-size: 2rem;
    color: var(--gold-accent);
}

.selected-activities-list {
    background: #f9f6ef;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
}

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

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

.booking-form-group label i {
    color: var(--gold-accent);
    margin-right: 8px;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
}

.booking-form-group input:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    width: 120px;
}

.member-count {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f9f6ef;
    padding: 0.8rem;
    border-radius: 50px;
    justify-content: center;
}

.member-count button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gold-accent);
    color: var(--primary-forest);
    font-size: 1.3rem;
    cursor: pointer;
    font-weight: bold;
}

.member-count span {
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.price-breakdown {
    background: #f9f6ef;
    padding: 1rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.price-breakdown p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-terra);
    border-top: 2px solid var(--gold-accent);
    padding-top: 0.8rem;
    margin-top: 0.5rem;
}

.submit-booking-btn {
    background: linear-gradient(135deg, #c9a24b, #dbb268);
    color: var(--primary-forest);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.submit-booking-btn:hover {
    transform: translateY(-2px);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border: 3px solid var(--gold-accent);
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

footer {
    background: var(--primary-forest);
    color: var(--accent-sand);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 3px solid var(--gold-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.footer-col a {
    color: #9bae7b;
    text-decoration: none;
}

.social-links i {
    font-size: 1.5rem;
    color: var(--accent-sage);
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.social-links i:hover {
    color: var(--gold-accent);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Floating Actions */
.whatsapp-fab-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.back-to-top-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
}

.fab-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-fab {
    background: #25d366;
}

.back-to-top {
    background: var(--primary-forest);
    display: none;
    font-size: 1.5rem;
}

.back-to-top.visible {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

.hero-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

.hero-cta:hover::before {
    left: 100%;
}

/* Vibrant Grid & Mobile Slider */
.vibrant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.vibrant-card {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--primary-forest);
}

.vibrant-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.vibrant-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.vibrant-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2.5rem 2rem;
    color: white;
    z-index: 2;
}

.vibrant-caption h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .vibrant-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 0 20px 30px 20px;
        margin: 40px -20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .vibrant-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .vibrant-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
        height: 300px; /* Rectangle shape */
        border-radius: 12px;
    }

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

    .v-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(27, 38, 30, 0.2);
        transition: 0.3s;
    }

    .v-dot.active {
        background: var(--gold-accent);
        transform: scale(1.2);
    }
}

.vibrant-dots { display: none; }
@media (max-width: 768px) { .vibrant-dots { display: flex; } }


/* Authenticity & Village Tour Section */
.authenticity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 3rem;
    align-items: center;
}

.authenticity-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s ease;
}

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

.authenticity-title {
    font-size: 2.5rem;
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
}

.authenticity-btn {
    margin-top: 2rem;
    background: var(--primary-forest);
    color: var(--accent-sand);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.authenticity-btn:hover {
    background: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Activity Pricing Styling */
.activity-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-forest);
    margin: 10px 0;
    text-align: center;
}

/* Desktop Activity Grid Refinement */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .authenticity-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .authenticity-title {
        font-size: 2rem;
    }

    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }

    .booking-timeline-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .guarantee-grid {
        flex-direction: column !important;
        gap: 40px !important;
    }
}

/* Booking Page Specifics */
.booking-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    border: 4px solid var(--gold-accent);
    background: var(--primary-forest);
    color: var(--accent-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
}

.step-title {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    color: var(--primary-forest);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.step-desc {
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 0.95rem;
}

.booking-final-cta {
    background: var(--gold-accent);
    color: var(--primary-forest);
    padding: 1.5rem 5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.booking-final-cta:hover {
    background: var(--primary-forest);
    color: var(--gold-accent);
    transform: translateY(-3px);
}

.booking-guarantee-section {
    margin-top: 100px;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    padding: 4rem;
    border-radius: 20px;
}

.guarantee-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
}

.guarantee-item i {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.guarantee-item h4 {
    font-size: 1.2rem;
    color: var(--primary-forest);
}