/* =============================================
   رحلات طيبة - Taiba Trips
   CSS Stylesheet - Matching Original React Design
   ============================================= */

/* CSS Variables */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;

    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;

    --purple-50: #faf5ff;
    --purple-500: #a855f7;
    --purple-600: #9333ea;

    --orange-50: #fff7ed;
    --orange-500: #f97316;
    --orange-600: #ea580c;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
.font-cairo {
    font-family: 'Cairo', sans-serif;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-hero {
    font-size: 2.25rem;
    font-weight: 900;
}

@media (min-width: 768px) {
    .text-hero {
        font-size: 3.75rem;
    }

    .md-text-xl {
        font-size: 1.25rem;
    }
}

/* Colors */
.text-white {
    color: white;
}

.text-gray-300 {
    color: var(--gray-300);
}

.text-rose-600 {
    color: #059669;
    font-size: 13px;
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-800 {
    color: var(--gray-800);
}

.text-emerald-100 {
    color: var(--emerald-100);
}

.text-emerald-400 {
    color: var(--emerald-400);
}

.text-emerald-500 {
    color: var(--emerald-500);
}

.text-emerald-600 {
    color: var(--emerald-600);
}

.text-blue-500 {
    color: var(--blue-500);
}

.text-blue-600 {
    color: var(--blue-600);
}

.text-purple-500 {
    color: var(--purple-500);
}

.text-purple-600 {
    color: var(--purple-600);
}

.text-orange-500 {
    color: var(--orange-500);
}

.text-orange-600 {
    color: var(--orange-600);
}

.bg-white {
    background-color: white;
}

.bg-white-95 {
    background-color: rgba(255, 255, 255, 0.95);
}

.bg-white-20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.bg-gray-900 {
    background-color: var(--gray-900);
}

.bg-emerald-50 {
    background-color: var(--emerald-50);
}

.bg-emerald-100 {
    background-color: var(--emerald-100);
}

.bg-emerald-500 {
    background-color: var(--emerald-500);
}

.bg-emerald-600 {
    background-color: var(--emerald-600);
}

.bg-blue-50 {
    background-color: var(--blue-50);
}

.bg-blue-100 {
    background-color: var(--blue-100);
}

.bg-blue-500 {
    background-color: var(--blue-500);
}

.bg-purple-50 {
    background-color: var(--purple-50);
}

.bg-orange-50 {
    background-color: var(--orange-50);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md-flex {
        display: flex;
    }

    .md-p-8 {
        padding: 2rem;
    }

    .md-p-10 {
        padding: 2.5rem;
    }

    .md-p-12 {
        padding: 3rem;
    }

    .md-py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Spacing */
.p-1 {
    padding: 0.25rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

/* Sizing */
.w-full {
    width: 100%;
}

.w-4 {
    width: 1rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-24 {
    width: 6rem;
}

.w-32 {
    width: 8rem;
}

.h-1 {
    height: 0.25rem;
}

.h-4 {
    height: 1rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-20 {
    height: 5rem;
}

.h-24 {
    height: 6rem;
}

.h-32 {
    height: 8rem;
}

.h-48 {
    height: 12rem;
}

.h-full {
    height: 100%;
}

.h-hero {
    height: 320px;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-80vh {
    min-height: 80vh;
}

.min-h-500 {
    min-height: 500px;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-h-60 {
    max-height: 15rem;
}

@media (min-width: 768px) {
    .h-hero {
        height: 380px;
    }
}

/* Borders */
.border {
    border: 1px solid var(--gray-200);
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top: 1px solid var(--gray-100);
}

.border-b {
    border-bottom: 1px solid var(--gray-100);
}

.border-gray-100 {
    border-color: var(--gray-100);
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-emerald-300 {
    border-color: var(--emerald-300);
}

.border-emerald-500 {
    border-color: var(--emerald-500);
}

.border-blue-500 {
    border-color: var(--blue-500);
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Shadows */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow {
    box-shadow: var(--shadow);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}

.shadow-emerald-100 {
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.15);
}

.shadow-emerald-200 {
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-0 {
    top: 0;
}

.top-4 {
    top: 1rem;
}

.left-0 {
    left: 0;
}

.left-4 {
    left: 1rem;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-50 {
    z-index: 50;
}

/* Display */
.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-flex {
    display: inline-flex;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

.shrink-0 {
    flex-shrink: 0;
}

/* Text */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Effects */
.backdrop-blur {
    backdrop-filter: blur(8px);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.transition {
    transition: all 0.3s ease;
}

.transition-all {
    transition: all 0.3s ease;
}

.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-1000 {
    transition-duration: 1000ms;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.hover-scale-105:hover {
    transform: scale(1.05);
}

.hover-text-emerald-600:hover {
    color: var(--emerald-600);
}

.hover-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* =============================================
   Custom Components
   ============================================= */

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

/* Hero */
.hero {
    position: relative;
}

.bg-gradient-hero {
    background: #143c32;
}

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

.badge-hero {
    display: inline-block;
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--emerald-300);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Booking Card */
.booking-card {
    margin-top: -6rem;
    box-shadow: var(--shadow-xl), 0 0 50px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: var(--emerald-100);
    color: var(--emerald-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Trip Type Cards - Redesigned */
.trip-type-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    width: 100%;
    border: 1.5px solid var(--gray-200);
    border-radius: 1rem;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: right;
    overflow: hidden;
}

.trip-type-card:hover {
    border-color: var(--emerald-400);
    box-shadow: 0 8px 25px -5px rgba(16, 185, 129, 0.2), 0 4px 10px -5px rgba(16, 185, 129, 0.1);
    transform: translateY(-3px);
}

.trip-type-card:active {
    transform: translateY(-1px);
}

/* Highlighted card - always shows hover state */
.trip-type-card.highlighted {
    border-color: var(--emerald-400);
    box-shadow: 0 8px 25px -5px rgba(16, 185, 129, 0.2), 0 4px 10px -5px rgba(16, 185, 129, 0.1);
    transform: translateY(-3px);
}

.trip-type-card.highlighted::before {
    background: linear-gradient(180deg, var(--emerald-400) 0%, var(--emerald-500) 100%) !important;
}

.trip-type-card.highlighted .trip-type-icon-compact.trip-2-icon {
    background: linear-gradient(135deg, #44a381 0%, #398a6d 100%);
}

.trip-type-card.highlighted .trip-title-compact {
    color: var(--emerald-700);
}

.trip-type-card.highlighted .trip-hotel-inline {
    background: var(--emerald-50);
    border-color: var(--emerald-100);
    color: var(--emerald-600);
}

.trip-type-card.highlighted .trip-schedule-inline {
    color: var(--gray-500);
}

.trip-type-card.highlighted .trip-schedule-inline svg {
    color: var(--emerald-400);
}

.trip-type-card.highlighted .trip-price-inline {
    background: linear-gradient(135deg, var(--emerald-50) 0%, var(--emerald-100) 100%);
    border-color: var(--emerald-200);
}

.trip-type-card.highlighted .trip-price-inline .price-value {
    color: var(--emerald-700);
}

/* Popular Badge - Improved */
.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    padding: 0.35rem 0.75rem;
    border-radius: 0 0 0.75rem 0;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    z-index: 10;
    letter-spacing: -0.02em;
}

/* Compact Trip Card Styles */
.trip-type-card.compact {
    padding: 0;
    gap: 0;
    font-family: 'Cairo', sans-serif;
    min-height: 80px;
}

/* Left accent bar */
.trip-type-card.compact::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-300) 100%);
    transition: all 0.3s ease;
}

.trip-type-card.compact:hover::before {
    background: linear-gradient(180deg, var(--emerald-400) 0%, var(--emerald-500) 100%);
}

.trip-type-card.compact.selected::before {
    background: linear-gradient(180deg, var(--emerald-500) 0%, var(--emerald-600) 100%);
    width: 5px;
}

/* Icon Section - Circular */
.trip-type-icon-compact {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--gray-200) 100%);
    color: var(--gray-500);
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 50%;
    margin-left: 0.75rem;
}

.trip-type-card:hover .trip-type-icon-compact {
    background: linear-gradient(180deg, var(--emerald-100) 0%, var(--emerald-200) 100%);
    color: var(--emerald-600);
}

.trip-type-card.selected .trip-type-icon-compact {
    background: linear-gradient(180deg, var(--emerald-500) 0%, var(--emerald-600) 100%);
    color: white;
}

/* Trip 1 Icon - Green #70a344 */
.trip-type-icon-compact.trip-1-icon {
    background: linear-gradient(135deg, #7db84e 0%, #70a344 100%);
    color: white;
}

.trip-type-card:hover .trip-type-icon-compact.trip-1-icon {
    background: linear-gradient(135deg, #70a344 0%, #5d8a38 100%);
    color: white;
}

.trip-type-card.selected .trip-type-icon-compact.trip-1-icon {
    background: linear-gradient(135deg, #70a344 0%, #5d8a38 100%);
    color: white;
    box-shadow: 0 0 15px rgba(112, 163, 68, 0.5);
}

/* Trip 2 Icon - Teal #44a381 */
.trip-type-icon-compact.trip-2-icon {
    background: linear-gradient(135deg, #52b892 0%, #44a381 100%);
    color: white;
}

.trip-type-card:hover .trip-type-icon-compact.trip-2-icon {
    background: linear-gradient(135deg, #44a381 0%, #398a6d 100%);
    color: white;
}

.trip-type-card.selected .trip-type-icon-compact.trip-2-icon {
    background: linear-gradient(135deg, #44a381 0%, #398a6d 100%);
    color: white;
    box-shadow: 0 0 15px rgba(68, 163, 129, 0.5);
}

/* Trip 3 Icon - Orange VIP */
.trip-type-icon-compact.vip-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.trip-type-card:hover .trip-type-icon-compact.vip-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.trip-type-card.selected .trip-type-icon-compact.vip-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

/* Main Content Area */
.trip-info-compact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem 1rem;
    flex: 1;
    justify-content: center;
}

/* Row 1: Icon + Trip Name on same line */
.trip-row-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.trip-title-compact {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--gray-800);
    line-height: 1.3;
    margin: 0;
}

.trip-type-card:hover .trip-title-compact {
    color: var(--emerald-700);
}

.trip-type-card.selected .trip-title-compact {
    color: var(--emerald-700);
}

.trip-hotel-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    background: var(--gray-50);
    padding: 0.2rem 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid var(--gray-100);
}

.trip-type-card:hover .trip-hotel-inline {
    background: var(--emerald-50);
    border-color: var(--emerald-100);
    color: var(--emerald-600);
}

.trip-type-card.selected .trip-hotel-inline {
    background: var(--emerald-100);
    border-color: var(--emerald-200);
    color: var(--emerald-700);
}

.trip-hotel-inline svg {
    color: inherit;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
}

.stars-badge-small {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    margin-right: 0.125rem;
}

/* Row 2: Schedule - Now as subtle tag */
.trip-schedule-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.trip-schedule-inline .schedule-label {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.trip-schedule-inline svg {
    color: var(--gray-400);
    flex-shrink: 0;
    width: 11px;
    height: 11px;
}

.trip-type-card:hover .trip-schedule-inline {
    color: var(--gray-500);
}

.trip-type-card:hover .trip-schedule-inline svg {
    color: var(--emerald-400);
}

/* Price Section - Right side */
.trip-price-inline {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.625rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 0.625rem;
    border: 1px solid var(--gray-200);
    min-width: 60px;
    transition: all 0.3s ease;
}

.trip-type-card:hover .trip-price-inline {
    background: linear-gradient(135deg, var(--emerald-50) 0%, var(--emerald-100) 100%);
    border-color: var(--emerald-200);
}

.trip-type-card.selected .trip-price-inline {
    background: linear-gradient(135deg, var(--emerald-100) 0%, var(--emerald-200) 100%);
    border-color: var(--emerald-300);
}

.trip-price-inline .price-label-inline {
    font-size: 0.5625rem;
    font-weight: 500;
    color: var(--gray-400);
    line-height: 1;
    margin-bottom: 0.125rem;
}

.trip-price-inline .price-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--emerald-600);
    line-height: 1;
}

.trip-type-card:hover .trip-price-inline .price-value {
    color: var(--emerald-700);
}

.trip-price-inline .price-currency {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--emerald-500);
    line-height: 1;
}

/* Legacy styles kept for compatibility */
.trip-hotel-compact,
.trip-schedule-compact {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.trip-hotel-compact svg,
.trip-schedule-compact svg {
    color: var(--gray-400);
    flex-shrink: 0;
}

.trip-hotel-compact .stars-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    margin-right: 0.25rem;
}

.trip-type-card.selected .trip-price-compact {
    background-color: white;
    border-color: var(--emerald-500);
}

.trip-type-card.selected .trip-hotel-compact,
.trip-type-card.selected .trip-schedule-compact {
    color: var(--gray-700);
}

.trip-type-card.selected .trip-hotel-compact svg,
.trip-type-card.selected .trip-schedule-compact svg {
    color: var(--emerald-500);
}

.trip-type-card.selected {
    border-color: var(--emerald-500);
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.5) 0%, rgba(209, 250, 229, 0.3) 100%);
    box-shadow: 0 8px 25px -5px rgba(16, 185, 129, 0.25), 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.trip-type-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: var(--gray-100);
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.trip-type-card:hover .trip-type-icon {
    background-color: var(--emerald-100);
    color: var(--emerald-600);
}

.trip-type-card.selected .trip-type-icon {
    background-color: var(--emerald-500);
    color: white;
}

/* VIP Icon Special Styling */
.trip-type-icon.vip-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.trip-type-card:hover .trip-type-icon.vip-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.trip-type-card.selected .trip-type-icon.vip-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: white;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

/* Responsive for 3 cards */
@media (min-width: 768px) {
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.selection-dot {
    display: none;
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    background-color: var(--emerald-500);
    animation: bounce 1s infinite;
}

.trip-type-card.selected .selection-dot {
    display: block;
}

/* Quick FAQ Section - Outside Booking Card */
.quick-faq-section {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(0, 0, 0, 0.05);
    margin-top: 13px;
}

.quick-faq-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.875rem;
}

.quick-faq-title svg {
    color: var(--emerald-500);
}

.quick-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-faq-item {
    background-color: var(--gray-50);
    border-radius: 0.625rem;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.2s ease;
}

.quick-faq-item:hover {
    border-color: var(--emerald-200);
    background-color: var(--emerald-50);
}

.quick-faq-item[open] {
    border-color: var(--emerald-300);
    background-color: white;
}

.quick-faq-question {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    list-style: none;
    transition: color 0.2s ease;
}

.quick-faq-question::-webkit-details-marker {
    display: none;
}

.quick-faq-item:hover .quick-faq-question {
    color: var(--emerald-700);
}

.quick-faq-chevron {
    color: var(--gray-400);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.quick-faq-item:hover .quick-faq-chevron {
    color: var(--emerald-500);
}

.quick-faq-item[open] .quick-faq-chevron {
    transform: rotate(180deg);
    color: var(--emerald-500);
}

.quick-faq-answer {
    padding: 0 1rem 0.875rem 1rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.7;
    border-top: 1px dashed var(--gray-200);
    margin-top: 0;
    padding-top: 0.75rem;
}

/* Feature Cards */
.feature-card {
    padding: 1.5rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* FAQ */
.faq-item {
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-summary {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    color: var(--emerald-500);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-content {
    border-top: 1px solid var(--gray-100);
    background-color: var(--gray-50);
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.625;
}

/* Wizard */
.wizard-card {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.progress-bar-container {
    height: 0.375rem;
    background-color: var(--gray-100);
    width: 100%;
}

.progress-bar {
    height: 100%;
    background-color: var(--emerald-500);
    transition: width 0.5s ease-out;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.wizard-footer {
    background-color: var(--gray-50);
    padding: 1rem;
    text-align: center;
    border-top: 1px solid var(--gray-100);
    font-size: 0.75rem;
    color: var(--gray-400);
}

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-weight: 500;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--emerald-600);
}

/* Step Badges */
.step-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Date Cards */
.date-card {
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    background-color: white;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.date-card:hover {
    border-color: var(--emerald-300);
}

.date-card.selected {
    border-color: var(--emerald-500);
    background-color: var(--emerald-500);
    color: white;
    box-shadow: var(--shadow-md);
}

.return-date-card {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    background-color: white;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.return-date-card:hover {
    border-color: var(--blue-500);
}

.return-date-card.selected {
    border-color: var(--blue-500);
    background-color: var(--blue-500);
    color: white;
    box-shadow: var(--shadow-md);
}

/* =============================================
   Package Cards - Clean Design
   ============================================= */

.packages-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--emerald-400);
    box-shadow: 0 8px 20px -5px rgba(16, 185, 129, 0.15);
}

.package-card.selected {
    border-color: var(--emerald-500);
    box-shadow: 0 8px 25px -5px rgba(16, 185, 129, 0.2);
}

.package-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.package-content {
    padding: 1rem;
}

.package-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.package-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.package-card.selected .package-icon {
    background: var(--emerald-500);
    color: white;
}

.package-info {
    flex: 1;
    min-width: 0;
}

.package-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gray-800);
    margin: 0;
    line-height: 1.3;
}

.package-price-tag {
    text-align: center;
    flex-shrink: 0;
}

.price-value {
    display: block;
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--emerald-600);
    line-height: 1;
}

.price-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 600;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.detail-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.detail-item svg {
    flex-shrink: 0;
    color: var(--gray-400);
}

.detail-bus {
    color: var(--blue-600);
    font-weight: 600;
}

.detail-bus svg {
    color: var(--blue-500);
}

.package-desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--gray-200);
}

.package-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: var(--gray-50);
    color: var(--gray-500);
    font-weight: 700;
    font-size: 0.875rem;
    border-top: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.package-card:hover .package-action {
    background: var(--emerald-500);
    color: white;
}

.package-card.selected .package-action {
    background: var(--emerald-600);
    color: white;
}

/* Responsive - Desktop */
@media (min-width: 768px) {
    .packages-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .package-name {
        font-size: 1.25rem;
    }

    .price-value {
        font-size: 1.75rem;
    }
}

/* Review Card */
.review-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.review-header {
    background-color: var(--emerald-600);
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.review-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.review-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.divider {
    height: 1px;
    background-color: var(--gray-100);
    width: 100%;
}

.edit-btn {
    font-size: 0.75rem;
    color: var(--blue-500);
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
}

.edit-btn:hover {
    text-decoration: underline;
}

.review-tag {
    font-size: 0.75rem;
    background-color: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: var(--gray-600);
}

/* Buttons */
.confirm-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--emerald-600);
    color: white;
    font-weight: 700;
    padding: 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.confirm-btn:hover {
    background-color: var(--emerald-700);
}

.confirm-btn:active {
    transform: scale(0.95);
}

/* Confirmation Page */
.confirmation-card {
    background-color: white;
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    max-width: 32rem;
    width: 100%;
    text-align: center;
}

.confirmation-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--emerald-100);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--emerald-600);
}

.return-btn {
    display: inline-block;
    background-color: var(--emerald-600);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.return-btn:hover {
    background-color: var(--emerald-700);
    transform: translateY(-0.25rem);
}

/* =============================================
   Animations
   ============================================= */

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-fade-in {
    animation: fade-in 0.5s ease-out;
}

.animate-fade-in-up {
    animation: fade-in-up 0.5s ease-out;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* =============================================
   Scrollbar Styling
   ============================================= */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* =============================================
   Responsive Utilities
   ============================================= */

@media (max-width: 767px) {
    .hidden-mobile {
        display: none;
    }

    .booking-card {
        margin-top: -4rem;
    }

    .confirmation-card {
        padding: 1.5rem;
    }
}

/* =============================================
   Hotel Name Display
   ============================================= */

.hotel-info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hotel-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--emerald-600);
    background-color: var(--emerald-50);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.hotel-name.vip {
    color: #b45309;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.arrow-indicator {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #c2a066;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: 1rem;
    box-shadow: var(--shadow-md);
}

/* =============================================
   Hero Message Bubble
   ============================================= */

.hero-message-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border-bottom-right-radius: 4px;
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    text-align: right;
    direction: rtl;
    margin: 0 auto;
}

.hero-message-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--emerald-100);
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sender-info {
    display: flex;
    flex-direction: column;
}

.sender-name {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 0.9rem;
    line-height: 1.2;
}

.message-time {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.hero-message-body {
    color: var(--gray-700);
}

.hero-message-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hero-message-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.hero-message-subtext {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* =============================================
   Hero Swiper Slider
   ============================================= */
.hero-swiper-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.heroSwiper {
    width: 100%;
    padding-bottom: 2rem;
}

.heroSwiper .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heroSwiper .swiper-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-slide-image {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination {
    bottom: 0;
}

.heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--emerald-500);
    width: 24px;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-swiper-container {
        padding: 0 0.5rem;
        margin-top: 1rem;
    }

    .heroSwiper .swiper-slide {
        border-radius: 8px;
    }
}

/* Hero section height adjustment for slider */
.hero {
    min-height: auto;
    padding: 1.5rem 0 2rem 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 2rem 0 3rem 0;
    }
}

/* =============================================
   Trip Info Card - Enhanced Design
   ============================================= */
.trip-info-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
    border-radius: 1.25rem;
    border: 1px solid var(--emerald-200);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.trip-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.trip-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.trip-info-icon-wrapper {
    width: 3.25rem;
    height: 3.25rem;
    min-width: 3.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald-500) 0%, var(--emerald-600) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    }

    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
    }
}

.trip-info-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.trip-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--emerald-600);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.trip-info-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--emerald-800);
    margin: 0;
    line-height: 1.3;
}

