@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;700;900&display=swap');

:root {
    --gold: #D4AF37;
    --gold-dark: #B8860B;
    --cream: #FFFDD0;
    --dark: #1A1A1A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Mega Menu --- */
.has-mega { position: static !important; }

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: 280px 1fr 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-bottom: 4px solid var(--gold);
    min-height: 500px;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-sidebar {
    background: #1A1A1A;
    padding: 40px 0;
}

.mega-tab {
    padding: 15px 40px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mega-tab.active {
    color: white;
    background: rgba(255,255,255,0.05);
    border-left-color: var(--gold);
}

.mega-content {
    padding: 60px;
    color: var(--dark);
    text-align: left;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
}

.mega-link:hover { color: var(--gold); }

.mega-visual {
    position: relative;
    overflow: hidden;
}

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

.mega-visual-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
    z-index: 2;
    text-align: left;
}

@media (max-width: 1100px) {
    .mega-menu { grid-template-columns: 240px 1fr; }
    .mega-visual { display: none; }
}

@media (max-width: 768px) {
    .mega-menu { display: none !important; }
}

/* --- Global Page Banners --- */
.page-banner {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.75));
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .page-banner { padding: 140px 0 60px; }
    .page-banner h1 { font-size: 2.8rem !important; }
}

/* --- Bot Protection --- */
.hp-field {
    display: none !important;
    visibility: hidden !important;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* --- Admin Portal Styles --- */
.sidebar { 
    width: 260px; 
    background: #1A1A1A !important; 
    color: #ffffff !important; 
    padding: 30px 15px; 
    position: fixed; 
    top: 0;
    left: 0;
    height: 100vh; 
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto;
    z-index: 2000;
    box-shadow: 4px 0 15px rgba(0,0,0,0.3);
}

.sidebar a {
    display: block !important;
    width: 100%;
    padding: 12px 20px;
    color: rgba(255,255,255,0.8) !important;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
}

.sidebar a:hover, .sidebar a.active {
    background: #D4AF37 !important;
    color: #ffffff !important;
}

.admin-main {
    margin-left: 260px;
    padding: 40px;
    flex: 1;
    min-height: 100vh;
    background: #f4f7f6;
    width: calc(100% - 260px);
}

@media (max-width: 992px) {
    .sidebar { width: 70px; padding: 20px 10px; }
    .sidebar h4, .sidebar a span { display: none; }
    .sidebar a { padding: 12px; text-align: center; }
    .admin-main { margin-left: 70px; width: calc(100% - 70px); padding: 20px; }
}

@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .sidebar.active { transform: translateX(0); }
    .admin-main { margin-left: 0; width: 100%; }
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
}

/* --- Premium Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
}

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

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

header.scrolled .nav-links a {
    color: var(--white);
}

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

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

.btn-book {
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-book:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold) !important;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;/* --- Destinations Overhaul --- */
.dest-container {
    display: grid;
    grid-template-columns: 280px 1fr 400px;
    background: var(--white);
    min-height: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    overflow: hidden;
}

.dest-sidebar {
    background: #1A1A1A;
    padding: 40px 0;
}

.dest-tab {
    padding: 20px 40px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.dest-tab.active {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    border-left-color: var(--gold);
}

.dest-tab:hover {
    color: var(--white);
}

.dest-content {
    padding: 60px;
    background: #fff;
}

.dest-grid-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.dest-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dest-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.dest-visual {
    position: relative;
    overflow: hidden;
}

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

.dest-visual-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
    z-index: 2;
}

@media (max-width: 1100px) {
    .dest-container { grid-template-columns: 240px 1fr; }
    .dest-visual { display: none; }
}

@media (max-width: 768px) {
    .dest-container { grid-template-columns: 1fr; margin-top: 0; border-radius: 0; }
    .dest-sidebar { display: flex; overflow-x: auto; padding: 10px 0; }
    .dest-tab { padding: 15px 25px; border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
    .dest-tab.active { border-bottom-color: var(--gold); }
    .dest-content { padding: 30px; }
    .dest-grid-links { grid-template-columns: 1fr; }
}
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: #000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 500;
}

/* --- Section Styling --- */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.section-title .divider {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto;
}

/* --- Cards --- */
.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tour-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

.tour-card:hover .tour-image img {
    scale: 1.1;
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}



/* Admin Forms */
.form-group { margin-bottom: 20px; }
.admin-main label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; }
.admin-main input[type="text"], 
.admin-main input[type="number"], 
.admin-main input[type="email"], 
.admin-main input[type="date"], 
.admin-main textarea, 
.admin-main select { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-family: inherit;
}

.tour-info {
    padding: 2rem;
}

.tour-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- Mobile Navigation --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.nav-links.mobile-active {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transform: translateX(0);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* --- Hero Video --- */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* --- Circuit Cards (Home) --- */
.circuit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.circuit-card {
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: var(--white);
    transition: var(--transition);
}

.circuit-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: var(--transition);
}

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

.circuit-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 0;
}

.circuit-card-content {
    position: relative;
    z-index: 1;
}

.circuit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.btn-circle {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    margin-top: 15px;
}

/* --- Circuit Megamenu (Destinations Page) --- */
.circuit-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 50px;
}

