/* =======================
   إعدادات أساسية ومتغيرات (الهوية الفاخرة الجديدة)
======================== */
:root {
    /* الألوان الجديدة */
    --color-primary: #D4B783; /* ذهبي شامبانيا (اللون المميز) */
    --color-dark: #121212; /* أسود مطفأ (للنصوص والخلفيات الداكنة) */
    --color-light-gray: #F9F8F6; /* بيج رملي (خلفية الموقع الفاتحة) */
    --color-white: #ffffff; /* أبيض نقي (للبطاقات والتباين) */
    --color-text-light: #EAE8E4; /* بيج فاتح (للنص على الخلفية السوداء) */
    --color-input-bg: #ECEAE6; /* بيج أغمق (لخلفية حقول الإدخال) */

    /* الخطوط الجديدة */
    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Inter', sans-serif; /* خط جديد أكثر احترافية من Poppins */

    /* متغيرات للحركات */
    --animation-duration: 0.8s;
    --animation-delay-base: 0.1s;
    /* (تم إزالة --hero-transition-duration لأنه لم يعد مطلوباً) */
}

/* إعادة تعيين أساسية */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-ar);
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light-gray); /* تطبيق الخلفية البيج الرملي */
    overflow-x: hidden; /* منع التمرير الأفقي */
}

/* إعدادات اللغة الافتراضية (عربي) */
html[lang="ar"] { direction: rtl; }
/* إعدادات اللغة الإنجليزية */
html[lang="en"] { direction: ltr; }

/* تطبيق خط Inter للغة الانجليزية */
html[lang="en"] body {
    font-family: var(--font-en);
}

/* لإخفاء القائمة عند فتحها */
body.mobile-nav-active {
    overflow-y: hidden; /* يمنع تمرير الصفحة الخلفية */
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; display: block; }

.page-section {
    padding: 80px 0;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-dark); /* تغيير اللون الرئيسي للأسود */
    text-align: center;
    margin-bottom: 50px;
}
.bg-light {
    background-color: var(--color-white); /* الأقسام الفاتحة تصبح بيضاء نقية */
}

/* =======================
   الأزرار (تصميم جديد)
======================== */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px; /* حواف مربعة ناعمة بدلاً من دائرية */
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}
/* زر مفرغ */
.btn-outline {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}
.btn-outline:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* الزر الأساسي (أسود) */
.btn-primary {
    background-color: var(--color-dark);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: #333; /* أسود أفتح قليلاً */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* الزر الثانوي (ذهبي) */
.btn-secondary {
    background-color: var(--color-primary); /* ذهبي */
    color: var(--color-dark); /* نص أسود */
}
.btn-secondary:hover {
    background-color: #DDC08A; /* ذهبي أفتح */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* زر بعرض كامل */
.btn-full {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 1.1rem;
}

/* =======================
   تصميم الهيدر (جديد)
======================== */
.site-header {
    /* خلفية بلورية (Frosted Glass) */
    background: rgba(249, 248, 246, 0.9); /* 90% من لون البيج الرملي */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

    padding: 15px 0;
    border-bottom: 1px solid var(--color-input-bg); /* خط سفلي بيج أغمق */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, background 0.3s ease; /* إضافة transition للخلفية */
}
.header-scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* ظل أنعم */
    background: rgba(249, 248, 246, 0.98); /* أكثر عتامة عند التمرير */
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =======================
   تصميم الشعار (الجديد)
======================== */

    /* تم إزالة الحجم والوزن من هنا إلى العناصر الداخلية */

.site-header .logo a {
    line-height: 1.1;
    color: var(--color-dark);
    text-align: center; /* لضمان التوسيط في الجوال */
}
/* كلمة MOTION */
.logo .logo-main {
    font-family: var(--font-en); /* الخط إنجليزي دائماً للهوية */
    font-weight: 900;
    font-size: 1.9rem;
    letter-spacing: 0.5px;
    display: block;
    color: var(--color-dark);
}
/* حرف O المميز */
.logo .logo-o {
    font-family: 'Times New Roman', Times, serif; /* خط دائري كلاسيكي */
    font-weight: 700;
    color: var(--color-primary); /* ذهبي */
    font-size: 1.1em; /* أكبر قليلاً */
}
/* كلمة TRIPS */
.logo .logo-sub {
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 3px; /* مسافات واسعة */
    display: block;
    color: #777;
    text-transform: uppercase;
}
/* =======================
   نهاية تصميم الشعار
======================== */


/* القائمة الرئيسية (تُخفى على الجوال) */
.site-header .main-nav {
    display: flex; /* تظهر افتراضياً */
}
.site-header .main-nav ul {
    display: flex;
}
.site-header .main-nav ul li {
    margin: 0 15px;
}
.site-header .main-nav ul li a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark); /* أسود */
    transition: color 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}
