/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= TOPBAR ================= */
.topbar {
    background: #0d1b2a;
    color: #fff;
    font-size: 25px;
    text-align: center;
    height: 80px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    padding: 8px 14px;
}

.flag-img {
    width: 20px;
    border-radius: 2px;
}

.lang-switcher {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.lang-btn {
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    border-radius: 12px;
    z-index: 9999;
    overflow: hidden;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #223145 !important;
    margin: 0;
}

.lang-dropdown a:hover {
    background: #f5f7fb;
}

.currency-switcher .lang-btn {
    background: rgba(212,175,55,0.18);
    border-color: rgba(212,175,55,0.45);
}
.fa-phone{
    font-size: 20px;
}

/* ================= HEADER ================= */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    padding: 10px 20px; /* ارتفاع أكبر للهيدر */
}

/* ================= CONTAINER ================= */
.header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* العناصر تبدأ من اليسار */
    gap: 40px; /* مسافة صغيرة بين اللوجو والـ nav */
}

/* ================= LOGO ================= */
.logo {
    display: flex;
    align-items: center; /* الصورة والنص جنب بعض */
    gap: 15px; /* مسافة بين الصورة والنص */
}

.logo img {
    height: 100px; /* تكبير الشعار */
    width: auto;
}

.logo span {
    color: #1e88e5; /* اللون الأزرق */
    font-size: 20px; /* تكبير النص */
    font-weight: bold;
    text-transform: uppercase; /* الحروف كلها كبتل */
}

/* ================= NAVIGATION ================= */
.nav {
    display: flex;
    align-items: center;
    gap: 25px; /* مسافة صغيرة بين الروابط */
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 25px; /* تكبير الخط */
    text-transform: uppercase; /* الحروف كلها كبتل */
}

.nav a:hover {
    color: #1e88e5;
}



/* ================= HERO (UPDATED) ================= */
.hero {
    position: relative;
    height: 75vh; /* ارتفاع مناسب للشاشات الكبيرة */
    min-height: 500px;
    display: flex;
    align-items: center; /* توسيط عمودي */
    justify-content: center; /* توسيط أفقي */
    overflow: visible; /* للسماح لصندوق البحث بالخروج عن الحافة */
    background-size: cover;
    background-position: center;
}
/* Overlay متدرج */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}

/* محتوى الهيرو */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 850px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: 100%; /* لضمان استجابة النص للتوسط */
}

.hero-content p {
    font-size: clamp(16px, 2.5vw, 22px);
    opacity: 0.95;
    margin-bottom: 30px;
    width: 100%;
}

/* أزرار الهيرو */
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center; /* لتوسط الأزرار بجانب بعضها */
    flex-wrap: wrap;
    width: 100%;
}

.hero-actions a {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}
/* زر أساسي */
.btn-primary {
    background: #1e88e5;
    color: #fff;
}

.btn-primary:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

/* زر ثانوي */
.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    background: #fff;
    color: #1e88e5;
}

/* ================= SEARCH ================= */
/* .search-box {
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.search-form {
    position: relative;
    background: #f7f7cd;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    border-radius: 14px;

    /* بوردر ذهبي */
    /* border: 10px solid rgba(255, 196, 0, 0.7); */ */

    /* إضاءة فاخرة */
    /* box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 0 25px rgba(212, 175, 55, 0.25);

    backdrop-filter: blur(4px);
}
.search-form::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    opacity: 0.6;
    pointer-events: none;
}



.search-form input,
.search-form select {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease;
}

.search-form input:focus,
.search-form select:focus {
    outline: none;
    border-color: #ffd900;
    box-shadow: 0 0 8px rgba(235, 205, 108, 0.35);
}

.search-form button {
    background: linear-gradient(135deg, #ffc400, #b8962e);
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.45);
}
 */

/* ================= HOTELS ================= */
.hotels {
    padding: 80px 0;
}