.circuit-item {
    background: var(--light-gray);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.circuit-item.active {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.circuit-item h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.circuit-display {
    display: flex;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.dest-list {
    flex: 1;
}

.dest-list h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.dest-item {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    transition: var(--transition);
}

.dest-item:hover {
    padding-left: 10px;
    color: var(--gold);
}

.circuit-image {
    flex: 1.5;
}

.circuit-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* --- WhatsApp Widget --- */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.wa-bubble {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.wa-bubble:hover {
    transform: scale(1.1);
}

.wa-bubble svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
}

/* --- Responsive Fixes --- */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    
    .circuit-display { 
        flex-direction: column; 
        padding: 2rem;
        gap: 2rem;
    }
    
    .circuit-image img { 
        height: 300px; 
    }
    
    .nav-links.mobile-active .btn-book { width: 80%; text-align: center; }
    
    /* Grid Fixes */
    .circuit-grid { grid-template-columns: 1fr; }
    .tour-card { max-width: 100%; }
    
    .circuit-nav { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    
    .circuit-item { 
        padding: 1.2rem;
        border-bottom-width: 3px;
    }
    .circuit-item h4 { font-size: 0.85rem; }
    
    .dest-list h3 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .circuit-nav { 
        grid-template-columns: 1fr; 
    }
    
    .hero-content h1 { font-size: 2.2rem !important; }
    
    .section-title h2 { font-size: 2.5rem; }
    
    .page-banner h1 { font-size: 2.2rem !important; }
}

/* Force Box Sizing and Overflow Control */
* {
    max-width: 100%;
}

.hero-video-container iframe {
    max-width: none; /* Allow iframe to be larger for background effect */
}

/* --- Asoupe AI Chatbot Widget --- */
.chatbot-widget {
    position: fixed;
    bottom: 100px; /* Above WhatsApp widget */
    right: 30px;
    z-index: 9999;
}

.chatbot-widget * {
    max-width: none !important;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
    color: white;
}

.chat-bubble:hover {
    transform: scale(1.1);
}

.chat-panel {
    position: absolute;
    bottom: 75px; /* Just above the 60px chat bubble */
    right: 0;
    width: 360px;
    height: 520px;
    max-height: calc(100vh - 200px); /* Account for widget offset (100px) + panel offset (75px) + top margin */
    max-width: 90vw !important;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
    z-index: 10000;
}

.chat-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.chat-header {
    background: var(--dark);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-name-status {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-weight: 600;
    font-size: 1rem;
}

.chat-status {
    font-size: 0.7rem;
    opacity: 0.8;
}

.chat-avatar {
    width: 35px;
    height: 35px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    opacity: 1;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 90%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 30px;
    height: 30px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.chat-message.user .msg-avatar {
    background: #555;
}

.msg-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.chat-message.user .msg-wrapper {
    align-items: flex-end;
}

.msg-content {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.chat-message.bot .msg-content {
    background: #f4f4f4;
    color: #333;
    border-top-left-radius: 0;
}

.chat-message.user .msg-content {
    background: var(--gold);
    color: white;
    border-top-right-radius: 0;
}

.msg-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 2px;
}

.chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.chat-fallback {
    text-align: center;
    margin-bottom: 12px;
}

.chat-fallback a {
    font-size: 0.8rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    padding: 6px 6px 6px 18px;
}

#chat-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
}

.chat-send {
    background: var(--dark);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.chat-send:hover {
    background: var(--gold);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 12px 16px;
    background: #f4f4f4;
    border-radius: 12px;
    border-top-left-radius: 0;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #aaa;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 80px;
        right: 15px;
    }
    .chat-panel {
        position: fixed;
        top: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        height: auto;
        max-height: none;
        border-radius: 12px;
        z-index: 1001;
    }
    .chat-header {
        border-radius: 12px 12px 0 0;
    }
}

/* --- Booking Page Enhancements --- */
.booking-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.booking-form-container {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.booking-form-container h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
}

.booking-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

.booking-form-container input,
.booking-form-container select,
.booking-form-container textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 1.5px solid #eee !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    color: var(--dark) !important;
    transition: all 0.3s ease !important;
    background: #fcfcfc !important;
}

.booking-form-container input:focus,
.booking-form-container select:focus,
.booking-form-container textarea:focus {
    outline: none !important;
    border-color: var(--gold) !important;
    background: var(--white) !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.05) !important;
}

/* --- Booking Page Enhancements --- */
.booking-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.booking-form-container {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.booking-form-container h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.booking-form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.booking-form-container label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form-container input,
.booking-form-container select,
.booking-form-container textarea {
    width: 100% !important;
    display: block !important;
    padding: 16px 20px !important;
    border: 2px solid #f5f5f5 !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    color: var(--dark) !important;
    transition: all 0.3s ease !important;
    background: #fafafa !important;
}

.booking-form-container input:focus,
.booking-form-container select:focus,
.booking-form-container textarea:focus {
    outline: none !important;
    border-color: var(--gold) !important;
    background: var(--white) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1) !important;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.sidebar-card.dark {
    background: var(--dark);
    color: var(--white);
    border: none;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.sidebar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.sidebar-card.dark h3 {
    color: var(--gold);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.help-text {
    opacity: 0.8;
    margin-bottom: 35px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.help-btns {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 20px; /* Added padding to avoid overlap with floating bubbles */
}

.btn-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.btn-help:hover::before {
    transform: translateX(0);
}

.btn-help.call {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-help.call:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-help.whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-help.whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .booking-form-container {
        padding: 40px 25px;
    }
    .booking-sidebar {
        position: static;
    }
}
