:root {
    --primary-color: #0f172a; /* Midnight Blue / Charcoal */
    --accent-color: #f97316; /* Sunset Orange */
    --bg-main: #f8fafc; 
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --transition: all 0.3s ease;
    --container: 1200px;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

/* CINEMATIC SVG DRAWING PRELOADER */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-svg-wrapper {
    width: 350px;
}

.sani-svg {
    width: 100%;
}

.draw-path {
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: draw-sani 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.s-path, .n-path, .i-path { stroke: var(--primary-color); }
.a-path { stroke: var(--accent-color); }

.welcome-path { 
    stroke: var(--primary-color); 
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-welcome 2s ease-in-out forwards; /* SIMULTANEOUS ENTRY */
    opacity: 0.8;
}

@keyframes draw-sani {
    to { stroke-dashoffset: 0; }
}

@keyframes draw-welcome {
    to { stroke-dashoffset: 0; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header & Navigation Redesign */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

/* Glassmorphism Effect */
.header-top, .header-main {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-top {
    position: relative;
    background-color: rgba(15, 23, 42, 0.4); /* Translucent Midnight Blue */
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000; /* Priority layering */
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-utility {
    display: flex;
    gap: 20px;
}

.header-utility a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.header-utility a:hover {
    color: var(--accent-color);
}

.header-settings {
    display: flex;
    align-items: center;
    gap: 20px;
}

.setting-item {
    position: relative;
    padding: 5px 0;
}

.current-selection {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.current-selection:hover { color: var(--accent-color); }

.mini-chevron { font-size: 0.6rem; opacity: 0.7; }

/* Top Dropdowns specific positioning */
.header-settings .dropdown-menu {
    width: 160px;
    top: calc(100% + 5px);
    right: 0;
    padding: 10px 0;
    border-top: 3px solid var(--accent-color);
    background-color: white !important; /* Solid background for settings */
}

/* ACTIVATING THE TOP DROPDOWNS ON HOVER */
.setting-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-settings .dropdown-menu li a {
    padding: 8px 15px !important;
    font-size: 0.8rem !important;
}

.auth-box {
    display: flex;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 15px;
    margin-right: 5px;
}

.btn-login {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    border-radius: 6px;
}

.btn-signup {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    background-color: var(--accent-color);
    padding: 6px 15px;
    border-radius: 6px;
}

/* Header Main */
.header-main {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05); /* Transparent default */
    padding: 12px 0; /* Slimmer header */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 900; /* Stacks BELOW dropdowns */
}

.header-main .container {
    display: flex;
    justify-content: center; /* PERFECT CENTERING */
    align-items: center;
    position: relative;
    min-height: 40px;
}

.logo {
    position: absolute;
    right: 2rem; /* Pinned to right */
    top: 50%;
    transform: translateY(-50%);
}

.logo a {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition);
}

.accent-letter {
    color: #9a3412 !important; /* Deep Orange/Brown from image */
}

.header.scrolled .logo a {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px; /* Balanced spacing */
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem; /* Smaller links */
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

/* Floating Header State */
.header.scrolled .header-main {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sophisticated Shadow */
    border-bottom: 3px solid var(--accent-color);
}

.nav-links li.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 240px;
    background-color: white !important;
    list-style: none;
    padding: 15px 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-color);
    z-index: 99999 !important; /* ULTRA HIGH FOR OVERLAY */
}

.dropdown-menu li a {
    color: var(--primary-color) !important;
    padding: 12px 25px !important;
    display: block !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(249, 115, 22, 0.05);
    color: var(--accent-color) !important;
    padding-right: 35px !important;
}

.nav-links li.dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-links i {
    font-size: 0.7rem;
    margin-right: 5px;
    transition: 0.3s;
}

.nav-links li.dropdown:hover i {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
}

/* Removed btn-book styles */

/* Hero Section */
.hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%; height: 100%; object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

/* Booking Form Redesign */
.booking-search-section {
    position: relative;
    margin-top: -120px;
    z-index: 100;
    padding-bottom: 60px;
}

.booking-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 15px; /* Smaller padding */
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    max-width: 1000px; /* Slimmer form */
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.booking-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.booking-tab {
    padding: 6px 14px;
    background: #f1f5f9;
    color: var(--text-muted);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.75rem; /* Smaller font */
    cursor: pointer;
    transition: var(--transition);
}

.booking-tab.active {
    background: var(--primary-color);
    color: #fff;
}

.booking-body {
    display: flex;
    flex-direction: column;
    gap: 30px; /* More space between rows */
    margin-top: 25px;
}

.booking-row {
    display: grid;
    gap: 25px; /* More internal space */
}

.booking-row.top {
    grid-template-columns: 2.8fr 1fr; /* Longer location input */
    align-items: center; /* Better checkbox alignment */
    margin-bottom: 25px;
}

.booking-row.dates {
    grid-template-columns: repeat(4, 1fr); /* All 4 fields in ONE premium row */
    gap: 20px;
}

.booking-group {
    display: flex;
    flex-direction: column;
}

.booking-group label {
    display: block;
    font-weight: 800;
    font-size: 0.75rem; /* Smaller label */
    margin-bottom: 8px;
    color: var(--primary-color);
    white-space: nowrap;
}

.booking-input { position: relative; }
.booking-input input {
    width: 100%;
    padding: 10px 40px 10px 12px; /* Smaller input padding */
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.85rem; /* Smaller input text */
    font-weight: 700;
    background-color: #f8fafc;
    transition: var(--transition);
}

.booking-input input:focus {
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.booking-input i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.1rem;
    z-index: 5;
}

.time-date-inputs {
    display: flex;
    gap: 15px; /* Clean gap between separated boxes */
}
.time-date-inputs input { 
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: #f8fafc;
    padding: 15px;
    width: 100%;
    font-weight: 700;
    -webkit-appearance: none;
    appearance: none; 
}
/* Hide native icons to avoid overlap with FontAwesome */
.time-date-inputs input::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}
.time-date-inputs .booking-input.small input { padding-right: 15px; }

.booking-checkbox { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.8rem; color: var(--text-muted); }

.booking-btn {
    background: var(--accent-color);
    color: #fff;
    padding: 16px 60px; /* Much larger padding */
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.1rem; /* Larger font */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%; /* Hero button usually full width in this layout or centered large */
    max-width: 300px;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.booking-btn:hover { 
    background: #ea580c; 
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

.booking-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Sections Styling */
.section-header h2 { font-size: 2.5rem; font-weight: 900; color: var(--primary-color); }
.section-header span { color: var(--accent-color); font-weight: 800; letter-spacing: 1.5px; }

/* Premium Car Slider */
.cars-slider-container {
    position: relative;
    margin-top: 50px;
    padding: 0 50px;
}

.cars-slider-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.cars-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.car-card {
    min-width: calc((100% - 60px) / 3); /* Shows 3 cards on desktop */
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

@media (max-width: 992px) {
    .car-card { min-width: calc((100% - 30px) / 2); } /* 2 cards */
}

@media (max-width: 600px) {
    .car-card { min-width: 100%; } /* 1 card */
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.slider-btn:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.slider-btn.prev { right: -20px; }
.slider-btn.next { left: -20px; }

.car-img {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.car-card:hover .car-img img {
    transform: scale(1.1) rotate(2deg);
}

.car-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
}

.car-price span {
    color: var(--accent-color);
}

.car-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.car-info {
    padding: 30px;
}

.car-info h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.car-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.car-specs span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-specs i {
    color: var(--accent-color);
    font-size: 1rem;
}

.btn-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-card:hover {
    background: var(--accent-color);
    transform: scale(1.02);
}

/* Floating Actions & Chatbot */
.fixed-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    pointer-events: none;
    z-index: 9999;
}

.scroll-top-btn, .chatbot-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.scroll-top-btn {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(100px);
    opacity: 0;
}

.scroll-top-btn.visible {
    transform: translateY(0);
    opacity: 1;
}

.chatbot-trigger {
    background: var(--accent-color);
    color: #fff;
    position: relative;
}

.chat-wrapper {
    position: relative;
    pointer-events: auto;
}

/* Chat Tooltip Message on Hover (Positioned to the RIGHT) */
.chat-tooltip {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 8px solid var(--primary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.chat-wrapper:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.chatbot-container {
    position: fixed;
    bottom: 110px;
    left: 30px;
    width: 420px;
    height: 600px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    transform-origin: bottom left;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}

.chatbot-container.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background: var(--primary-color);
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bot-status {
    width: 10px;
    height: 10px;
    background: #22c55e; /* Online green */
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.close-chat {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.close-chat:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8fafc;
    position: relative;
    scroll-behavior: smooth;
}

/* Typing Indicator Animation */
.typing-indicator {
    padding: 10px 15px;
    background: #fff;
    border-radius: 12px;
    display: none; /* Controlled by JS */
    align-self: flex-start;
    gap: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
    display: inline-block;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); opacity: 0.5; }
}

/* Enhanced Chatbot Chips */
.quick-questions {
    padding: 10px 0;
    margin-top: auto; /* Pushes messages up if container uses flex correctly */
    display: flex;
    flex-direction: column; /* Vertical stack */
    gap: 10px;
    background: transparent;
    border: none;
    width: 100%;
}

.quick-questions::-webkit-scrollbar {
    display: none;
}

.q-chip {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    align-self: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.q-chip i {
    color: var(--accent-color);
    font-size: 0.85rem;
    pointer-events: none;
}

/* Premium Button for View All */
.header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
}

.header-with-action .section-header {
    margin-bottom: 0;
    text-align: right;
}

@media (max-width: 768px) {
    .header-with-action {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .header-with-action .section-header {
        text-align: center;
    }
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    background: var(--primary-color);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-premium:hover {
    background: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
}

.btn-premium i {
    transition: 0.3s;
}

.btn-premium:hover i {
    transform: translateX(-5px);
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 35px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline-premium:hover {
    background: var(--primary-color);
    color: #fff !important;
    transform: translateY(-3px);
}

.q-chip:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.q-chip:hover i {
    color: #fff;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.message.bot {
    align-self: flex-start;
    background: #fff;
    color: var(--text-dark);
    border-bottom-right-radius: 4px;
}

.message.user {
    align-self: flex-end;
    background: var(--accent-color);
    color: #fff;
    border-bottom-left-radius: 4px;
}

.chatbot-input {
    padding: 12px 15px;
    background: #fff;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--border-light);
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s;
    background: #f8fafc;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.chatbot-input button {
    background: var(--accent-color);
    color: #fff;
    border: none;
    min-width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.chatbot-input button i {
    transform: scaleX(-1); /* Correct plane direction for RTL */
}

.chatbot-input button:hover {
    background: #ea580c;
    transform: scale(1.05);
}

/* Redesigned Services Section */
.services.section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

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

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--accent-color);
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.1);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: rotateY(180deg);
    background: var(--accent-color);
    color: #fff;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Immersive Full-Image Categories Section */
.categories.section {
    padding: 100px 0;
}

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

.category-card {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cat-image {
    width: 100%;
    height: 100%;
}

.cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cat-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    text-align: right;
    transition: background 0.4s;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
}

.category-card:hover .cat-image img {
    transform: scale(1.15) rotate(1deg);
}

.category-card:hover .cat-overlay {
    background: linear-gradient(to top, var(--primary-color) 0%, rgba(15, 23, 42, 0.5) 70%, transparent 100%);
}

.cat-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.category-card:hover .cat-icon {
    transform: rotateY(180deg) scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 850;
    color: #fff;
}

.category-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.9;
    transition: 0.3s;
}

.category-card:hover p {
    opacity: 1;
}

/* Tablet & Mobile Grid Adaptation */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Two-Column Layout: Horizontal Stats (Right) & Award Card (Left) */
.stats-section {
    position: relative;
    background: #0f172a;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
    text-align: right;
}

.stats-premium-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
    opacity: 0.12;
    z-index: 1;
}

.stats-grid {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: row; /* Side-by-Side Columns */
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.stats-content {
    flex: 1.5; /* More room for horizontal bubbles */
    text-align: right;
}

.stats-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Visual Left */
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    margin-bottom: 20px;
}

.stats-content h2 {
    font-size: 2.8rem;
    font-weight: 950;
    line-height: 1.1;
    margin: 0 0 20px;
    background: linear-gradient(to left, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.stats-bubbles {
    display: flex;
    flex-direction: row; /* Horizontal Now! */
    gap: 20px;
    flex-wrap: wrap; /* Ensure wrapping on smaller desktops */
    margin-top: 30px;
}

.stat-bubble {
    display: flex;
    flex-direction: column; /* Icon Top, Content Bottom */
    align-items: flex-start;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    padding: 20px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 150px;
}

.stat-bubble:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.stat-bubble .icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.stat-bubble h4 {
    font-size: 1.8rem;
    font-weight: 900;
}

.stat-bubble p {
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Award Card Adjustment */
.premium-award-card {
    width: 100%;
    max-width: 420px;
    perspective: 1000px;
}

@media (max-width: 1200px) {
    .stats-grid { gap: 40px; }
    .stats-content h2 { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .stats-grid {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .stats-content, .stats-visual { text-align: center; justify-content: center; }
    .stats-bubbles { justify-content: center; align-items: center; }
    .stats-content p { margin: 0 auto; }
}

.premium-award-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    perspective: 1000px;
    margin: 0 auto;
}

.award-glow {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
}

.card-inner {
    position: relative;
    z-index: 5;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 1));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-award-card:hover .card-inner {
    transform: rotateX(5deg) rotateY(-5px) translateY(-10px);
    border-color: rgba(249, 115, 22, 0.4);
}

.card-inner i {
    font-size: 4.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.4));
}

.card-inner h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fff;
}

.card-inner .divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.card-inner span {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 600;
}

/* Premium App Section: Side-by-Side Showcase */
.app-section {
    background: #f8fafc;
    padding: 140px 0;
    overflow: hidden;
}

.app-grid {
    display: flex;
    align-items: center; /* VITAL: Keeps text and phone centered vertically */
    justify-content: space-between;
    gap: 80px;
}

.app-right {
    flex: 1.2;
    text-align: right;
}

.app-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.phone-mockup-premium {
    width: 320px;
    height: 640px;
    background: #000;
    border-radius: 54px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 
        0 60px 120px rgba(0,0,0,0.1),
        inset 0 0 50px rgba(255,255,255,0.02);
    position: relative;
    transform: perspective(1200px) rotateY(10deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-mockup-premium:hover {
    transform: perspective(1200px) rotateY(0deg) scale(1.05);
}

.phone-inner {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.phone-inner::before {
    content: '';
    position: absolute;
    top: 15px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 28px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 20;
}

.app-screen {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.app-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-overlay {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.pulse-ring {
    width: 80px;
    height: 80px;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px; width: 80px; height: 80px;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: app-pulse 2s infinite;
}

@keyframes app-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.app-right span {
    color: var(--accent-color);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.app-right h2 {
    font-size: 3.2rem;
    font-weight: 950;
    color: var(--primary-color);
    margin: 15px 0 25px;
    line-height: 1.1;
}

.app-right p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 550px;
}

.app-features {
    list-style: none;
    margin-bottom: 45px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.app-features i {
    width: 28px; height: 28px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-badge {
    background: #000;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1rem;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-badge:hover {
    transform: translateY(-8px);
    background: #111;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.app-badge i {
    font-size: 1.4rem;
}

@media (max-width: 1024px) {
    .app-grid { gap: 40px; }
    .app-right h2 { font-size: 2.8rem; }
}

@media (max-width: 992px) {
    .app-grid { flex-direction: column-reverse; text-align: center; gap: 60px; } /* Stack on mobile, text top */
    .app-right { text-align: center; }
    .app-right p { margin: 0 auto 40px; }
    .app-features { display: inline-block; text-align: right; }
    .app-buttons { justify-content: center; }
    .app-visual { justify-content: center; }
}

/* RTL Adjustment for App Grid */
.app-grid { direction: rtl; }

@media (max-width: 992px) {
    .stats-grid, .app-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .stats-numbers { justify-content: center; }
    .app-features { display: inline-block; text-align: right; }
    .app-buttons { justify-content: center; }
}

/* Desktop/Tablet adjustment for original services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Enhanced Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
    padding-top: 0; /* Handled by wave */
    overflow: hidden;
}

.footer-top-wave {
    position: relative;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-top-wave svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 100px;
}

.footer-top-wave .shape-fill {
    fill: var(--bg-main);
}

.footer-main {
    padding: 60px 2rem 30px;
    z-index: 1;
    position: relative;
}

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

.footer-logo a {
    font-size: 2.5rem;
    color: #fff;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 30px;
    max-width: 350px;
    font-size: 0.95rem;
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-color) !important;
    transform: translateX(-8px);
}

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    width: 100%;
}

.newsletter-form input:focus {
    outline: none;
}

.btn-newsletter {
    background: var(--accent-color);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background: #ea580c;
    transform: scale(1.05);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--accent-color);
    color: #fff;
}

.app-downloads h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.app-badges {
    display: flex;
    gap: 15px;
}

.app-badge {
    background: #000;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.app-badge:hover {
    background: #333;
    border-color: var(--accent-color);
}

.app-badge i {
    font-size: 1.2rem;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    gap: 25px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
}

.payment-methods i:hover {
    color: rgba(255, 255, 255, 0.8);
}

.social-links-premium {
    display: flex;
    gap: 15px;
}

.social-link-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-item:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 30px;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.bottom-links a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .branding-col {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .branding-col {
        grid-column: span 1;
    }
    .footer-middle {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Utilities */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section { padding: 80px 0; }
.reveal-up { opacity: 0; transform: translateY(30px); transition: 0.6s; }
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* GLOBAL DROPDOWN TRIGGER (Ensures ALL dropdowns work) */
.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.setting-item.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}


@media (max-width: 1024px) {
    .header-top { display: none; }
    .header-main { background-color: rgba(15, 23, 42, 0.95); }
    .logo a { font-size: 1.6rem; }
    
    .menu-toggle { display: block; color: #fff; font-size: 1.5rem; cursor: pointer; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 1001;
        box-shadow: -10px 0 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.active { right: 0; }
    .nav-links li { margin: 15px 0; }
    .nav-links li a { font-size: 1.2rem; }
    
    .booking-row.top, .booking-row.dates { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
}