.trip-info-days {
    padding: 1rem 1.5rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trip-info-days-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
}

.trip-info-days-label svg {
    color: var(--emerald-500);
}

.trip-info-days-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trip-day-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, white 0%, #f0fdf4 100%);
    border: 1.5px solid var(--emerald-300);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--emerald-700);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.12);
    transition: all 0.2s ease;
}

.trip-day-badge:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: var(--emerald-400);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

/* Responsive adjustments for trip info card */
@media (max-width: 480px) {
    .trip-info-header {
        padding: 1rem 1.25rem;
        gap: 0.875rem;
    }

    .trip-info-icon-wrapper {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 2.75rem;
    }

    .trip-info-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .trip-info-title {
        font-size: 1.125rem;
    }

    .trip-info-days {
        padding: 0.875rem 1.25rem 1rem 1.25rem;
    }

    .trip-day-badge {
        padding: 0.4rem 0.875rem;
        font-size: 0.8125rem;
    }
}

/* Trip Info Details - Departure Time & Location */
.trip-info-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0 1.5rem 1.25rem 1.5rem;
    border-top: 1px dashed rgba(16, 185, 129, 0.2);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.trip-info-detail-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--emerald-200);
    flex: 1;
    min-width: 140px;
}

.trip-detail-icon {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 50%;
    background: var(--emerald-100);
    color: var(--emerald-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trip-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trip-detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.trip-detail-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--emerald-800);
}