.hotels h2 {
    text-align: center;
    margin-bottom: 40px;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.hotel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: .3s;
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.price {
    margin-top: 10px;
    color: #1e88e5;
    font-weight: bold;
}

/* ================= FOOTER ================= */
/* ================= SITE FOOTER (MODIFIED) ================= */
 /*.site-footer {*/
            /*background: #050505; /* أسود فخم */
 /*           padding: 60px 0 25px;*/
 /*           color: #fff;*/
 /*           text-align: center;*/
 /*           overflow: hidden;*/
 /*       }*/

        /* 1. الشريط العلوي (الروابط والتواصل) */
 /*       .footer-info-strip {*/
 /*           display: flex;*/
 /*           justify-content: space-around;*/
 /*           flex-wrap: wrap;*/
 /*           border-bottom: 1px solid rgba(212, 175, 55, 0.15);*/
 /*           padding-bottom: 30px;*/
 /*           margin-bottom: 35px;*/
 /*       }*/

 /*       .info-column h4 {*/
 /*           color: #d4af37;*/
 /*           text-transform: uppercase;*/
 /*           letter-spacing: 2px;*/
 /*           font-size: 14px;*/
 /*           margin-bottom: 15px;*/
 /*       }*/

 /*       .footer-links-inline, .contact-details-inline {*/
 /*           list-style: none; padding: 0; display: flex; gap: 20px; justify-content: center;*/
 /*           flex-wrap: wrap;*/
 /*       }*/

 /*       .footer-links-inline a, .contact-details-inline span {*/
 /*           font-size: 13px; color: #bbb; text-decoration: none; transition: 0.3s;*/
 /*       }*/
 /*       .footer-links-inline a:hover { color: #d4af37; text-shadow: 0 0 5px rgba(212,175,55,0.5); }*/

        /* 2. شريط السوشيال ميديا */
 /*       .social-bar {*/
 /*           display: flex; justify-content: center; gap: 15px; margin-bottom: 45px;*/
 /*       }*/

 /*       .social-3d {*/
 /*           width: 40px; height: 40px;*/
 /*           background: #111; border: 1px solid #222;*/
 /*           display: flex; align-items: center; justify-content: center;*/
 /*           border-radius: 50%; color: #fff; font-size: 18px;*/
 /*           text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
 /*           position: relative;*/
 /*           box-shadow: 0 4px 0 #000;*/
 /*       }*/

 /*       .social-3d:hover { transform: translateY(-5px); color: #fff; }*/

 /*       .fb:hover { background: #1877F2; box-shadow: 0 0 15px #1877F2; border-color: #1877F2; }*/
 /*       .ig:hover { background: #E4405F; box-shadow: 0 0 15px #E4405F; border-color: #E4405F; }*/
 /*       .wa:hover { background: #25D366; box-shadow: 0 0 15px #25D366; border-color: #25D366; }*/
 /*       .x:hover { background: #000; box-shadow: 0 0 15px #fff; border-color: #fff; }*/
 /*       .yt:hover { background: #FF0000; box-shadow: 0 0 15px #FF0000; border-color: #FF0000; }*/
 /*       .in:hover { background: #0077B5; box-shadow: 0 0 15px #0077B5; border-color: #0077B5; }*/
 /*       .tt:hover { background: #000; box-shadow: -3px -3px 10px #25F4EE, 3px 3px 10px #FE2C55; border-color: #fff; }*/

        /* 3. مربعات الدفع (إضافة تابي وتمارا) */
 /*       .payment-bar-3d {*/
 /*           display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; padding: 10px 0;*/
 /*       }*/

 /*       .payment-card {*/
 /*           background: #ffffff;*/
 /*           padding: 5px 10px;*/
 /*           border-radius: 6px;*/
 /*           display: flex; align-items: center; justify-content: center; gap: 8px;*/
 /*           min-width: 95px; */
 /*           height: 35px;*/
 /*           cursor: pointer;*/
 /*           transition: all 0.3s ease-in-out; */
 /*           transform: perspective(500px) rotateX(10deg);*/
 /*           box-shadow: 0 5px 0 #888;*/
 /*           text-decoration: none;*/
 /*           position: relative;*/
 /*           overflow: hidden;*/
 /*           backface-visibility: hidden;*/
 /*       }*/

 /*       .payment-card i, .payment-card span { font-weight: 800; font-size: 10px; color: #333; text-transform: uppercase; position: relative; z-index: 2; }*/

 /*       .payment-card::before {*/
 /*           content: '';*/
 /*           position: absolute;*/
 /*           top: 0; left: -150%;*/
 /*           width: 100%; height: 100%;*/
 /*           background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);*/
 /*           transform: skewX(-30deg);*/
 /*           pointer-events: none;*/
 /*       }*/

 /*       .payment-card:hover::before { left: 150%; transition: 0.7s; }*/
 /*       .payment-card:hover { transform: perspective(500px) rotateX(0deg) translateY(-5px); }*/
 /*       .payment-card:hover i, .payment-card:hover span { color: #fff; }*/

        /* ألوان البراندات */
 /*       .network:hover { background: #223564; box-shadow: 0 0 15px #223564; }*/
 /*       .magnati:hover { background: #6f263d; box-shadow: 0 0 15px #6f263d; }*/
 /*       .stripe:hover { background: #635bff; box-shadow: 0 0 15px #635bff; }*/
 /*       .paypal:hover { background: #003087; box-shadow: 0 0 15px #003087; }*/
 /*       .binance:hover { background: #F3BA2F; box-shadow: 0 0 15px #F3BA2F; }*/
 /*       .binance:hover span { color: #000; }*/
 /*       .apple-pay:hover { background: #000; box-shadow: 0 0 15px #fff; }*/
 /*       .google-pay:hover { background: #4285F4; box-shadow: 0 0 15px #4285F4; }*/
 /*       .zain-cash:hover { background: #ff0000; box-shadow: 0 0 15px #ff0000; }*/
 /*       .tabby:hover { background: #39FFBD; box-shadow: 0 0 15px #39FFBD; }*/
 /*       .tabby:hover span { color: #000; }*/
 /*       .tamara:hover { background: #FFAB44; box-shadow: 0 0 15px #FFAB44; }*/

        /* 4. التذييل السفلي (اللون الذهبي اللامع) */
 /*       .footer-bottom {*/
 /*           margin-top: 50px; */
 /*           border-top: 1px solid rgba(255,255,255,0.05);*/
 /*           padding-top: 25px;*/
 /*       }*/

 /*       .gold-text {*/
            /*color: #d4af37; /* اللون الذهبي */
 /*           font-size: 12px;*/
 /*           letter-spacing: 1px;*/
            /*text-shadow: 0 0 8px rgba(212, 175, 55, 0.4); /* توهج ذهبي */
 /*           transition: 0.3s;*/
 /*       }*/

 /*       .gold-text strong {*/
 /*           color: #fff;*/
            /*text-shadow: 0 0 10px #d4af37; /* توهج أقوى للاسم */
 /*       }*/

        /* الجوال */
 /*       @media (max-width: 768px) {*/
 /*           .footer-info-strip { flex-direction: column; gap: 25px; }*/
 /*           .payment-card { width: 45%; min-width: 120px; transform: none; box-shadow: 0 4px 0 #888 !important; }*/
 /*       }*/
/* ================= PAYMENT METHODS ICONS (OPTIMIZED) ================= */
/*.payment-methods-icons {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*    flex-wrap: wrap;*/
/*    margin-top: 15px;*/
/*}*/

/* أيقونات Font Awesome (Stripe, Apple, Google, PayPal) */
/*.payment-methods-icons i {*/
/*    font-size: 28px;*/
/*    width: 50px;*/
/*    height: 40px;*/
    /*background: #ffffff; /* خلفية بيضاء لتظهر الأيقونات بوضوح */
/*    color: #0d1b2a;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    border-radius: 6px;*/
/*    transition: all 0.3s ease;*/
/*    cursor: pointer;*/
/*}*/

/* صور أيقونات (Binance, Tabby, Tamara) */
/*.payment-icon-img {*/
/*    height: 40px;*/
/*    width: 55px;*/
/*    background: #ffffff;*/
/*    padding: 5px;*/
/*    border-radius: 6px;*/
/*    object-fit: contain;*/
/*    transition: all 0.3s ease;*/
/*}*/

/* تأثير الـ Hover الموحد لجميع أيقونات الدفع */
/*.payment-methods-icons i:hover,*/
/*.payment-icon-img:hover {*/
    /*background: #d4af37; /* تتحول للذهبي عند التمرير */
/*    transform: translateY(-4px);*/
/*    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);*/
/*}*/

/* Bottom Copyright */
/*.footer-bottom {*/
/*    text-align: center;*/
/*    margin-top: 50px;*/
/*    border-top: 1px solid rgba(255,255,255,0.1);*/
/*    padding-top: 25px;*/
/*    font-size: 13px;*/
/*    letter-spacing: 1px;*/
/*}*/

/* التوافق مع الجوال */
/*@media (max-width: 992px) {*/
/*    .footer-grid {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .footer-grid {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*    .payment-methods-icons {*/
/*        justify-content: center;*/
/*    }*/
/*    .footer-box {*/
/*        text-align: center;*/
/*    }*/
/*}*/
/* ================= TOP DESTINATIONS ================= */
.destinations {
    padding: 80px 0;
    background: #fff;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 40px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 صور في الصف */
    gap: 25px;
}


.destination-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 240px; /* ارتفاع ثابت */
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: 0.3s ease;
}