.site-header .main-nav ul li a:hover {
    color: var(--color-primary); /* ذهبي */
}
.site-header .main-nav ul li a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.site-header .lang-switch {
    font-weight: 700;
    color: var(--color-dark);
    padding: 8px 12px;
    border-radius: 8px;
    background-color: var(--color-input-bg); /* بيج أغمق */
    transition: all 0.3s ease;
}
.site-header .lang-switch:hover {
    background-color: var(--color-primary); /* ذهبي */
    color: var(--color-dark);
}

/* إصلاح تنسيق الهيدر بعد تسجيل الدخول (كمبيوتر) */
.site-header .main-nav {
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    justify-content: center;
}
.site-header #user-status {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    color: var(--color-dark);
}
.site-header #user-status a {
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-decoration-thickness: 2px;
}

/* Re-order for LTR */
html[lang="en"] .site-header .main-nav { order: 1; }
html[lang="en"] .site-header .logo { order: 2; }
html[lang="en"] .site-header .header-actions { order: 3; }

/* زر قائمة الجوال (☰) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-dark); /* أسود */
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

/* =======================
   تصميم القائمة الجوالة (جديد)
======================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--color-dark); /* أسود مطفأ */
    color: var(--color-text-light); /* نص بيج */
    padding: 60px 30px 30px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 1010;
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
}
html[lang="en"] .mobile-nav {
    right: auto;
    left: -100%;
    box-shadow: 5px 0 15px rgba(0,0,0,0.2);
    transition: left 0.4s ease-in-out;
}
body.mobile-nav-active .mobile-nav {
    right: 0;
}
html[lang="en"] body.mobile-nav-active .mobile-nav {
    left: 0;
}
.mobile-nav-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--color-primary); /* ذهبي */
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.mobile-nav ul li a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-light); /* بيج */
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}
.mobile-nav ul li a:hover {
    color: var(--color-primary); /* ذهبي */
}
.mobile-nav ul li a.active {
    color: var(--color-primary);
}

/* طبقة تعتيم خلف القائمة عند فتحها */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
body.mobile-nav-active .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

/* =======================
   تصميم قسم Hero (تعديل: لاستخدام الفيديو)
======================== */
#hero {
    min-height: 90vh;
    position: relative; /* مهم لطبقات التعتيم والفيديو */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    padding: 40px 0;

    /* (تم حذف أكواد الخلفية (background-image, etc) من هنا) */
}

/* === كود الفيديو الجديد === */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* لتوسيط الفيديو */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover; /* يضمن ملء الشاشة بدون تشويه */
    z-index: 0; /* خلف التعتيم والمحتوى */
}

/* (تم حذف كود #hero::before و #hero.hero-transitioning بالكامل) */


/* طبقة التعتيم (مهمة جداً لوضوح النص فوق الفيديو) */
#hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 60% سواد */
    z-index: 1; /* فوق الفيديو وتحت المحتوى */
}

.hero-content { position: relative; z-index: 2; /* فوق التعتيم */ }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-title { font-size: 5rem; font-weight: 900; margin-bottom: 0; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); opacity: 0; animation: fadeInUp var(--animation-duration) ease-out forwards; animation-delay: var(--animation-delay-base); }
.hero-subtitle {
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary); /* ذهبي */
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    opacity: 0;
    animation: fadeInUp var(--animation-duration) ease-out forwards;
    animation-delay: calc(var(--animation-delay-base) * 2);
}
.hero-description { font-size: 1.3rem; max-width: 600px; margin: 25px auto 35px; text-shadow: 1px 1px 4px rgba(0,0,0,0.4); opacity: 0; animation: fadeInUp var(--animation-duration) ease-out forwards; animation-delay: calc(var(--animation-delay-base) * 3); }
#hero .btn-secondary { opacity: 0; animation: fadeInUp var(--animation-duration) ease-out forwards; animation-delay: calc(var(--animation-delay-base) * 4); }


/* =======================
   تصميم الفوتر (جديد)
======================== */
.site-footer {
    background-color: var(--color-dark); /* أسود مطفأ */
    color: var(--color-text-light); /* نص بيج */
    padding-top: 60px;
}
.site-footer .container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.site-footer h4 {
    color: var(--color-primary); /* ذهبي */
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a:hover {
    color: var(--color-primary); /* ذهبي */
    padding-right: 5px;
    transition: padding-right 0.3s ease;
}
html[lang="en"] .site-footer ul li a:hover { padding-right: 0; padding-left: 5px; }
.site-footer .footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid #333; /* خط فاصل أغمق */
}