@media (max-width: 480px) {
    .trip-info-details {
        padding: 0 1.25rem 1rem 1.25rem;

    }

    .trip-info-detail-item {
        padding: 0.5rem 0.875rem;
    }

    .trip-detail-icon {
        width: 1.75rem;
        height: 1.75rem;
        min-width: 1.75rem;
    }

    .trip-detail-value {
        font-size: 0.8125rem;
    }
}

/* =============================================
   Hotel Info Card - Collapsible (Gold Theme #c2a066)
   ============================================= */
.hotel-info-card {
    background: linear-gradient(135deg, #faf6ef 0%, #f5edd9 50%, #ebe0c7 100%);
    border-radius: 1.25rem;
    border: 1px solid #c2a066;
    box-shadow: 0 4px 20px rgba(194, 160, 102, 0.2), 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.hotel-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(194, 160, 102, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hotel-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background 0.2s ease;
    list-style: none;
    user-select: none;
}

.hotel-info-header::-webkit-details-marker {
    display: none;
}

.hotel-info-header:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hotel-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hotel-info-icon-wrapper {
    width: 3.25rem;
    height: 3.25rem;
    min-width: 3.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #c2a066 0%, #a88a4e 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(194, 160, 102, 0.4);
}

.hotel-info-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hotel-info-hint {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hotel-info-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #8b6914;
    margin: 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-chevron {
    color: #c2a066;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hotel-info-card[open] .hotel-chevron {
    transform: rotate(180deg);
}

.hotel-info-content {
    border-top: 1px solid rgba(194, 160, 102, 0.25);
    background: rgba(255, 255, 255, 0.4);
}

.hotel-stars-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.hotel-info-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
}

.hotel-detail-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(194, 160, 102, 0.4);
    flex: 1;
    min-width: 140px;
}

.hotel-detail-icon {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 50%;
    background: rgba(194, 160, 102, 0.2);
    color: #8b6914;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hotel-detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.hotel-detail-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #8b6914;
}

.hotel-image-section {
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.hotel-preview-image {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(194, 160, 102, 0.3);
    transition: transform 0.3s ease;
}

.hotel-preview-image:hover {
    transform: scale(1.02);
}

/* Responsive adjustments for hotel info card */
@media (max-width: 480px) {
    .hotel-info-header {
        padding: 8px;
        gap: 0.875rem;
    }

    .hotel-info-icon-wrapper {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 2.75rem;
    }

    .hotel-info-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .hotel-info-name {
        font-size: 1.125rem;
    }

    .hotel-info-details {
        padding: 0.875rem 1.25rem 1rem 1.25rem;
        flex-direction: column;
    }

    .hotel-detail-item {
        padding: 0.5rem 0.875rem;
    }

    .hotel-image-section {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .hotel-preview-image {
        height: 8rem;
    }
}

.hotel-info-value .stars-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.hotel-image-wrapper {
    margin-top: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hotel-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hotel-image:hover {
    transform: scale(1.02);
}

/* Responsive adjustments for hotel details card */
@media (max-width: 480px) {
    .hotel-details-summary {
        padding: 0.875rem 1rem;
    }

    .hotel-details-icon {
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
    }

    .hotel-details-name {
        font-size: 0.875rem;
    }

    .hotel-details-content {
        padding: 0 1rem 1rem 1rem;
    }

    .hotel-info-item {
        padding: 0.625rem 0.875rem;
    }

    .hotel-image {
        height: 10rem;
    }
}

/* =============================================
   Bus Info Card - Collapsible (Blue Theme #3b82f6)
   ============================================= */
.bus-info-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    border-radius: 1.25rem;
    border: 1px solid #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2), 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.bus-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.bus-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background 0.2s ease;
    list-style: none;
    user-select: none;
}

.bus-info-header::-webkit-details-marker {
    display: none;
}

.bus-info-header:hover {
    background: rgba(255, 255, 255, 0.7);
}

.bus-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bus-info-icon-wrapper {
    width: 3.25rem;
    height: 3.25rem;
    min-width: 3.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.bus-info-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.bus-info-hint {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.bus-info-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e40af;
    margin: 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bus-chevron {
    color: #3b82f6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.bus-info-card[open] .bus-chevron {
    transform: rotate(180deg);
}

.bus-info-content {
    border-top: 1px solid rgba(59, 130, 246, 0.25);
    background: rgba(255, 255, 255, 0.4);
    padding: 1rem 1.5rem 1.25rem 1.5rem;
}

.bus-description {
    font-size: 0.9rem;
    color: #1e40af;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.bus-gallery {
    padding-top: 0.5rem;
}

.bus-gallery-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 0.75rem 0;
}

.bus-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

.bus-gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.bus-gallery-item:hover {
    transform: scale(1.03);
    border-color: #3b82f6;
}

.bus-gallery-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* Responsive adjustments for bus info card */
@media (max-width: 480px) {
    .bus-info-header {
        padding: 8px;
        gap: 0.875rem;
    }

    .bus-info-icon-wrapper {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 2.75rem;
    }

    .bus-info-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .bus-info-name {
        font-size: 1.125rem;
    }

    .bus-info-content {
        padding: 0.875rem 1.25rem 1rem 1.25rem;
    }

    .bus-gallery-item img {
        height: 60px;
    }
}

/* Hotel Gallery Styles */
.hotel-gallery {
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.hotel-gallery-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #8b6914;
    margin: 0 0 0.75rem 0;
}

.hotel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

.hotel-gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 2px solid rgba(194, 160, 102, 0.3);
}

.hotel-gallery-item:hover {
    transform: scale(1.03);
    border-color: #c2a066;
}

.hotel-gallery-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.gallery-main-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: #c2a066;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

/* =============================================
   Customer Reviews Section - قسم آراء العملاء
   ============================================= */

.reviews-section {
    background: linear-gradient(135deg, #fef9e7 0%, #fff9f0 50%, #fef6e3 100%);
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(194, 160, 102, 0.2);
    box-shadow: 0 4px 20px rgba(194, 160, 102, 0.1);
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.reviews-header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c2a066 0%, #8b6914 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(194, 160, 102, 0.3);
}

.reviews-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card-home {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.review-card-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--emerald-400) 0%, var(--emerald-600) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0 0 0.125rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.review-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
}

.review-stars .star {
    font-size: 1rem;
    color: var(--gray-300);
    transition: color 0.2s ease;
}

.review-stars .star.filled {
    color: #fbbf24;
}

.review-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.reviews-disclaimer {
    font-size: 15Px;
    color: #ffffff;
    text-align: center;
    margin: 0 0 1.25rem 0;
    padding: 0.75rem 1rem;
    background: rgb(64 165 124);
    border-radius: 0.75rem;
    line-height: 1.7;
}

/* =============================================
   Hero Title Above Slider
   ============================================= */
.hero-title-container {
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-main-title:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--emerald-400) 0%, var(--emerald-600) 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-title-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.6),
            0 0 30px rgba(16, 185, 129, 0.3);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        padding: 0.75rem 1.25rem;
        gap: 0.5rem;
    }

    .hero-title-icon {
        width: 36px;
        height: 36px;
    }

    .hero-title-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-title-text {
        font-size: 1.125rem;
    }
}