.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Overlay */
.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.2)
    );
}

/* اسم الإمارة */
.destination-card span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

/* Hover Effects */
.destination-card:hover img {
    transform: scale(1.08);
}

.destination-card:hover {
    transform: translateY(-6px);
}

/* ================= FOOTER ================= */
/*.site-footer {*/
/*    background: #000000;*/
/*    color: #dcdcdc;*/
/*    padding: 70px 0 30px;*/
/*}*/

/*.footer-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 40px;*/
/*}*/

/*.footer-box h4 {*/
/*    color: #d4af37;*/
/*    margin-bottom: 15px;*/
/*    font-size: 18px;*/
/*}*/

/*.footer-box p {*/
/*    font-size: 14px;*/
/*    line-height: 1.7;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.company-name {*/
/*    font-weight: 600;*/
/*    color: #fff;*/
/*}*/

/* Newsletter */
/*.newsletter-form {*/
/*    display: flex;*/
/*    margin-top: 15px;*/
/*}*/

/*.newsletter-form input {*/
/*    flex: 1;*/
/*    padding: 12px;*/
/*    border-radius: 6px 0 0 6px;*/
/*    border: none;*/
/*    outline: none;*/
/*}*/

/*.newsletter-form button {*/
/*    padding: 12px 20px;*/
/*    border: none;*/
/*    background: linear-gradient(135deg, #d4af37, #b8962e);*/
/*    color: #1a1a1a;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    border-radius: 0 6px 6px 0;*/
/*}*/

