
        :root {
            --color-bg: #ffffff;
            --color-bg-secondary: #f8f9fa;
            --color-primary: #C29603ff;
            --color-primary-dark: #A37C02;
            --color-text: #374151;
            --color-text-secondary: #6b7280;
            --color-border: #e5e7eb;
            --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
        }

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

        body {
            font-family: 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* الهيدر */
        .header {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 1px solid var(--color-border);
        }

        .header-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background-color: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            margin-bottom: 24px;
        }

        .header-icon svg {
            width: 40px;
            height: 40px;
            color: var(--color-primary);
        }

        .header h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color: #1f2937;
            line-height: 1.2;
        }

        .header p {
            font-size: 20px;
            color: var(--color-text-secondary);
            max-width: 800px;
            margin: 0 auto 40px;
        }

        /* بطاقات الميزات */
        .features {
            padding: 80px 0;
            background-color: var(--color-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 80px;
        }

        .feature-card {
            background-color: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary);
        }

        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-bottom: 24px;
        }

        .feature-icon.blue {
            background-color: rgba(59, 130, 246, 0.1);
        }

        .feature-icon.green {
            background-color: rgba(16, 185, 129, 0.1);
        }

        .feature-icon.purple {
            background-color: rgba(168, 85, 247, 0.1);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
        }

        .feature-icon.blue svg {
            color: #3b82f6;
        }

        .feature-icon.green svg {
            color: var(--color-primary);
        }

        .feature-icon.purple svg {
            color: #a855f7;
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1f2937;
        }

        .feature-card p {
            color: var(--color-text-secondary);
            font-size: 16px;
        }

        /* معرض الصور */
        .gallery {
            padding: 0 0 80px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 280px;
            box-shadow: var(--shadow-card);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* بطاقة اختيار الموقع */
        .location-card {
            background-color: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 48px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: var(--shadow-lg);
        }

        html[lang="en"] .location-card,
        html[dir="ltr"] .location-card {
            text-align: left;
            direction: ltr;
        }

        html[lang="ar"] .location-card,
        html[dir="rtl"] .location-card {
            text-align: right;
        }

        .location-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .location-header h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1f2937;
        }

        .location-header p {
            color: var(--color-text-secondary);
            font-size: 18px;
        }

        .form-group {
            margin-bottom: 32px;
        }

        .form-group label {
            display: block;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--color-text);
        }

        .radio-group {
            display: grid;
            gap: 16px;
        }

        .radio-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px;
            border: 2px solid var(--color-border);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s;
            background-color: var(--color-bg);
        }

        .radio-item.syria {
            border-color: rgba(16, 185, 129, 0.3);
            background-color: rgba(16, 185, 129, 0.05);
        }

        .radio-item:hover {
            border-color: var(--color-primary);
        }

        .radio-item.selected {
            border-color: var(--color-primary);
            background-color: rgba(16, 185, 129, 0.05);
        }

        .radio-input {
            width: 20px;
            height: 20px;
            border: 2px solid var(--color-border);
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
        }

        .radio-item.selected .radio-input {
            border-color: var(--color-primary);
        }

        .radio-item.selected .radio-input::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            background-color: var(--color-primary);
            border-radius: 50%;
        }

        .radio-label {
            font-size: 18px;
            font-weight: 600;
            flex: 1;
        }

        .radio-label-arabic {
            display: block;
            font-size: 14px;
            color: var(--color-text-secondary);
            margin-top: 4px;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
        }

        .start-button {
            display: block;
            width: 100%;
            padding: 20px;
            background-color: var(--color-primary);
            color: white;
            border: none;
            border-radius: var(--radius-md);
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .start-button:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
        }

        .start-button:active {
            transform: translateY(0);
        }

        .terms-note {
            text-align: center;
            margin-top: 24px;
            font-size: 14px;
            color: var(--color-text-secondary);
        }

        /* إحصائيات الثقة */
        .stats {
            padding: 80px 0;
            text-align: center;
            background-color: var(--color-bg-secondary);
            border-radius: var(--radius-lg);
            margin-top: 80px;
        }

        .stats h3 {
            font-size: 20px;
            color: var(--color-text-secondary);
            margin-bottom: 40px;
            font-weight: 600;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--color-primary);
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-label {
            font-size: 16px;
            color: var(--color-text-secondary);
        }

        /* الفوتر */
        .footer {
            padding: 60px 0 40px;
            border-top: 1px solid var(--color-border);
            margin-top: 80px;
            text-align: center;
            color: var(--color-text-secondary);
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--color-primary);
            margin-bottom: 24px;
        }

        .footer p {
            max-width: 600px;
            margin: 0 auto;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .header h1 {
                font-size: 40px;
            }

            .header p {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 60px 0 40px;
            }

            .header h1 {
                font-size: 32px;
            }

            .header p {
                font-size: 16px;
            }

            .features {
                padding: 60px 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .feature-card {
                padding: 32px 24px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .location-card {
                padding: 32px 24px;
            }

            .location-header h2 {
                font-size: 28px;
            }

            .stats {
                padding: 60px 20px;
            }

            .stat-number {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 28px;
            }

            .header-icon {
                width: 60px;
                height: 60px;
            }

            .header-icon svg {
                width: 30px;
                height: 30px;
            }

            .radio-item {
                padding: 20px;
            }

            .radio-label {
                font-size: 16px;
            }
        }

        [data-theme="dark"] {
            --color-bg: #0f172a;
            --color-bg-secondary: #1e293b;
            --color-primary: #C29603ff;
            --color-primary-dark: #A37C02;
            --color-text: #C29603ff;
            --color-text-secondary: #94a3b8;
            --color-border: #334155;
            --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);

            /* Dark mode specific variables */
            --background: #0f172a;
            --foreground: #f8fafc;
            --card: #1e293b;
            --card-foreground: #f8fafc;
            --muted: #475569;
            --muted-foreground: #94a3b8;
            --accent: #334155;
            --accent-foreground: #f8fafc;
            --input-background: #1e293b;
        }

        [data-theme="dark"] .header {
            background: linear-gradient(135deg,
                rgba(15, 23, 42, 0.9) 0%,
                rgba(30, 41, 59, 0.9) 100%);
        }

        [data-theme="dark"] .header h1 {
            color: #C29603ff;
        }

        [data-theme="dark"] .location-header h2 {
            color: #C29603ff;
        }

        [data-theme="dark"] .feature-card h3 {
            color: #C29603ff;
        }

        [lang="ar"] #mainSlider,
        [dir="rtl"] #mainSlider {
            direction: ltr !important;
        }

        [lang="ar"] .slider-wrapper,
        [dir="rtl"] .slider-wrapper {
            direction: ltr !important;
        }

        .slider-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .slider-slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            position: relative;
        }

        [lang="ar"] .slider-prev,
        [dir="rtl"] .slider-prev {
            right: 1rem !important;
            left: auto !important;
        }

        [lang="ar"] .slider-next,
        [dir="rtl"] .slider-next {
            left: 1rem !important;
            right: auto !important;
        }

    #galleryModal {
        backdrop-filter: blur(10px);
    }

    #modalThumbnails {
        scrollbar-width: thin;
        scrollbar-color: #fbbf24 #1f2937;
    }

    #modalThumbnails::-webkit-scrollbar {
        height: 6px;
    }

    #modalThumbnails::-webkit-scrollbar-track {
        background: #1f2937;
        border-radius: 3px;
    }

    #modalThumbnails::-webkit-scrollbar-thumb {
        background: #fbbf24;
        border-radius: 3px;
    }

    .slider-image:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
        #modalMainImage {
            max-height: 50vh;
        }

        .slider-image {
            cursor: pointer !important;
        }
    }


    /* Booking Style Location Card - UPDATED */
    .booking-style-location-card {
        background: var(--color-bg);
        border-radius: 12px;
        padding: 32px;
        margin: 40px auto;
        max-width: 900px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--color-border);
    }

    .booking-style-searchbox {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
        position: relative;
    }

    @media (min-width: 768px) {
        .booking-style-searchbox {
            grid-template-columns: 1fr 2fr auto;
            align-items: end;
        }
    }

    .booking-field-group {
        position: relative;
        z-index: 10;
    }

    .booking-input-wrapper {
        display: flex;
        align-items: center;
        padding: 16px;
        border: 2px solid var(--color-border);
        border-radius: 8px;
        background: var(--color-bg);
        cursor: pointer;
        transition: all 0.2s ease;
        min-height: 64px;
        position: relative;
        z-index: 5;
    }

    .booking-input-wrapper:hover {
        border-color: var(--color-primary);
        box-shadow: 0 2px 8px rgba(194, 150, 3, 0.1);
    }

    .booking-input-wrapper.selected {
        border-color: var(--color-primary);
        background: rgba(194, 150, 3, 0.05);
    }

    .booking-input-icon {
        margin-right: 12px;
        color: var(--color-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 24px;
    }

    [dir="rtl"] .booking-input-icon {
        margin-right: 0;
        margin-left: 12px;
    }

    .booking-input-content {
        flex: 1;
    }

    .booking-input-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--color-text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }

    .booking-input-value {
        font-size: 16px;
        font-weight: 500;
        color: var(--color-text);
        min-height: 24px;
    }

    .booking-input-value.selected {
        color: var(--color-primary);
        font-weight: 600;
    }

    .booking-input-arrow {
        color: var(--color-text-secondary);
        transition: transform 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
    }

    [dir="rtl"] .booking-input-arrow {
        margin-left: 0;
        margin-right: 8px;
    }

    .booking-input-wrapper.active .booking-input-arrow {
        transform: rotate(180deg);
    }

    /* Cities Dropdown - FIXED */
    .booking-dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 4px); /* تحسين المسافة */
        left: 0;
        right: 0;
        background: var(--color-bg);
        border: 1px solid var(--color-border);
        border-radius: 8px;
        max-height: 320px;
        overflow-y: auto;
        z-index: 1001; /* زيادة قيمة الـ z-index */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        margin-top: 0; /* إزالة الـ margin */
    }

    .booking-dropdown.show {
        display: block;
        animation: dropdownFadeIn 0.2s ease-out;
    }

    @keyframes dropdownFadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .cities-grid-dropdown {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 8px;
        padding: 16px;
    }

    .booking-dropdown-item {
        padding: 12px 16px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s;
        border: 1px solid transparent;
        background: var(--color-bg);
    }

    .booking-dropdown-item:hover {
        background: rgba(194, 150, 3, 0.1);
        border-color: var(--color-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .booking-dropdown-item.selected {
        background: rgba(194, 150, 3, 0.15);
        border-color: var(--color-primary);
        font-weight: 600;
    }

    .city-name-main {
        font-weight: 500;
        color: var(--color-text);
        margin-bottom: 2px;
        font-size: 14px;
    }

    .city-name-arabic {
        font-size: 12px;
        color: var(--color-text-secondary);
    }

    /* Search Button */
    .booking-submit-group {
        display: flex;
        align-items: end;
    }

    .booking-search-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        height: 64px;
        padding: 0 24px;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
    }

    .booking-search-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(194, 150, 3, 0.3);
    }

    .booking-search-button:active {
        transform: translateY(0);
    }

    .button-icon {
        display: flex;
        align-items: center;
    }

    .terms-note {
        text-align: center;
        font-size: 12px;
        color: var(--color-text-secondary);
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--color-border);
    }

    /* Dark Mode Adjustments */
    [data-theme="dark"] .booking-style-location-card {
        background: var(--color-bg-secondary);
        border-color: var(--color-border);
    }

    [data-theme="dark"] .booking-input-wrapper {
        background: var(--color-bg);
        border-color: var(--color-border);
    }

    [data-theme="dark"] .booking-dropdown {
        background: var(--color-bg-secondary);
        border-color: var(--color-border);
    }

    [data-theme="dark"] .booking-dropdown-item {
        background: var(--color-bg-secondary);
    }

    [data-theme="dark"] .booking-dropdown-item:hover {
        background: rgba(194, 150, 3, 0.2);
    }

    /* Responsive */
    @media (max-width: 767px) {
        .booking-style-location-card {
            padding: 20px;
            margin: 20px auto;
        }

        .booking-search-button {
            height: 56px;
            font-size: 15px;
        }

        .cities-grid-dropdown {
            grid-template-columns: 1fr;
        }

        .booking-input-wrapper {
            min-height: 56px;
            padding: 12px;
        }
    }

    .booking-dropdown::-webkit-scrollbar {
        width: 6px;
    }

    .booking-dropdown::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .booking-dropdown::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 3px;
    }

    [data-theme="dark"] .booking-dropdown::-webkit-scrollbar-track {
        background: #2d3748;
    }

    [data-theme="dark"] .booking-dropdown::-webkit-scrollbar-thumb {
        background: var(--color-primary);
    }

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

    .animate-spin {
        animation: spin 1s linear infinite;
    }

    .booking-dropdown-item {
        transition: all 0.2s ease;
    }

    .booking-input-wrapper {
        transition: all 0.2s ease;
    }

    .error-border {
        border-color: #ef4444 !important;
        box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
        animation: shake 0.5s ease;
    }

    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }

    .booking-field-group:has(.booking-dropdown.show) {
        z-index: 1002;
    }

    .booking-dropdown-item.selected:hover {
        background: rgba(194, 150, 3, 0.25);
    }

    /* تأثيرات الظهور التدريجي */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.6s ease forwards;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* تأخيرات مخصصة للعناصر المختلفة */
    .delay-1 { animation-delay: 0.3s; }
    .delay-2 { animation-delay: 0.5s; }
    .delay-3 { animation-delay: 0.7s; }
    .delay-4 { animation-delay: 0.9s; }
    .delay-5 { animation-delay: 0.99s; }

    .site-logo {
        position: fixed;
        top: 20px;
        z-index: 1000;
    }

    .theme-switcher-container {
        position: fixed;
        top: 20px;
        z-index: 1000;
    }

    html[lang="ar"] .site-logo {
        left: 10px;
        right: auto;
    }

    html[lang="ar"] .theme-switcher-container {
        left: 85px;
        right: auto;
    }

    html[lang="en"] .site-logo {
        right: 10px;
        left: auto;
    }

    html[lang="en"] .theme-switcher-container {
        right: 85px;
        left: auto;
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        html[lang="ar"] .site-logo {
            left: 15px;
        }
        html[lang="ar"] .theme-switcher-container {
            left: 70px;
            top: 15px;
        }
        html[lang="en"] .site-logo {
            right: 15px;
        }
        html[lang="en"] .theme-switcher-container {
            right: 70px;
            top: 15px;
        }
        .site-logo img {
            height: 32px;
        }
    }

    @media (max-width: 767px) {
        .site-logo {
            display: block !important;
            top: 10px;
        }
        html[lang="ar"] .site-logo {
            left: 30px;
            right: auto;
        }
        html[lang="en"] .site-logo {
            right: 30px;
            left: auto;
        }
        .site-logo img {
            height: 32px;
        }
    }

    