/* About Platform Collapsible Box */
.about-platform-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid var(--emerald-200);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.about-platform-box:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.about-platform-box[open] {
    border-color: var(--emerald-400);
}

.about-platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background-color 0.2s ease;
}

.about-platform-header::-webkit-details-marker {
    display: none;
}

.about-platform-header:hover {
    background-color: rgba(16, 185, 129, 0.08);
}

.about-platform-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--emerald-700);
}

.about-platform-title svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

.about-platform-chevron {
    color: var(--emerald-600);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.about-platform-box[open] .about-platform-chevron {
    transform: rotate(180deg);
}

.about-platform-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    animation: slideDown 0.3s ease forwards;
}

.about-platform-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.8;
    text-align: justify;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-platform-header {
        padding: 0.875rem 1rem;
    }

    .about-platform-title {
        font-size: 0.9375rem;
        gap: 0.5rem;
    }

    .about-platform-title svg {
        width: 18px;
        height: 18px;
    }

    .about-platform-chevron {
        width: 18px;
        height: 18px;
    }

    .about-platform-content {
        padding: 0 1rem 1rem 1rem;
    }

    .about-platform-content p {
        font-size: 0.875rem;
        line-height: 1.75;
    }
}

/* Booking Guide Steps */
.booking-guide-box {
    background: linear-gradient(135deg, #faf8f3 0%, #f5efe3 100%);
    border-color: #d4c4a8;
}

.booking-guide-box:hover {
    box-shadow: 0 4px 12px rgba(151, 128, 75, 0.15);
}

.booking-guide-box[open] {
    border-color: #97804b;
}

.booking-guide-box .about-platform-title {
    color: #7a6639;
}

.booking-guide-box .about-platform-title svg,
.booking-guide-box .about-platform-chevron {
    color: #97804b;
}

.booking-guide-box .about-platform-header:hover {
    background-color: rgba(151, 128, 75, 0.08);
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.booking-step:hover {
    border-color: #97804b;
    box-shadow: 0 2px 8px rgba(151, 128, 75, 0.1);
}

.step-number-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #97804b 0%, #7a6639 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(151, 128, 75, 0.3);
}

.step-info {
    flex: 1;
}

.step-info h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.step-info p {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .booking-step {
        padding: 0.625rem;
        gap: 0.75rem;
    }

    .step-number-circle {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.875rem;
    }

    .step-info h4 {
        font-size: 0.875rem;
    }

    .step-info p {
        font-size: 0.75rem;
    }
}

/* WhatsApp Contact Button on Success Page */
.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Ensure date cards use Cairo font */
.date-card,
.return-date-card {
    font-family: 'Cairo', sans-serif;
}