/* Links */
/*.footer-links {*/
/*    list-style: none;*/
/*}*/

/*.footer-links li {*/
/*    margin-bottom: 8px;*/
/*}*/

/*.footer-links a {*/
/*    text-decoration: none;*/
/*    color: #dcdcdc;*/
/*    font-size: 14px;*/
/*    transition: 0.3s;*/
/*}*/

/*.footer-links a:hover {*/
/*    color: #d4af37;*/
/*}*/

/* Social */
/*.social-links {*/
/*    display: flex;*/
/*    gap: 12px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.social-links a {*/
/*    width: 38px;*/
/*    height: 38px;*/
/*    background: rgba(255,255,255,0.08);*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: #d4af37;*/
/*    transition: 0.3s;*/
/*}*/

/*.social-links a:hover {*/
/*    background: #d4af37;*/
/*    color: #0d1b2a;*/
/*}*/

/* Payments */
/*.payment-title {*/
/*    margin-top: 20px;*/
/*}*/

/*.payment-methods img {*/
/*    height: 32px;*/
/*    margin-right: 10px;*/
/*    filter: brightness(0) invert(1);*/
/*    opacity: 0.8;*/
/*}*/

/* Bottom */
/*.footer-bottom {*/
/*    text-align: center;*/
/*    margin-top: 40px;*/
/*    border-top: 1px solid rgba(255,255,255,0.1);*/
/*    padding-top: 20px;*/
/*    font-size: 14px;*/
/*}*/
/* ================= PAYMENT METHODS ICONS ================= */
/*.payment-methods-icons {*/
/*    display: flex;*/
/*    gap: 15px;*/
/*    margin-top: 15px;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.payment-methods-icons i {*/
/*    font-size: 36px;*/
    /*color: #d4af37; /* ذهبي */
/*    background: rgba(255, 255, 255, 0.08);*/
/*    padding: 10px 14px;*/
/*    border-radius: 10px;*/
/*    transition: 0.3s ease;*/
/*}*/

/* حاوية الأيقونات */
/*.payment-methods-icons {*/
/*    display: flex;*/
/*    align-items: center;*/
   /* gap: 12px; /* مسافة بين الأيقونات */
/*}*/