/* =======================
   تصميم قسم "لماذا نحن؟" (جديد)
======================== */
.section-subtitle { text-align: center; font-size: 1.15rem; color: #555; max-width: 600px; margin: -30px auto 50px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-item {
    background: var(--color-white); /* بطاقة بيضاء */
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04); /* ظل أنعم */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-input-bg); /* إطار خفيف */
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}
.feature-item h3 {
    color: var(--color-dark); /* أسود */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.feature-item p { font-size: 1rem; line-height: 1.6; color: #555; }

/* =======================
   تصميم قسم "أشهر الوجهات" (جديد)
======================== */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.dest-card {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-input-bg);
}
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.07); }
.dest-card-image-wrapper { overflow: hidden; height: 240px; background-color: #e0e0e0; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dest-card:hover img { transform: scale(1.05); } /* تقريب أنعم */
.dest-card-content { padding: 25px; }
.dest-card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark); /* أسود */
    margin-bottom: 10px;
}
.dest-card-content p { font-size: 1rem; color: #555; margin-bottom: 25px; }
/* زر البطاقة (مرئي دائماً) */
.btn-card {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px; /* نفس حواف الزر الرئيسي */
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    background: transparent;
    transition: all 0.3s ease;
    opacity: 1; /* مرئي دائماً */
    transform: none; /* إزالة الحركة */
    margin-top: 15px;
}
.btn-card:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* =======================
   ستايل الصفحات الداخلية ( عام )
======================== */
.page-hero {
    padding: 60px 0;
    background-color: var(--color-white); /* أبيض نقي */
    text-align: center;
    border-bottom: 1px solid var(--color-input-bg);
}
.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-dark); /* أسود */
}
.page-hero p { font-size: 1.1rem; color: #777; margin-top: 5px; }

/* =======================
   ستايل صفحة "من نحن"
======================== */
#about-content .about-flex { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
#about-content .about-image img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
#about-content .about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark); /* أسود */
    line-height: 1.4;
    margin-bottom: 20px;
}
#about-content .about-text p { font-size: 1.1rem; line-height: 1.8; color: #555; margin-bottom: 15px; }

/* =======================
   ستايل صفحة "الخدمات"
======================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.service-item {
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-input-bg);
}
.service-item:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.07); }
.service-item img { width: 100%; height: 250px; object-fit: cover; }
.service-item-content { padding: 25px; background: var(--color-white); }
.service-item-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark); /* أسود */
    margin-bottom: 10px;
}
.service-item-content p { font-size: 1rem; color: #555; line-height: 1.6; }

/* =======================
   ستايل النماذج (تواصل، دخول، إلخ)
======================== */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.contact-form h2, .contact-info h2, .auth-container h1, .plan-form-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark); /* أسود */
    margin-bottom: 30px;
}
.auth-container h1 { text-align: center; } /* لصفحات الدخول */
.plan-form-container h2 { text-align: center; } /* لصفحة خطط رحلتك */

.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 10px; color: var(--color-dark); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--color-input-bg); /* إطار بيج */
    border-radius: 8px;
    background-color: var(--color-white); /* خلفية بيضاء */
    font-family: var(--font-ar);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
