:root {
    /* Color Palette */
    --primary-color: #d8741b;
    /* Oberoi Orange */
    --text-color: #333333;
    /* Charcoal Grey */
    --text-light: #606161;
    /* Soft Grey */
    --bg-light: #f5f5f5;
    /* Light Beige */
    --white: #ffffff;
    --black-overlay: rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #b85e10;
    /* Darker shade */
    transform: translateY(-2px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s;
    padding: 20px 0;
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Ensure no horizontal overflow globally */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Mobile Nav Toggle Fixes */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

header.scrolled .bar {
    background-color: var(--text-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--white);
}

header.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.logo {
    height: 100px;
    /* Restoring fixed height */
    width: auto;
    /* Maintain aspect ratio */
    transition: 0.3s;
}

/* Logo Switching Logic */
.logo-dark {
    display: none !important;
    /* Hide dark logo initially */
}

.logo-light {
    display: block !important;
    /* Show light logo initially */
}

header.scrolled .logo-light {
    display: none !important;
}

header.scrolled .logo-dark {
    display: block !important;
}

header.scrolled .logo {
    height: 100px;
}

.btn-book-now {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Align to bottom */
    justify-content: center;
    /* Align to center horizontally */
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video,
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px 80px 20px;
    /* Bottom Padding only, horizontal centered */
    width: 100%;
    /* Ensure it spans full width for centering */
    animation: fadeInUp 1s ease-out;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    /* Orange color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px 80px 20px;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-bg {
        object-position: center;
    }
}

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Split Layout (Image Left/Right) */
.split-section {
    display: flex;
    align-items: center;
    gap: 0;
    /* Full width*/
}

.split-image,
.split-content {
    flex: 1;
    min-width: 50%;
}

.split-image img {
    width: 100%;
    height: 600px;
    /* Fixed height for consistency */
    object-fit: cover;
}

.split-content {
    padding: 80px;
    background: var(--white);
}

.split-content.bg-light {
    background: var(--bg-light);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card {
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px 0;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-link {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    /* Darker background */
    color: #e0e0e0;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.brand-column {
    flex: 1.5;
    /* Slightly wider for brand info */
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Ensure white logo */
}

.footer-address,
.footer-contact {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact a {
    color: #aaa;
    display: block;
    margin-bottom: 5px;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #aaa;
    transition: 0.3s;
}

.footer-links-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid #333;
    margin-top: 60px;
    padding-top: 30px;
    color: #666;
    font-size: 0.85rem;
}

.legal-links a {
    color: #666;
    margin: 0 10px;
}

.legal-links a:hover {
    color: var(--white);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-column {
        min-width: 100%;
    }

    .copyright .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
/* Mobile Nav Toggle Fixes */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    /* Ensure above everything */
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
    border-radius: 2px;
}

header.scrolled .bar {
    background-color: var(--text-color);
}

/* Force dark bars if menu is open (on white bg) */
header.menu-open .bar {
    background-color: var(--text-color);
}

header.menu-open .bar:nth-child(2) {
    opacity: 0;
}

header.menu-open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

header.menu-open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Refined Responsive Header */
@media (max-width: 992px) {

    /* Ensure Header Visibility on Mobile */
    header {
        background-color: #1a1a1a !important;
        /* Force dark background */
        padding: 10px 0;
    }

    /* Header Layout */
    nav {
        flex-wrap: wrap;
        padding: 0 20px;
        /* Reduced padding */
    }

    /* Logo - Left */
    .logo-container {
        order: 1;
        margin-right: auto;
    }

    .logo {
        height: 50px;
        /* Smaller mobile logo */
    }

    /* Hamburger - Right */
    .hamburger {
        display: block;
        order: 2;
        margin-left: auto;
    }

    /* Nav Links - Dropdown */
    .nav-menu {
        display: none !important;
        /* Hide by default, override flex */
        flex-direction: column;
        width: 100%;
        order: 3;
        text-align: center;
        background-color: var(--white);
        padding: 0;
        gap: 0;
        box-shadow: none;
        /* Shadow handled by header container if needed */
    }

    .nav-menu.active {
        display: flex !important;
    }

    /* Styling for links in dropdown */
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-color) !important;
        /* Always dark in dropdown */
        font-size: 1rem;
    }

    /* Hide the 'Book Now' button in the main list and maybe put it at bottom? */
    /* Or style it nicely within the list */
    .btn-book-now {
        display: inline-block;
        margin: 20px auto;
    }

    /* Ensure header background becomes white when menu is open */
    header.menu-open {
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* If the header was transparent, force logo to be visible in menu-open */
}

@media (max-width: 768px) {

    /* General */
    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Split Section */
    .split-section {
        flex-direction: column;
    }

    .split-image,
    .split-content {
        min-width: 100%;
    }

    /* Ensure content stacks correctly under image */
    .split-section.reverse-layout {
        flex-direction: column;
        /* Keep image on top even for reverse layout on mobile if desired, or column-reverse */
    }

    /* If we want image always top */
    .split-section.reverse-layout .split-image {
        order: -1;
    }

    .split-image img {
        height: 300px;
        /* Reducing height for mobile */
    }

    .split-content {
        padding: 40px 20px;
        text-align: center;
    }

    .split-content .section-subtitle {
        text-align: center !important;
        /* Override inline styles */
    }

    /* Tabbed Sliders (Dining / Experiences) */
    .restaurant-tabs,
    .experiences-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .restaurant-tabs span,
    .experiences-tabs span {
        font-size: 0.9rem;
    }

    .tab-separator {
        display: none;
        /* Hide separators on small screens if wrapping */
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-column {
        min-width: 100%;
        text-align: center;
    }

    .footer-contact a {
        display: inline-block;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Booking Bar Styles (Refined V2) */
.booking-bar-wrapper {
    background-color: transparent;
    width: 100%;
    z-index: 100;
    margin-top: -30px;
    /* Overlap effect */
    position: relative;
    padding: 0 0 40px;
}

.booking-bar {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    /* Reduced padding */
    border-radius: 4px;
    height: 70px;
    /* Slightly reduced height */
    flex-wrap: nowrap;
    /* Prevent wrapping on desktop */
}

/* Common Item Styles */
.booking-item {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    /* Prevent items from shrinking too much */
}

.destination {
    flex-shrink: 1;
    /* Allow destination to shrink */
    min-width: 0;
    /* Enable shrinking for flex child */
    margin-right: 15px;
}

.booking-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    /* Smaller label */
    color: #888;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.destination .booking-label {
    color: #333;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Date Inputs (Overlay Method) */
.date-picker-group {
    display: flex;
    align-items: center;
    position: relative;
}

.relative-container {
    position: relative;
    min-width: 130px;
    /* Ensure enough touch area */
    height: 100%;
    display: flex;
    align-items: center;
}

/* The actual text shown to user */
.date-display {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding-left: 5px;
    /* Spacing from icon */
}

.date-display.selected {
    color: #333;
    font-weight: 500;
}

/* The invisible overlay input */
.date-input-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* Keep 0 for invisibility */
    cursor: pointer;
    z-index: 20;
    /* High z-index to ensure it sits on top */
    margin: 0;
    padding: 0;
}

/* Hide default calendar icon explicitly */
.date-input-overlay::-webkit-inner-spin-button,
.date-input-overlay::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/* Custom Calendar Icon */
.booking-value i {
    color: var(--primary-color);
    font-size: 0.9rem;
    pointer-events: none;
    /* Let clicks pass through */
}

/* Custom Selects */
.select-wrapper {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    min-width: 80px;
    /* Ensure width */
}

.select-wrapper .prefix {
    margin-right: 5px;
    color: #333;
    font-size: 0.9rem;
    pointer-events: none;
    /* Avoid blocking select click */
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #333;
    padding-right: 20px;
    /* Space for icon */
    cursor: pointer;
    font-weight: 500;
    outline: none;
    width: 100%;
    /* Fill wrapper */
    position: relative;
    z-index: 10;
    /* Above icon */
}

/* Dropdown Arrow Fix */
.dropdown-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Click falls through to select */
    font-size: 0.7rem !important;
    color: #666 !important;
    z-index: 5;
    /* Below select but visible through transparent bg */
}

/* Dividers */
.booking-divider {
    width: 1px;
    height: 30px;
    background-color: #eee;
    margin: 0 10px;
    /* Reduced margin */
    flex-shrink: 0;
}

/* Book Button */
.btn-book {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 30px;
    /* Reduced padding */
    height: 100%;
    margin-left: 10px;
    height: 50px;
    /* Match bar height effectively or button height */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    background-color: #b85e10;
}

.promo-icon {
    font-size: 1.2rem;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 10px;
}

.promo-icon:hover {
    color: var(--primary-color);
}

/* Responsive Booking Bar */
@media (max-width: 1100px) {
    .booking-bar {
        flex-wrap: wrap;
        height: auto;
        padding: 20px;
    }

    .booking-divider {
        display: none;
    }

    .booking-item {
        margin-bottom: 15px;
        width: 48%;
        justify-content: space-between;
    }

    .destination {
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-right: 0;
    }

    .book-btn-container {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .btn-book {
        width: 100%;
        margin-left: 0;
    }

    .promo-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .booking-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .booking-item {
        width: 100%;
        margin-bottom: 0;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .booking-item:last-child {
        border-bottom: none;
    }

    .booking-value {
        margin-left: auto;
    }
}


@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.booking-modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    position: relative;
    border-radius: 5px;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.booking-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.btn-book-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border: 2px solid white;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
}

.prev-slide,
.next-slide {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev-slide {
    left: 0;
}

.next-slide {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* CTA Section */
.cta-section {
    background-color: #2c3e50;
    /* Deep premium blue-grey */
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--white);
    color: #2c3e50;
    padding: 18px 50px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.btn-cta:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Menu Slider & Restaurant Section Styles --- */

.menu-slider-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.menu-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.menu-item {
    min-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
}

.menu-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.menu-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}


/* Restaurant Grid Section */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.restaurant-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.restaurant-card:hover {
    transform: translateY(-5px);
}

.restaurant-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.restaurant-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.restaurant-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.restaurant-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .restaurant-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-item {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
    }

    .menu-item {
        min-width: 100%;
    }
}

/* --- Restaurant Tabs Styles --- */
.restaurant-tabs {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.tab-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    font-weight: 700;
}

.tab-item:hover {
    color: var(--primary-color);
}

.tab-item.active {
    color: var(--primary-color);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.tab-separator {
    color: #ddd;
    font-weight: 300;
}

/* Ensure slides shrink no matter what */
.restaurant-slide {
    flex: 0 0 100%;
    /* Max width 100% of container */
}

/* Reverse Layout for Restaurant Slider */
.split-section.reverse-layout {
    flex-direction: row-reverse;
}

/* Ensure proper responsiveness for reverse layout */
@media (max-width: 992px) {
    .split-section.reverse-layout {
        flex-direction: column;
    }

    /* When stacking, we might want the image on top.
       Original flex-direction: column puts 1st child on top.
       With row-reverse, HTML order is Img then Content.
       flex-direction: column puts Img then Content. This is standard correct behavior.
       So just flex-direction: column is enough.
    */

    /* Fix top padding on mobile for slider content */
    .restaurant-slide .split-content {
        padding-top: 60px !important;
        /* Reduce padding on mobile */
    }

    /* Adjust menu position for mobile */
    .restaurant-tabs {
        flex-wrap: wrap;
        /* allow wrapping on very small screens */
        justify-content: center;
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid #eee;
    }

    /* Make menu relative on mobile? No, user wants it on top.
       But on mobile, 40px top might overlap header?
       Header is fixed.
    */
}

/* Menu Overlay Helper */
.menu-overlay {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 100;
    pointer-events: none;
    width: auto;
}

@media (max-width: 992px) {
    .menu-overlay {
        position: relative;
        /* On mobile, let it flow or stay absolute but adjusted? */
        /* If absolute, it might overlap text/image.
           If relative, it pushes content down.
           Given the design, maybe stick to absolute but centered.
        */
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .restaurant-tabs {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        backdrop-filter: blur(5px);
        padding: 5px 15px;
        /* Force smaller font or wrapping */
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Experiences Slider Menu (Top Right) */
.menu-overlay-right {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 100;
    pointer-events: none;
    width: auto;
}

.experiences-tabs {
    /* Reuse basic styles from restaurant-tabs but logic might need specific targeting */
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

/* Ensure experience tabs look like restaurant tabs */
.experiences-tabs .tab-item {
    cursor: pointer;
    font-weight: 500;
    opacity: 0.6;
    transition: all 0.3s;
    color: #333;
    /* ensure visibility against white bg */
}

.experiences-tabs .tab-item.active {
    opacity: 1;
    font-weight: 700;
    color: var(--primary-color);
}

.experiences-tabs .tab-separator {
    margin: 0 15px;
    opacity: 0.3;
}

@media (max-width: 992px) {
    .menu-overlay-right {
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        background: none;
    }

    .experiences-tabs {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        backdrop-filter: blur(5px);
        padding: 5px 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Ensure content padding clears the menu */
    #experiencesSlidesTrack .split-content {
        padding-top: 80px !important;
    }
}

/* Align Restaurant Tabs Design with Experiences Tabs */
.restaurant-tabs {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-color);
    background: none;
    /* Override any background if present */
}

/* Override items */
.restaurant-tabs .tab-item {
    cursor: pointer;
    font-weight: 500;
    opacity: 0.6;
    transition: all 0.3s;
    color: #333;
    margin: 0 5px;
    /* Adjust spacing */
}

.restaurant-tabs .tab-item.active {
    opacity: 1;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: none;
    /* Ensure no borders from old styles */
}

.restaurant-tabs .tab-separator {
    margin: 0 15px;
    opacity: 0.3;
}

/* Ensure mobile layout for restaurant tabs matches experiences */
@media (max-width: 992px) {
    .restaurant-tabs {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        backdrop-filter: blur(5px);
        padding: 5px 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive Padding for Slider Content */
.restaurant-slide .split-content {
    padding-top: 120px;
    /* Default desktop padding to clear absolute menu */
}

@media (max-width: 992px) {
    .restaurant-slide .split-content {
        padding-top: 100px !important;
        /* Mobile padding - ensure enough space for menu */
        padding-bottom: 40px;
        text-align: center;
        /* Center text on mobile often looks better */
    }

    .section-subtitle.style-left {
        /* If specific override needed */
        text-align: center !important;
    }

    /* Ensure title isn't hidden */
    .section-title {
        margin-top: 10px;
    }
}

.gallery-item {
    cursor: pointer;
}

/* Mobile adjustment for hero text */
@media (max-width: 768px) {
    .hero {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        padding: 0 20px;
        padding-bottom: 60px;
        /* Slight bottom offset */
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* NEW CTA DESIGN (Overrides) */
.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/safari-home.jpg') !important;
    background-color: transparent !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    padding: 120px 0 !important;
    text-align: center !important;
    color: var(--white) !important;
    position: relative !important;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-text {
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-cta {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
    font-weight: 700 !important;
}

.btn-cta:hover {
    background-color: transparent !important;
    color: var(--white) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
    border-color: var(--white) !important;
}

/* --- Carousel Styles (Global) --- */
.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    /* Default height, can be overridden */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background 0.3s;
    backdrop-filter: blur(2px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-container {
        height: 250px;
    }
}

/* --- Split Layout Styles (Global) --- */
.experience-card-row {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 100px;
}

@media (min-width: 768px) {
    .experience-card-row {
        flex-direction: row;
        align-items: stretch;
        min-height: 450px;
    }

    .experience-card-row.reverse {
        flex-direction: row-reverse;
    }

    .card-image-col {
        width: 50%;
        position: relative;
        min-height: 100%;
    }

    .card-content-col {
        width: 50%;
    }
}

.card-content-col {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .card-image-col {
        height: 300px;
    }

    .card-content-col {
        padding: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.phone-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
}

.phone-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #c5a059;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    transition: all 0.3s ease;
}

.phone-float a:hover {
    background-color: #b08d4d;
    transform: scale(1.1);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .phone-float {
        bottom: 75px;
        left: 15px;
    }

    .phone-float a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}