/* أيقونات Font Awesome والصور */
/*.payment-methods-icons i,*/
/*.payment-methods-icons img.payment-icon {*/
   /* font-size: 2rem;     /* حجم أيقونات Font Awesome */
   /* width: 50px;         /* حجم الصور */
/*    height: 50px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
   /* border-radius: 10px; /* حواف دائرية */
  /*  background: #f5f5f5; /* خلفية بسيطة للأيقونات */
   /* color: #0d1b2a;      /* لون أيقونات Font Awesome */
   /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* ظل خفيف افتراضي */
/*}*/

/* تأثير Hover فاخر */
/*.payment-methods-icons i:hover,*/
/*.payment-methods-icons img.payment-icon:hover {*/
   /* background: #d4af37;           /* ذهبي فاخر */
   /* color: #0d1b2a;                /* لون أيقونات Font Awesome عند Hover */
   /* transform: translateY(-4px) scale(1.1); /* رفع وتحجيم بسيط */
   /* box-shadow: 0 10px 25px rgba(212,175,55,0.45); /* ظل فاخر */
/*}*/

/* اجعل الصور متناسقة مع أيقونات Font Awesome */
.payment-methods-icons img.payment-icon {
    object-fit: contain;
    padding: 5px;
}
/* --- Dropdown Menu --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    top: 100%;
    right: 0; /* لأن الموقع RTL */
    overflow: hidden;
}

.dropdown-content a {
    color: #333 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background-color: #0d1b2a;
    color: #fff !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* --- Hero Video Styling --- */
#hero-section {
    position: relative;
    height: 80vh; /* يمكنك تعديل الارتفاع حسب رغبتك */
    overflow: hidden;
    background: #000; /* خلفية احتياطية */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover; /* لضمان ملء المساحة بدون تشويه */
}

.hero-overlay {
    position: absolute;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4); /* تعتيم الفيديو لتوضيح النص */
    top: 0; left: 0; width: 100%; height: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* --- تحسين صندوق البحث --- */
/* --- تنسيق البحث: خلفية بيضاء مع إضاءة ذهبية --- */
/* --- الاستايل الذي اخترته مع تأثير الإضاءة المضافة --- */
/* --- تنسيق البحث: هادئ بدون تأثيرات إضاءة --- */
/* ================= SEARCH SECTION (ICONS & DIVIDERS) ================= */
/* ================= تصميم محرك البحث المطور ================= */
.search-box {
    position: relative;
    /* سحب العنصر للأعلى */
    margin-top: -40px; 
    z-index: 10;
    
    /* التحكم في العرض: 100% تعني من الحافة للحافة، والناقص 30px يترك 15px يمين و15px شمال */
    width: calc(100% - 30px) !important; 
    
    /* لضمان التمدد في الشاشات الكبيرة */
    max-width: 2000px !important; 
    
    /* التوسيط */
    margin-left: auto !important;
    margin-right: auto !important;
    
    /* تأكد من حذف أي سطر width: 100px كان موجوداً هنا */
}

.search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 10px 20px; 
    border-radius: 12px;
    border: 10px solid #d4af37; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
    gap: 0;
    
    /* هام جداً لكي لا يخرج البرواز عن الشاشة */
    width: 100% !important;
    box-sizing: border-box !important;
}
.search-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    gap: 10px;
}

/* رسم الخط الفاصل العمودي */
.search-group:not(:nth-last-child(2)) {
    border-right: 20px solid rgba(212, 175, 55, 0.3);
}

/* في حالة العربي (RTL) نعكس الفاصل */
[dir="rtl"] .search-group:not(:nth-last-child(2)) {
    border-right: none;
    border-left: 5px solid rgba(212, 175, 55, 0.3);
}

.search-group label i {
    color: #d4af37; 
    font-size: 18px;
}

.search-form input, 
.search-form select {
    border: none !important;
    outline: none !important;
    background: transparent;
    width: 100%;
    font-size: 15px;
    color: #333;
}

