/* ========================================
   CSS Variables & Color Scheme
======================================== */
:root {
    /* Purple/Pink/Gold Theme */
    --primary-color: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #a78bfa;
    --secondary-color: #ec4899;
    --secondary-dark: #be185d;
    --accent-color: #f59e0b;
    --accent-dark: #d97706;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #fad961 0%, #f76b1c 100%);
    --gradient-dark: linear-gradient(135deg, #2d1b69 0%, #1a0b3d 100%);

    /* Text Colors */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-dark: #1a0b3d;

    /* Border & Shadow */
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Dark Mode Variables */
body.dark-mode {
    --text-dark: #f9fafb;
    --text-light: #d1d5db;
    --bg-light: #1f2937;
    --bg-white: #111827;
    --bg-dark: #030712;
    --border-color: #374151;
}

/* ========================================
   Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    direction: rtl;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

ul {
    list-style: none;
}

/* ========================================
   Dark Mode Toggle
======================================== */
.dark-mode-toggle {
    display: none;
    /* Hidden as per user request */
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.dark-mode-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-white {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

.btn-whatsapp-sm {
    width: 45px;
    height: 45px;
    padding: 0;
    background: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 20px;
}

.btn-whatsapp-sm:hover {
    background: #1faa52;
    transform: scale(1.1);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-offer {
    background: var(--gradient-accent);
    color: white;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 11, 61, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

`r`n`r`n.site-name {
    `r`n color: white;
    `r`n font-weight: 700;
    `r`n font-size: 18px;
    `r`n
}

.nav-list {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-list a {
    color: white;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: all var(--transition-normal);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* ========================================
   Hero Section - Diagonal Split
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    background: var(--bg-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #321f51e0;

    z-index: 1;
}


.site-name {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #a78bfa, #ec4899, #f59e0b, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Hero Site Branding */
.hero-site-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-site-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.hero-site-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Contact Info */
.hero-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 28px;
    color: var(--accent-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
    transition: color var(--transition-normal);
}

.contact-value:hover {
    color: var(--accent-color);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 700px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 13px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-image {
    display: none;
    /* Hidden - all content centered as per user request */
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-slow);
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.3));
}

/* Image Decorations */
.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: rotate-circle 20s linear infinite;
}

@keyframes rotate-circle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.decoration-dots {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--secondary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: particle-float 15s infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 40%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 60%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 12s;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* ========================================
   Floating Offer Banner
======================================== */
.floating-offer-banner {
    background: var(--gradient-accent);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.floating-offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px);
    animation: banner-move 20s linear infinite;
}

@keyframes banner-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.offer-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.offer-text {
    flex: 1;
    color: white;
}

.offer-text h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.offer-text p {
    font-size: 16px;
    opacity: 0.95;
}

.offer-countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 12px;
    color: white;
    opacity: 0.9;
}

/* ========================================
   Section Headers
======================================== */
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
}

.section-header.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-number {
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
}

.section-content {
    flex: 1;
}

.section-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 900;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

/* ========================================
   Packages Section - Staggered Cards
======================================== */
.packages {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.packages-grid.staggered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.package-card.tilted {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.package-card.tilted[data-tilt="left"] {
    transform: rotate(-2deg);
}

.package-card.tilted[data-tilt="right"] {
    transform: rotate(2deg);
}

.package-card.tilted:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
}

.package-card.vip {
    border: 3px solid var(--secondary-color);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--text-dark);
    color: white;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.package-ribbon.popular {
    background: var(--gradient-primary);
}

.package-ribbon.vip-badge {
    background: var(--gradient-secondary);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.package-content {
    padding: 30px;
}

.package-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.package-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.package-features-list {
    margin-bottom: 25px;
}

.package-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.package-features-list li i {
    color: var(--primary-color);
    font-size: 16px;
}

.package-actions {
    display: flex;
    gap: 10px;
}

.package-actions .btn {
    flex: 1;
}

/* ========================================
   Hotels Section - Masonry Layout
======================================== */
.hotels {
    padding: 100px 0;
    background: white;
}

.hotel-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.hotels-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.hotel-card.masonry-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 400px;
}

.hotel-card.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.hotel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hotel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hotel-card:hover .hotel-image-wrapper img {
    transform: scale(1.1);
}

.hotel-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    transition: opacity var(--transition-normal);
}

.hotel-badges {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.hotel-stars-badge,
.hotel-city-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.hotel-stars-badge {
    color: var(--accent-color);
}

.hotel-city-badge {
    background: var(--gradient-primary);
    color: white;
}

.hotel-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 10;
    transform: translateY(0);
    opacity: 1;
    transition: all var(--transition-normal);
}

.hotel-card:hover .hotel-hover-content {
    transform: translateY(-5px);
    opacity: 1;
}

.hotel-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hotel-location,
.hotel-distance {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.hotel-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* ========================================
   Buses Section - Comparison Table
======================================== */
.buses {
    padding: 100px 0;
    background: var(--bg-light);
}

.buses-comparison {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.bus-column {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.bus-column:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.bus-column.featured {
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.bus-header {
    padding: 30px;
    text-align: center;
    color: white;
}

.bus-header.regular {
    background: var(--gradient-dark);
}

.bus-header.vip {
    background: var(--gradient-primary);
}

.bus-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.bus-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.bus-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.bus-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.bus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bus-features {
    padding: 30px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    font-size: 15px;
    color: var(--text-light);
}

.feature-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-value i {
    color: var(--primary-color);
    font-size: 18px;
}

.bus-column .btn {
    width: 100%;
    margin: 0 30px 30px 30px;
    width: calc(100% - 60px);
}

/* ========================================
   Price Calculator
======================================== */
.price-calculator {
    padding: 100px 0;
    background: white;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: 'Tajawal', sans-serif;
    transition: all var(--transition-normal);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.calculator-result {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 20px;
}

.calculator-result h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.result-price {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
}

.result-note {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.result-actions {
    display: flex;
    gap: 15px;
    width: 100%;
}

.result-actions .btn {
    flex: 1;
}

/* ========================================
   Why Us - Zigzag Layout
======================================== */
.why-us {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-features-zigzag {
    max-width: 1000px;
    margin: 0 auto;
}

.zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.zigzag-item.reverse {
    direction: ltr;
}

.zigzag-item.reverse .zigzag-content {
    direction: rtl;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
}

.zigzag-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.zigzag-content>p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 18px;
}

.zigzag-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame {
    width: 250px;
    height: 250px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Help Section
======================================== */
.help-section {
    padding: 100px 0;
    background: white;
}

.help-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.help-content {
    text-align: center;
}

.help-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    margin: 0 auto 30px;
}

.help-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.help-content>p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.help-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.help-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.help-feature i {
    color: var(--primary-color);
    font-size: 20px;
}

.help-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header h3 i {
    color: #25d366;
}

.help-form .form-group {
    margin-bottom: 20px;
}

.help-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-form label i {
    color: var(--primary-color);
}

.help-form input,
.help-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: 'Tajawal', sans-serif;
    transition: all var(--transition-normal);
    background: white;
}

.help-form input:focus,
.help-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.help-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
}

.btn-submit:hover {
    background: #1faa52;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--bg-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
    margin: 20px 0;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: white;
    padding-right: 5px;
}

.footer-column ul li i {
    color: var(--primary-light);
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   Floating Contact Buttons
======================================== */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
    position: relative;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #1faa52;
    transform: scale(1.1);
}

.phone-btn {
    background: var(--gradient-primary);
}

.phone-btn:hover {
    transform: scale(1.1);
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    right: 75px;
}

/* ========================================
   Modals
======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
    z-index: 10;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 50px 40px 30px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 20px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 16px;
    color: var(--text-light);
}

.modal-body {
    padding: 0 40px 40px;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.booking-option:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(-5px);
}

.booking-option.whatsapp:hover {
    background: #25d366;
}

.booking-option.phone:hover {
    background: var(--gradient-primary);
}

.booking-option.email:hover {
    background: var(--gradient-secondary);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.booking-option.whatsapp .option-icon {
    color: #25d366;
}

.booking-option.phone .option-icon {
    color: var(--primary-color);
}

.booking-option.email .option-icon {
    color: var(--secondary-color);
}

.option-info {
    flex: 1;
}

.option-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.option-info p {
    font-size: 14px;
    opacity: 0.8;
}

.option-arrow {
    font-size: 20px;
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.booking-option:hover .option-arrow {
    opacity: 1;
    transform: translateX(-5px);
}

/* Hotel Modal */
.modal-body-hotel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hotel-modal-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.hotel-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-modal-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.hotel-modal-badges span {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.hotel-modal-info {
    padding: 40px;
}

.hotel-modal-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.modal-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.modal-detail-item i {
    color: var(--primary-color);
}

.hotel-modal-description {
    margin: 25px 0;
}

.hotel-modal-description h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.hotel-modal-description p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.modal-actions .btn {
    flex: 1;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .zigzag-item {
        grid-template-columns: 1fr;
    }

    .zigzag-image {
        display: none;
    }

    .help-wrapper {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .modal-body-hotel {
        grid-template-columns: 1fr;
    }

    .hotel-modal-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {

    /* Mobile Menu */
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 11, 61, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px;
        transition: left 0.3s ease;
        z-index: 999;
        display: block;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-list a {
        font-size: 18px;
        padding: 10px 0;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 30px 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }

    .hero-contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
        width: 100%;
    }

    .contact-item {
        flex: 1;
        min-width: 0;
        padding: 12px 15px;
    }

    .contact-item i {
        font-size: 20px;
    }

    .contact-label {
        font-size: 10px;
    }

    .contact-value {
        font-size: 13px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        margin-bottom: 30px;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .feature-text h4 {
        font-size: 15px;
    }

    .feature-text p {
        font-size: 12px;
    }

    .hero-actions {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        flex: 1 1 auto;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .section-number {
        font-size: 60px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .offer-content {
        flex-direction: column;
        text-align: center;
    }

    .offer-countdown {
        justify-content: center;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px 15px;
    }

    .countdown-number {
        font-size: 24px;
    }

    .packages-grid.staggered {
        grid-template-columns: 1fr;
    }

    .hotels-masonry {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .zigzag-item {
        grid-template-columns: 1fr;
    }

    .help-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .floating-contacts {
        bottom: 20px;
        left: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .modal-body-hotel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .contact-item {
        width: 100%;
        padding: 10px 15px;
    }

    .contact-item i {
        font-size: 18px;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-actions {
        gap: 8px;
    }

    .hero-actions .btn {
        min-width: 120px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
    }

    .section-number {
        font-size: 48px;
    }

    .section-title {
        font-size: 22px;
    }

    .modal-content {
        width: 95%;
    }

    .modal-header,
    .modal-body {
        padding: 30px 20px;
    }
}

/* ========================================
   Booking Form Styles
======================================== */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.booking-form label i {
    color: var(--primary-color);
    font-size: 16px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    transition: all var(--transition-normal);
    background: white;
    color: var(--text-dark);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.booking-form input::placeholder {
    color: #9ca3af;
}

.booking-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237c3aed'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 20px;
    padding-left: 40px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-form .btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    margin-top: 10px;
}

.booking-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.booking-form .btn-submit i {
    font-size: 20px;
}

/* Dark mode for booking form */
body.dark-mode .booking-form label {
    color: var(--text-light);
}

body.dark-mode .booking-form input,
body.dark-mode .booking-form select,
body.dark-mode .booking-form textarea {
    background: var(--bg-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-color: var(--border-color);
    color: var(--text-light);
}

body.dark-mode .booking-form input::placeholder {
    color: #6b7280;
}

/* Responsive for booking form */
@media (max-width: 768px) {
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-form select {
        background-position: left 10px center;
        padding-left: 35px;
    }
}