/* ============================================
   نخبة الماجد ترافل - الأنماط الرئيسية
   Nokhbat Al Majed Travel - Main Stylesheet
   الإصدار: 3.0 - متكامل بالكامل
   ============================================ */

/* ========== المتغيرات والإطارات العامة ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: #001219;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

:root {
    --primary: #0a9396;
    --primary-dark: #005f73;
    --primary-light: #94d2bd;
    --primary-glow: rgba(10, 147, 150, 0.5);
    --gold: #ffd700;
    --gold-dark: #e6be00;
    --dark-bg: #001219;
    --dark-card: rgba(0, 56, 69, 0.95);
    --dark-card-hover: rgba(0, 70, 85, 0.98);
    --male: #2196f3;
    --female: #e91e63;
    --success: #00e676;
    --warning: #ffc107;
    --danger: #ff5252;
    --gray: #6c757d;
    --text-light: #e9ecef;
    --text-muted: #adb5bd;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px var(--primary-glow);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 32px;
}

/* ========== الخلفيات المتحركة ========== */
.bg-luxury {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 30%, rgba(10, 147, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        linear-gradient(145deg, #001219 0%, #002a35 50%, #001219 100%);
}

.grid-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(10, 147, 150, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 147, 150, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-50px) rotate(0.5deg); }
}

.floating-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatShape 20s ease-in-out infinite;
    pointer-events: none;
}

.floating-shape:first-of-type {
    width: 400px;
    height: 400px;
    background: rgba(10, 147, 150, 0.08);
    top: -100px;
    left: -100px;
}

.floating-shape:last-of-type {
    width: 500px;
    height: 500px;
    background: rgba(255, 215, 0, 0.05);
    bottom: -150px;
    right: -150px;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.bubbles span {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 147, 150, 0.3), transparent);
    animation: bubbleFloat 15s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* ========== الحاوية الرئيسية ========== */
.app-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* ========== شريط اللغة ========== */
.language-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(10, 147, 150, 0.3);
    flex-wrap: wrap;
}

.lang-btn {
    padding: 6px 20px;
    border-radius: 30px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary);
    color: var(--dark-bg);
    border-color: var(--primary);
}

.admin-link {
    padding: 6px 20px;
    border-radius: 30px;
    background: var(--gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    margin-right: 15px;
}

.admin-link:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* ========== نظام الصفحات ========== */
.page {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== صفحة البداية ========== */
#startPage {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.hero .logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: white;
    box-shadow: var(--shadow-glow);
    animation: pulseLogo 3s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(10, 147, 150, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(10, 147, 150, 0.5); }
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero button {
    display: inline-block;
    padding: 16px 50px;
    font-size: 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    box-shadow: 0 0 25px var(--primary-glow);
    transition: var(--transition);
    cursor: pointer;
    font-weight: 700;
}

.hero button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px var(--primary-glow);
}

/* ========== الهيدر الداخلي ========== */
.inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    margin-bottom: 30px;
    border: 1px solid rgba(10, 147, 150, 0.2);
    flex-wrap: wrap;
    gap: 15px;
}

.logo-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.inner-header h2 {
    color: var(--primary);
    font-size: 24px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--dark-bg);
}

/* ========== شريط التقدم ========== */
.progress-track {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    overflow-x: auto;
    gap: 5px;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    opacity: 0.5;
    cursor: pointer;
}

.step-node.active {
    opacity: 1;
}

.step-node.completed {
    opacity: 0.8;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px;
}

.step-node.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark-bg);
    box-shadow: var(--shadow-glow);
}

.step-node.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: var(--dark-bg);
}

.step-label {
    font-size: 11px;
    text-align: center;
}

/* ========== بطاقات الخدمات ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.service-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 147, 150, 0.3);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.2), rgba(0, 95, 115, 0.1));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    border: 1px solid rgba(10, 147, 150, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-arrow {
    color: var(--primary);
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
    display: inline-block;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========== أقسام الشرائح (كاروسيل) ========== */
.section-title {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--gold);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--gold), transparent);
    margin: 10px auto 0;
}