.search-btn {
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-btn:hover {
    background: #b8962e;
    transform: translateY(-2px);
}
/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {
    /* تنسيق الهيدر العام */
    .header {
        padding: 10px 0;
    }

    .header .container {
        display: flex;
        flex-direction: column; /* لوجو فوق والمنيو تحت */
        align-items: center;
        gap: 15px;
    }

    /* تصغير اللوجو ليتناسب مع الجوال */
    .logo img {
        max-height: 50px; 
        width: auto;
    }

    /* تحويل القائمة لصفوف مرنة */
    .nav {
        display: flex;
        flex-wrap: wrap; /* يسمح بنزول الروابط لسطر جديد */
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .nav a {
        font-size: 12px; /* تصغير الخط قليلاً */
        padding: 6px 10px;
        background: rgba(212, 175, 55, 0.1); /* إضافة خلفية بسيطة لتظهر كأزرار */
        border-radius: 4px;
        white-space: nowrap; /* منع انقسام الكلمة الواحدة */
    }

    /* ضبط القائمة المنسدلة (الشروط) على الجوال */
    .dropdown-content {
        position: static; /* جعلها تظهر تحت الكلمة مباشرة وليس فوق العناصر */
        width: 100%;
        box-shadow: none;
        background: #111;
        display: none; /* تظهر فقط عند النقر */
    }
}

@media (max-width: 768px) {
    .search-box {
        margin-top: -30px; /* لرفعه قليلاً فوق الفيديو */
        padding: 0 15px;
    }

    .search-form {
        display: flex;
        flex-direction: column; /* تحويل العناصر لتكون تحت بعضها */
        gap: 12px;
        padding: 20px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .search-form input, 
    .search-form select, 
    .search-form button {
        width: 100% !important; /* جعل كل خانة تأخذ العرض الكامل */
        height: 50px; /* زيادة الارتفاع لسهولة اللمس */
        margin: 0;
        font-size: 14px;
        border-radius: 8px;
    }

    .search-form button {
        background: #d4af37;
        color: #000;
        font-weight: bold;
        margin-top: 5px;
    }
}

.site-footer {
    background: #050505;
    padding: 60px 0 25px;
    color: #fff;
    text-align: center;
    border-top: 3px solid #d4af37;
}

.footer-info-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 30px;
    margin-bottom: 35px;
}

.info-column h4 { color: #d4af37; margin-bottom: 15px; font-size: 16px; }

.footer-links-inline, .contact-details-inline {
    list-style: none; display: flex; flex-direction: column; gap: 12px;
}

.footer-links-inline a, .contact-details-inline span {
    font-size: 14px; color: #bbb; text-decoration: none; transition: 0.3s;
}
.contact-details-inline span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer-links-inline a:hover { color: #d4af37; padding-right: 5px; }

/* السوشيال ميديا 3D */
.social-bar { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
.social-3d {
    width: 60px;          /* كبرنا العرض */
    height: 60px;         /* كبرنا الطول */
    background: #111; 
    border: 1px solid #222;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%; 
    color: #fff; 
    box-shadow: 0 4px 0 #000; 
    transition: 0.3s;
    font-size: 25px;      /* ضيف السطر ده لتكبير الأيقونة نفسها جوه الدائرة */
}
.social-3d:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(212,175,55,0.3); }
/* --- الألوان الأصلية للسوشيال ميديا عند التمرير (Hover) --- */

/* Facebook */
.fb:hover { 
    background: #1877F2 !important; 
    border-color: #1877F2 !important; 
    box-shadow: 0 8px 15px rgba(24, 119, 242, 0.4); 
}

/* Instagram (تدرج لوني احترافي) */
.ig:hover { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; 
    border-color: #d6249f !important; 
    box-shadow: 0 8px 15px rgba(214, 36, 159, 0.4); 
}

/* TikTok (تأثير النيون الخاص به) */
.tt:hover { 
    background: #000 !important; 
    border-color: #fff !important; 
    box-shadow: -3px -3px 10px #25F4EE, 3px 3px 10px #FE2C55 !important; 
}

/* WhatsApp */
.wa:hover { 
    background: #25D366 !important; 
    border-color: #25D366 !important; 
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4); 
}

/* X (Twitter) */
.x:hover { 
    background: #000 !important; 
    border-color: #fff !important; 
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2); 
}

/* YouTube */
.yt:hover { 
    background: #FF0000 !important; 
    border-color: #FF0000 !important; 
    box-shadow: 0 8px 15px rgba(255, 0, 0, 0.4); 
}

/* LinkedIn */
.in:hover { 
    background: #0077B5 !important; 
    border-color: #0077B5 !important; 
    box-shadow: 0 8px 15px rgba(0, 119, 181, 0.4); 
}

/* تعديل حجم الأيقونات ليتناسب مع الدائرة الكبيرة 60px */
.social-3d i {
    font-size: 28px; /* تكبير الأيقونة */
    transition: 0.3s;
}

.social-3d:hover i {
    transform: scale(1.1); /* تكبير بسيط عند اللمس */
    color: #fff; /* التأكد من بقاء لون الأيقونة أبيض */
}
.sa{
    align-items: center;
    font-family: 'Almarai', sans-serif;
}
/* مربعات الدفع - الحل النهائي */
.payment-bar-3d {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 15px;
}
.payment-card {
    background: #fff; width: 100px; height: 40px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    transform: perspective(500px) rotateX(10deg);
    box-shadow: 0 5px 0 #888; transition: 0.3s;
    
}
.payment-card img { max-width: 80%; max-height: 80%; object-fit: contain; }
.payment-card-svg {
    padding: 4px 8px;
}

.payment-card svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ضبط نيتورك الظالم */
.payment-card.network-fix img { transform: scale(0.8); }

.payment-card:hover { transform: perspective(500px) rotateX(0deg) translateY(-5px); }

/* التذييل الذهبي */
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.gold-text { color: #d4af37; font-size: 12px; }
.gold-text strong { color: #fff; text-shadow: 0 0 10px #d4af37; }



 
/* حركة الانزلاق السلسة */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* يرجع لنص المسافة عشان التكرار */
}

/* لو وقفت بالماوس يثبت */
.sponsors-ticker:hover .ticker-wrapper {
    animation-play-state: paused;
}

.home-contact-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 32%),
        linear-gradient(135deg, #f8fafc 0%, #eef4fb 100%);
}

.home-contact-wrap {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
    gap: 28px;
    align-items: start;
}

.home-contact-copy,
.home-contact-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(13, 27, 42, 0.12);
}

.home-contact-copy {
    padding: 34px 30px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 27, 42, 0.06);
    color: #0d1b2a;
    font-size: 14px;
    font-weight: 700;
}