html[lang="en"] .form-group input, html[lang="en"] .form-group textarea, html[lang="en"] .form-group select { font-family: var(--font-en); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-primary); /* إطار ذهبي عند التركيز */
    box-shadow: 0 0 8px rgba(212, 183, 131, 0.3); /* توهج ذهبي */
    background-color: var(--color-white);
}
/* إصلاح لون خلفية المدخلات في صفحات الدخول (التي تستخدم ستايل مدمج) */
.auth-form input { background-color: var(--color-white) !important; }
/* ستايل مخصص لصفحات الدخول */
.auth-container { max-width: 450px; margin: 60px auto; padding: 40px; background-color: var(--color-white); border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--color-input-bg); }
.auth-form .form-group { margin-bottom: 25px; }
.auth-form label { font-weight: 700; }
.auth-form button { margin-top: 15px; }
.auth-link { text-align: center; margin-top: 25px; color: #555; }
.auth-link a { color: var(--color-dark); font-weight: bold; text-decoration: underline; text-decoration-color: var(--color-primary); }
.auth-link a:hover { color: var(--color-primary); }
#auth-error { color: #b33939; text-align: center; margin-bottom: 15px; font-weight: bold; display: none; }
/* ستايل صفحة خطط رحلتك */
.plan-form-container { max-width: 700px; margin: 60px auto; padding: 40px; background-color: var(--color-white); border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--color-input-bg); }
.plan-form .form-group { margin-bottom: 25px; }
.plan-form label { font-weight: 700; }
.plan-form button { margin-top: 15px; }
/* ستايل صفحة الملف الشخصي */
.profile-container { max-width: 600px; margin: 60px auto; padding: 40px; background-color: var(--color-white); border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--color-input-bg); }
.profile-form .form-group { margin-bottom: 25px; }
.profile-form label { font-weight: 700; }
.profile-form button { margin-top: 15px; }
.profile-form input:disabled { background-color: var(--color-input-bg); color: #777; cursor: not-allowed; }
.divider { border-top: 1px solid var(--color-input-bg); margin: 40px 0; }
.reset-password-section h2 { margin-bottom: 20px; text-align: center; color: var(--color-dark); }
.reset-password-section p { text-align: center; margin-bottom: 20px; line-height: 1.6; color: #555; }


input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.6; }
.form-group-double { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form button[type="submit"] { margin-top: 10px; }
.contact-info {
    border-right: 1px solid var(--color-input-bg);
    padding-right: 40px;
}
html[lang="en"] .contact-info { border-right: none; padding-right: 0; border-left: 1px solid var(--color-input-bg); padding-left: 40px; }
.contact-info p.intro { font-size: 1.1rem; color: #555; margin-bottom: 40px; line-height: 1.8; }
.info-item { margin-bottom: 30px; display: flex; align-items: center; gap: 15px; }
.info-item h3 { color: var(--color-dark); font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; }
.info-item p, .info-item a { font-size: 1.1rem; font-weight: normal; color: var(--color-dark); }
.info-item a:hover { color: var(--color-primary); text-decoration: underline; }
.social-links { display: flex; gap: 20px; margin-top: 10px; }
.social-links a { font-weight: 700; color: var(--color-dark); text-decoration: none; border-bottom: 2px solid transparent; padding-bottom: 3px; transition: border-color 0.3s ease; }
.social-links a:hover { color: var(--color-primary); border-bottom-color: var(--color-primary); }

/* =======================
   حركات "Fade-in" عند التمرير
======================== */
.fade-in-section { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* =======================
   تجاوب (Responsive)
======================== */
@media (max-width: 992px) {
    #about-content .about-flex, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    #about-content .about-image { order: -1; }
    .contact-info { border: none; padding: 0; }
    html[lang="en"] .contact-info { border: none; padding: 0; }
}

@media (max-width: 768px) {
    /* إخفاء القائمة الرئيسية وإظهار زر الجوال */
    .site-header .main-nav { display: none; }
    .site-header .mobile-menu-toggle { display: block; } /* إظهار زر ☰ */

    /* إصلاح تنسيق الهيدر (الجوال) */
    .site-header .header-actions .lang-switch,
    .site-header .header-actions #signup-link {
        display: none;
    }
    .site-header .logo,
    .site-header .header-actions {
        flex-shrink: 1;
    }
    .site-header .logo {
        min-width: 100px;
    }
    /* تصغير حجم الشعار بالجوال */
    .logo .logo-main { font-size: 1.5rem; }
    .logo .logo-sub { font-size: 0.7rem; letter-spacing: 2px; }

    .site-header .header-actions {
        gap: 8px;
        justify-content: flex-end;
    }
    html[lang="ar"] .site-header .header-actions {
        justify-content: flex-start;
    }
    .site-header .header-actions #login-link,
    .site-header .header-actions #logout-button {
        padding: 6px 12px;
        font-size: 0.85rem;
        border-radius: 6px; /* حواف أنعم للجوال */
    }
    .site-header #user-status {
        max-width: 120px;
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .features-grid, .dest-grid, .services-grid, .form-group-double, .site-footer .container { grid-template-columns: 1fr; }
    /* (تم حذف أكواد تعطيل parallax لأن الفيديو لا يستخدمه) */
    .contact-grid { gap: 30px; }
}


/* =======================
   ستايل التنبيهات (Toast) - تصميم جديد
======================== */
.toast {
    visibility: hidden;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--color-dark); /* أسود مطفأ */
    color: var(--color-white);
    text-align: center;
    border-radius: 8px; /* نفس حواف الأزرار */
    padding: 16px 20px;
    position: fixed;
    z-index: 1050;
    left: 50%;
    transform: translateX(-50%);
    bottom: -100px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: bottom 0.5s ease-in-out, visibility 0.5s ease;
}
.toast.show {
    visibility: visible;
    bottom: 30px;
}
/* ستايل النجاح (ذهبي) */
.toast.success {
    background-color: var(--color-primary); /* ذهبي */
    color: var(--color-dark);
}
/* ستايل الخطأ (أحمر داكن) */
.toast.error {
    background-color: #b33939; /* أحمر داكن */
    color: var(--color-white);
}