.slider-container {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.slider-item {
    flex: 0 0 calc(25% - 15px);
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(10, 147, 150, 0.2);
}

.slider-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.slider-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.slider-content {
    padding: 15px;
}

.slider-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.slider-badge.visa { background: #2196f3; }
.slider-badge.bus { background: #4caf50; }
.slider-badge.car { background: #ff9800; }
.slider-badge.hotel { background: #e91e63; }

.slider-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.slider-rating {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 8px;
}

.slider-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.slider-old-price {
    text-decoration: line-through;
    color: var(--danger);
    font-size: 12px;
}

.slider-current-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
}

.slider-desc {
    color: var(--text-muted);
    font-size: 12px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.slider-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* ========== لماذا نحن؟ ========== */
.why-us-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.why-us-card {
    background: var(--dark-card);
    border: 1px solid rgba(10, 147, 150, 0.2);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.why-us-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-light);
}

.why-us-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== الضمانات ========== */
.guarantee-box {
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.1), rgba(0, 95, 115, 0.05));
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.guarantee-box h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.guarantee-box h4 i {
    margin-left: 10px;
}

.guarantee-box p {
    margin-bottom: 10px;
}

.guarantee-box p i {
    margin-left: 8px;
    color: var(--success);
}

/* ========== فرصة عمل ========== */
.form-panel {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 147, 150, 0.3);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 25px;
}

.form-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(10, 147, 150, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ========== معلومات التواصل ========== */
.company-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 50px 0;
}

.info-panel {
    background: var(--dark-card);
    border: 1px solid rgba(10, 147, 150, 0.3);
    border-radius: var(--radius);
    padding: 30px;
}

.info-panel h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list i {
    color: var(--success);
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary);
    width: 25px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 1px solid rgba(10, 147, 150, 0.2);
}

.social-link:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
}

/* ========== النماذج ========== */
.input-group {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.required-star {
    color: var(--danger);
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(10, 147, 150, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 15px;
    transition: var(--transition);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
}

textarea.input-field {
    resize: vertical;
    min-height: 80px;
}

/* ========== رفع الملفات ========== */
.upload-zone {
    background: rgba(0, 0, 0, 0.2);
    border: 2px dashed rgba(10, 147, 150, 0.4);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition);
}

.upload-zone:hover {
    border-color: var(--primary);
    background: rgba(10, 147, 150, 0.05);
}

.upload-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 10px;
}

.upload-zone h5 {
    margin-bottom: 5px;
}

.upload-zone p {
    font-size: 12px;
    color: var(--text-muted);
}

.file-preview {
    background: rgba(10, 147, 150, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-top: 15px;
    display: none;
    align-items: center;
    gap: 10px;
}

.file-preview.active {
    display: flex;
}

/* ========== الأزرار ========== */
.action-bar {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark-bg);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* ========== بطاقات الخيارات ========== */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.option-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(10, 147, 150, 0.2);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.option-card:hover,
.option-card.active {
    border-color: var(--primary);
    background: rgba(10, 147, 150, 0.1);
    transform: translateY(-5px);
}

.option-icon {
    font-size: 42px;
    margin-bottom: 10px;
    display: block;
}

/* ========== مقاعد الباص ========== */
.bus-card {
    width: 300px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    color: #000;
}

.bus-logo {
    width: 90px;
    margin-bottom: 6px;
}

.bus-brand .ar {
    font-size: 20px;
    font-weight: bold;
    color: #0d47a1;
}

.bus-brand .en {
    font-size: 12px;
    color: #607d8b;
}

.bus-driver {
    font-size: 26px;
    margin: 6px 0 10px;
}

.bus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 22px 1fr;
    gap: 8px;
    direction: ltr;
}

.bus-aisle {
    width: 22px;
}

.bus-seat {
    position: relative;
    width: 42px;
    height: 36px;
    border-radius: 8px 8px 6px 6px;
    border: 2px solid #cfd8dc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    background: #fff;
}

.bus-seat::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 8px;
    border-radius: 6px 6px 0 0;
    background: inherit;
    border: 2px solid #cfd8dc;
    border-bottom: none;
}

.bus-seat.male {
    background: #1e88e5;
    color: #fff;
}

.bus-seat.female {
    background: #e91e63;
    color: #fff;
}