.home-contact-copy h2 {
    margin-bottom: 16px;
    color: #0d1b2a;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.3;
}

.home-contact-copy p {
    color: #526072;
    font-size: 17px;
    line-height: 1.9;
}

.home-contact-direct {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.home-contact-direct a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: #0d1b2a;
    text-decoration: none;
    font-weight: 700;
}

.home-contact-direct a i {
    color: #d4af37;
    font-size: 18px;
}

.home-contact-card {
    padding: 30px;
}

.contact-form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.contact-form-alert.is-success {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.contact-form-alert.is-error {
    background: rgba(220, 38, 38, 0.1);
    color: #991b1b;
    border: 1px solid rgba(220, 38, 38, 0.16);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.home-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #0d1b2a;
    font-weight: 700;
}

.home-contact-form input,
.home-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(13, 27, 42, 0.14);
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
    color: #223145;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
    outline: none;
    border-color: #1e88e5;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.14);
}

.home-contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-full {
    grid-column: 1 / -1;
}

.contact-submit-btn {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 15px 28px;
    background: linear-gradient(135deg, #0d1b2a, #1e88e5);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(13, 27, 42, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(13, 27, 42, 0.26);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 18px 34px rgba(18, 140, 126, 0.32);
    z-index: 9998;
    animation: whatsappFloat 2.2s ease-in-out infinite, whatsappPulse 2.2s ease-out infinite;
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.03);
}

@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35), 0 18px 34px rgba(18, 140, 126, 0.32); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 18px 34px rgba(18, 140, 126, 0.32); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 18px 34px rgba(18, 140, 126, 0.32); }
}