.bus-seat.selected {
    background: #ffd700;
    color: #000;
}

.bus-seat.unavailable {
    background: #b0bec5;
    cursor: not-allowed;
}

/* ========== مقاعد السيارة ========== */
.car-layout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

.car-body-new {
    width: 380px;
    height: 720px;
    background: #e5e7eb;
    border-radius: 140px 140px 60px 60px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25), inset 0 0 0 10px #cfd4da;
    padding-top: 40px;
}

.car-mirror {
    position: absolute;
    width: 26px;
    height: 60px;
    background: #cfd4da;
    top: 180px;
    border-radius: 10px;
}

.car-mirror.left {
    left: -22px;
}

.car-mirror.right {
    right: -22px;
}

.car-windshield {
    width: 85%;
    height: 90px;
    background: linear-gradient(180deg, #1f2937, #111827);
    margin: 0 auto 20px;
    border-radius: 60px;
}

.car-rear-glass {
    width: 70%;
    height: 70px;
    background: linear-gradient(180deg, #1f2937, #111827);
    margin: 30px auto 0;
    border-radius: 40px;
}

.car-steering {
    position: absolute;
    top: 120px;
    right: 60px;
    width: 40px;
    height: 40px;
    border: 5px solid #111;
    border-radius: 50%;
}

.seat-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.car-seat-new {
    width: 60px;
    height: 78px;
    background: linear-gradient(180deg, #d39a5f, #b7793a);
    border-radius: 18px;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.car-seat-new::before {
    content: "";
    position: absolute;
    top: -10px;
    width: 70%;
    height: 14px;
    background: #9a602f;
    border-radius: 6px;
}

.car-seat-new.driver {
    background: linear-gradient(180deg, #b91c1c, #7f1d1d);
    color: #fff;
    cursor: not-allowed;
}

.car-seat-new.selected {
    background: linear-gradient(180deg, #22c55e, #16a34a);
    color: #fff;
    transform: scale(1.05);
}

.car-seat-new.booked {
    background: #444;
    color: #888;
    cursor: not-allowed;
}

.car-seat-new.male {
    background: linear-gradient(180deg, var(--male), #1565c0);
    color: #fff;
}

.car-seat-new.female {
    background: linear-gradient(180deg, var(--female), #ad1457);
    color: #fff;
}

.gender-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.gender-btn-new {
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gender-btn-new.male {
    border-color: var(--male);
    color: var(--male);
}

.gender-btn-new.male.active {
    background: var(--male);
    color: #fff;
}

.gender-btn-new.female {
    border-color: var(--female);
    color: var(--female);
}

.gender-btn-new.female.active {
    background: var(--female);
    color: #fff;
}

.gender-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gender-btn.male {
    border-color: var(--male);
    color: var(--male);
}

.gender-btn.male.active {
    background: var(--male);
    color: #fff;
}

.gender-btn.female {
    border-color: var(--female);
    color: var(--female);
}

.gender-btn.female.active {
    background: var(--female);
    color: #fff;
}

.plate-selector select {
    padding: 12px 25px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* ========== بطاقات الرحلات ========== */
.trips-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.trip-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(10, 147, 150, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.trip-card:hover,
.trip-card.active {
    border-color: var(--primary);
    background: rgba(10, 147, 150, 0.1);
    transform: translateY(-3px);
}

.trip-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trip-company-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.trip-company-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.trip-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.trip-city {
    text-align: center;
}

.trip-city-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.trip-city-time {
    font-size: 14px;
    color: var(--gold);
}

.trip-arrow {
    color: var(--gold);
    font-size: 20px;
}

.trip-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.trip-detail-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.trip-detail-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.trip-detail-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.trip-price {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 10px;
}

/* ========== مخطط المقاعد ========== */
.seats-container {
    margin: 20px 0;
}

.seats-legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 40px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 4px;
}

.legend-color.available { background: #4caf50; }
.legend-color.temporary { background: #ffc107; }
.legend-color.confirmed { background: #f44336; }
.legend-color.unavailable { background: #9e9e9e; }

.info-box {
    background: rgba(10, 147, 150, 0.1);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 20px;
}

.summary-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
    line-height: 2;
}

.summary-card div {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-card div:last-child {
    border-bottom: none;
}

.summary-card strong {
    color: var(--gold);
}

.timer-warning {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold);
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin: 15px 0;
}

.timer-warning i {
    color: var(--gold);
    margin-left: 8px;
}

#countdownTimer {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
}

/* ========== قوائم التأشيرات ========== */
.visa-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.visa-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(10, 147, 150, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.visa-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 147, 150, 0.2);
}

.visa-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.radio-option {
    flex: 1;
    min-width: 140px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(10, 147, 150, 0.2);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
}

.radio-option.active {
    border-color: var(--primary);
    background: rgba(10, 147, 150, 0.15);
}

/* ========== الخدمات الإضافية ========== */
.extra-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.extra-service-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(10, 147, 150, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.extra-service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 147, 150, 0.2);
}

/* ========== نظام الدول ========== */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.country-card {
    background: var(--dark-card);
    border: 1px solid rgba(10, 147, 150, 0.2);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.country-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.country-flag {
    font-size: 60px;
    margin-bottom: 15px;
}

.country-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.country-desc {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* ========== أقسام الدولة ========== */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.section-card {
    background: var(--dark-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(10, 147, 150, 0.3);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.section-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.section-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.2), rgba(0, 95, 115, 0.1));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    border: 1px solid rgba(10, 147, 150, 0.3);
}

.section-name {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ========== خدمات الدول ========== */
.hotel-gallery, #countryServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.hotel-card {
    background: var(--dark-card);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(10, 147, 150, 0.2);
}

.hotel-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.hotel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-info {
    padding: 20px;
}

.hotel-name {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.hotel-location {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 10px;
}

.hotel-price {
    color: var(--gold);
    font-size: 22px;
    font-weight: 700;
}

.hotel-rating {
    color: #ffd700;
    margin-bottom: 10px;
}

/* ========== السكن ========== */
.property-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.property-tab {
    padding: 15px 30px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(10, 147, 150, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.property-tab.active,
.property-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

/* ========== مسار التنقل ========== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 40px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
}

.breadcrumb-item:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--gold);
    cursor: default;
}

.breadcrumb-separator {
    color: var(--primary);
    font-size: 12px;
}

/* ========== نظام الإشعارات ========== */
.toast-system {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.toast {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInRight 0.3s ease;
    min-width: 280px;
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast.info { border-left-color: var(--primary); }

.toast i {
    font-size: 24px;
}

.toast.success i { color: var(--success); }
.toast.error i { color: var(--danger); }
.toast.warning i { color: var(--warning); }
.toast.info i { color: var(--primary); }

.toast-content strong {
    display: block;
    margin-bottom: 5px;
}

.toast-content p {
    font-size: 13px;
    color: var(--text-muted);
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-100px); }
}

/* ========== فئة مخفية ========== */
.hidden {
    display: none !important;
}

/* ========== استجابة للشاشات الصغيرة ========== */
@media (max-width: 992px) {
    .two-cols,
    .company-info-section {
        grid-template-columns: 1fr;
    }
    
    .slider-item {
        flex: 0 0 calc(33.33% - 15px);
    }
}

@media (max-width: 768px) {
    .app-wrapper {
        padding: 15px;
    }
    
    .inner-header {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .slider-wrapper {
        gap: 10px;
    }
    
    .progress-track {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
    }
    
    .step-node {
        min-width: 60px;
    }
    
    .bus-seat {
        width: 40px;
        height: 38px;
        font-size: 12px;
    }
    
    .car-seat-new {
        width: 50px;
        height: 65px;
        font-size: 14px;
    }
    
    .action-bar {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slider-item {
        flex: 0 0 calc(100% - 0px);
    }
    
    .hero .logo {
        width: 100px;
        height: 100px;
        font-size: 45px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .hero button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .bus-seat {
        width: 35px;
        height: 33px;
        font-size: 10px;
    }
    
    .car-seat-new {
        width: 45px;
        height: 55px;
        font-size: 12px;
    }
    
    .car-body-new {
        width: 320px;
        height: 600px;
    }
    
    .form-panel {
        padding: 20px;
    }
}