/* ================= 8. MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        width: min(94%, 100%);
    }

    .topbar {
        height: auto;
        padding: 12px 0 !important;
        font-size: 14px !important;
    }

    .topbar .container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .topbar .left,
    .topbar .right {
        width: 100%;
        text-align: center;
        font-size: 14px !important;
        line-height: 1.7;
    }

    .topbar .right {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 8px;
    }

    .lang-switcher,
    .currency-switcher {
        margin: 0 !important;
    }

    .header {
        padding: 10px 0;
    }

    .header .container {
        flex-direction: column;
        justify-content: center;
        gap: 14px;
    }

    .logo img {
        height: 64px;
    }

    .nav {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .nav a,
    .dropbtn {
        font-size: 13px !important;
        line-height: 1.3;
        padding: 8px 10px;
        background: rgba(212, 175, 55, 0.12);
        border-radius: 8px;
        text-transform: none;
    }

    .dropdown {
        display: block !important;
    }

    .dropdown-content {
        position: static;
        min-width: 100%;
        margin-top: 6px;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .dropdown-content a {
        font-size: 13px !important;
    }

    .hero,
    #hero-section {
        height: auto;
        min-height: 420px;
    }

    .hero-content {
        padding: 32px 16px 40px;
    }

    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.35;
    }

    .hero-content p {
        font-size: 15px !important;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .home-contact-section {
        padding: 48px 0;
    }

    .home-contact-wrap,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .home-contact-copy,
    .home-contact-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .home-contact-copy p {
        font-size: 15px;
    }

    .home-contact-direct a {
        width: 100%;
        word-break: break-word;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .search-box {
        margin-top: -20px !important;
        width: calc(100% - 20px) !important;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        border-width: 4px;
        border-radius: 14px;
    }

    .search-group {
        width: 100%;
        padding: 8px 0;
        border: 0 !important;
        border-bottom: 1px solid #eee !important;
    }

    .search-group:last-of-type {
        border-bottom: 0 !important;
    }

    .search-form input,
    .search-form select,
    .search-form button,
    .search-btn {
        width: 100% !important;
        min-height: 48px;
        font-size: 14px;
    }

    .hotels,
    .destinations {
        padding: 48px 0;
    }

    .hotel-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .destination-card {
        height: 200px;
    }

    .destination-card span {
        left: 14px;
        bottom: 14px;
        font-size: 17px;
    }

    .sponsor-ticker-wrapper {
        padding: 16px 0;
    }

    .sponsor-item {
        font-size: 1rem;
        margin: 0 24px;
    }

    .site-footer {
        padding: 36px 0 22px;
    }

    .site-footer h1,
    .site-footer h2,
    .site-footer h4,
    .footer-bottom p.gold-text {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .footer-info-strip {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links-inline,
    .contact-details-inline {
        gap: 10px;
    }

    .contact-details-inline span {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-bar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-3d {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .payment-bar-3d {
        gap: 10px;
    }

    .payment-card {
        width: calc(50% - 10px);
        min-width: 0;
        height: 46px;
        transform: none;
        box-shadow: 0 4px 0 #888 !important;
    }

    .gold-text {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 24px !important;
    }

    .hero-content p {
        font-size: 14px !important;
    }

    .nav a,
    .dropbtn {
        width: calc(50% - 8px);
        text-align: center;
    }

    .payment-card {
        width: 100%;
    }

    .search-box {
        width: calc(100% - 14px) !important;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .topbar .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .topbar .left,
    .topbar .right {
        width: 100% !important;
        font-size: 13px !important;
        line-height: 1.6 !important;
        justify-content: center !important;
        text-align: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .topbar .left span {
        display: none !important;
    }

    .topbar a,
    .topbar .btn-outline,
    .topbar .lang-btn {
        font-size: 12px !important;
        padding: 7px 10px !important;
    }

    .lang-switcher,
    .currency-switcher {
        width: auto !important;
        margin: 0 !important;
    }

    .lang-dropdown {
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: 140px !important;
    }

    .header {
        padding: 10px 0 !important;
    }

    .header .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .logo {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .logo a {
        display: inline-flex !important;
        justify-content: center !important;
    }

    .logo img {
        max-width: 140px !important;
        height: auto !important;
        max-height: 58px !important;
    }

    .nav {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .nav > a,
    .nav .dropbtn {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        padding: 10px 8px !important;
        margin: 0 !important;
        min-height: 44px !important;
        background: rgba(212, 175, 55, 0.12) !important;
        border-radius: 10px !important;
    }

    .nav .dropdown {
        width: 100% !important;
    }

    .dropdown-content {
        width: 100% !important;
        margin-top: 6px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .dropdown-content a {
        font-size: 13px !important;
        padding: 10px !important;
        line-height: 1.4 !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .topbar .left,
    .topbar .right {
        font-size: 12px !important;
    }

    .nav {
        grid-template-columns: 1fr !important;
    }

    .nav > a,
    .nav .dropbtn {
        font-size: 13px !important;
    }
}
