/* ألوان Devworx */
:root {
    --dark-blue: #0D304E;
    --deeper-blue: #082C4B;
    --accent-orange: #F58307;
    --white: #FFFFFF;
    --near-white: #FEFFFF;
}

/* General */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--deeper-blue);
    line-height: 1.6;
}
/* Header & Navbar المحسن لـRTL والمواضع */
.header {
    background: linear-gradient(135deg, var(--deeper-blue), var(--dark-blue));
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative; /* للمنيو المتجاوب */
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
    z-index: 1001;
}




.loginUserDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
/*    left: -42em;*/
    color: aliceblue;
}

    .loginUserDiv a {
        text-align: center;
        text-decoration: none;
        margin-top: -7px;
    }




.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 32px;
    color: var(--white);
}

/* .nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    transition: all 0.3s ease;
} */

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(245, 131, 7, 0.2);
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.cart-wrapper {
    position: relative;
}

.cart-link {
    color: var(--white);
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-link:hover {
    background-color: rgba(245, 131, 7, 0.2);
    color: var(--accent-orange);
}

.cart-count {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}





/*===========================otp==================================*/
/* OTP Modal Background */


.otp-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.otp-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 15px; /* Prevents modal from touching edges on small screens */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

    .close-btn:hover {
        color: #ff0000;
    }

.otp-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.otp-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.otp-button {
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .otp-button:hover:not(:disabled) {
        background-color: #45a049;
    }

    .otp-button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

    .otp-button.loading::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 8px;
        border: 2px solid #fff;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.otp-section {
    margin-top: 20px;
}

#timerDisplay {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    display: block;
    text-align: center;
}

.otp-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.otp-resend {
    color: #4CAF50;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .otp-resend:hover:not(.disabled) {
        color: #45a049;
        text-decoration: underline;
    }

    .otp-resend.disabled {
        color: #ccc;
        cursor: not-allowed;
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media (max-width: 768px) {
    .otp-modal-content {
        padding: 20px;
        width: 90%;
    }

    .otp-title {
        font-size: 18px;
    }

    .otp-input, .otp-button {
        font-size: 14px;
        padding: 10px;
    }

    .close-btn {
        font-size: 25px;
    }

    .otp-resend {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .otp-modal-content {
        padding: 15px;
        width: 90%;
    }

    .otp-title {
        font-size: 16px;
    }

    .otp-input, .otp-button {
        font-size: 13px;
        padding: 8px;
    }

    .close-btn {
        font-size: 22px;
    }

    .otp-actions {
        gap: 10px;
    }

    .otp-resend {
        font-size: 12px;
    }
}


/*=============================end otp=====================================*/
























/* قسم الخدمات المعاد تصميمه */
.services-section {
    position: relative;
    padding: 100px 20px;
    background-image: linear-gradient(rgba(13, 48, 78, 0.7), rgba(13, 48, 78, 0.7)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.services-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 60px;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(13, 48, 78, 0.9), rgba(245, 131, 7, 0.1)); /* ألوان فخمة: أزرق إلى برتقالي خفيف */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(245, 131, 7, 0.2); /* ظل ذهبي فخم */
    transition: all 0.4s ease;
    height: 450px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(245, 131, 7, 0.3); /* إطار فخم */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(245, 131, 7, 0.4); /* تعزيز الظل عند hover */
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(13, 48, 78, 0.05)); /* تدرج داخلي فخم */
}

.card-content i {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.card-content h3 {
    color: var(--deeper-blue);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* لمسة فخمة */
}

.card-content p {
    color: var(--dark-blue);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}


.price-tag {
    background: linear-gradient(135deg, var(--accent-orange), #D4AF37); /* ذهبي فخم */
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(245, 131, 7, 0.3); /* ظل للسعر */
}

.card-btn {
    background: var(--accent-orange);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    align-self: flex-start;
    transition: all 0.3s ease;
}


.card-btn {
    background: linear-gradient(135deg, var(--dark-blue), var(--deeper-blue)); /* gradient فخم للزر */
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 48, 78, 0.3);
}

.card-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(13, 48, 78, 0.5);
}

@media (max-width: 480px) {
    .service-card {
        height: auto;
    }

    .price-tag {
        font-size: 16px;
        padding: 8px 15px;
    }
}



/* Hero Section - مع صورة خلفية */
.hero {
    background-image: linear-gradient(rgba(8, 44, 75, 0.6), rgba(8, 44, 75, 0.6)), url('../Images/Static/img_header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 100px 20px; /* زيادة الارتفاع لإظهار الصورة بشكل أفضل */
    position: relative;
}


.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* لتحسين الوضوح فوق الصورة */
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--dark-blue);
}

/* Offers Section - تحسينات احترافية */
.offers {
    padding: 80px 20px; /* زيادة المساحة للخلفية */
    background-image: linear-gradient(rgba(8, 44, 75, 0.4), rgba(8, 44, 75, 0.4)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80'); /* صورة خلفية سياحية عامة */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* لتأثير التمرير السلس */
    position: relative;
}

.offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(13, 48, 78, 0.2), rgba(255, 255, 255, 0.8)); /* طبقة تغطية للوضوح */
    z-index: 1;
}

.offers > * {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 40px;
    font-style: italic;
    margin-bottom: 24px;
}

.offers h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Owl Carousel تحسينات */
.owl-carousel .owl-dots {
    margin-top: 20px;
}

.owl-carousel .owl-dot.active span {
    background: var(--accent-orange);
}

.offer-card {
    background-color: rgba(255, 255, 255, 0.95); /* شفافية خفيفة للاندماج مع الخلفية */
    border: none;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(245, 131, 7, 0.3); /* ظل برتقالي جذاب */
}

.card-content {
    padding: 20px;
    text-align: right; /* RTL للعربية */
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover img {
    transform: scale(1.05);
}

.offer-card h3 {
    color: var(--deeper-blue);
    margin: 15px 0 10px;
    font-size: 20px;
}

.offer-card p {
    color: var(--dark-blue);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    height: 80px; /* ارتفاع ثابت للتوحيد */
    overflow: hidden;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 10px;
    color: var(--accent-orange);
    font-size: 14px;
}

.rating i {
    color: var(--accent-orange);
}

.price {
    font-weight: bold;
    color: var(--accent-orange);
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.book-btn {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
}

.book-btn:hover {
    background-color: var(--dark-blue);
}

/* Font Awesome للأيقونات (أضف هذا إلى <head> في HTML إذا لم يكن موجوداً) */

/* Owl Carousel Init - أضف autoplay إلى الـ JS */


/* Owl Carousel Overrides for Colors */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    color: var(--accent-orange);
    background: var(--white);
    border: 1px solid var(--accent-orange);
}

.owl-carousel .owl-nav button:hover {
    background: var(--accent-orange);
    color: var(--white);
}




/* Blog Previews */


/* Blog Section - تحسينات احترافية */
.blog {
    padding: 80px 20px;
    background-image: linear-gradient(rgba(13, 48, 78, 0.05), rgba(13, 48, 78, 0.05)), url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'); /* خلفية خفيفة سياحية */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9); /* طبقة تغطية بيضاء للوضوح */
    z-index: 1;
}

.blog > * {
    position: relative;
    z-index: 2;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog h2 {
    color: var(--deeper-blue);
    margin-bottom: 10px;
    font-size: 32px;
}

.section-subtitle {
    color: var(--dark-blue);
    font-size: 16px;
    margin: 0;
    font-style: italic;
    margin-bottom: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 131, 7, 0.2); /* ظل برتقالي جذاب */
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--dark-blue);
}

.post-meta .author {
    font-weight: bold;
    color: var(--accent-orange);
}

.date {
    color: var(--deeper-blue);
}

.read-time {
    background-color: var(--near-white);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid var(--accent-orange);
}

.blog-post h4 {
    color: var(--deeper-blue);
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
}

.blog-post p {
    color: var(--dark-blue);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    height: 70px; /* ارتفاع ثابت للتوحيد */
    overflow: hidden;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--dark-blue);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(-5px); /* حركة الأيقونة */
}




/* Newsletter */
.newsletter {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 30px;
    text-align: center;
    margin: 40px 20px;
    border-radius: 10px;
}

.newsletter h2 {
    margin-bottom: 10px;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 10px;
    width: 250px;
    border-radius: 5px;
    border: none;
}


.sup{
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}



/* Footer - تحسينات احترافية */
footer {
    background-color: var(--deeper-blue);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'); /* خلفية سياحية خفيفة */
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* شفافية منخفضة لعدم إرباك النصوص */
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}

.footer-section p {
    color: var(--near-white);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background-color: rgba(13, 48, 78, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(245, 131, 7, 0.2);
}

.contact-item i {
    font-size: 20px;
    color: var(--accent-orange);
    width: 30px;
    text-align: center;
}

.contact-item h4 {
    color: var(--white);
    margin: 0 0 5px;
    font-size: 14px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-orange);
}

.working-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.working-hours h4 {
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.branches-section .branch {
    margin-bottom: 20px;
}

.branch h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.branch p {
    margin-bottom: 10px;
    font-size: 13px;
}

.map-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid var(--accent-orange);
    border-radius: 20px;
    transition: background 0.3s ease;
}

.map-link:hover {
    background-color: var(--accent-orange);
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(13, 48, 78, 0.5);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 131, 7, 0.4);
}

.footer-bottom {
    background-color: rgba(8, 44, 75, 0.8);
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom .logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: var(--near-white);
}

.footer-bottom a {
    color: var(--accent-orange);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/*========================== Checkout============================================== */

.checkout-page {
    min-height: 100vh;
    padding: 3rem 1.5rem;
    background: radial-gradient(circle at top right, #1e88e5 0, #0d47a1 35%, #020617 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
}

.checkout-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(148, 163, 184, 0.15);
    backdrop-filter: blur(18px);
    color: #e5e7eb;
    box-sizing: border-box;
}

/* ====== Header ====== */

.checkout-header {
    margin-bottom: 2rem;
    text-align: right;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding-bottom: 1.2rem;
}

    .checkout-header h2 {
        font-size: 1.7rem;
        margin: 0 0 0.3rem;
        color: #f9fafb;
        letter-spacing: 0.03em;
    }

    .checkout-header p {
        margin: 0;
        font-size: 0.95rem;
        color: #9ca3af;
    }

/* ====== Layout Grid ====== */

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 1.8rem;
}

/* ====== Form Card ====== */

.checkout-form-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
    border-radius: 18px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
    position: relative;
    overflow: hidden;
}

    .checkout-form-card::before {
        content: "";
        position: absolute;
        inset-inline-start: -40%;
        inset-block-start: -40%;
        width: 60%;
        height: 60%;
        background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 60%);
        opacity: 0.5;
        pointer-events: none;
    }

/* ====== Form ====== */

.checkout-form {
    position: relative;
    z-index: 1;
}

    .checkout-form .form-group {
        margin-bottom: 1.1rem;
    }

        .checkout-form .form-group label {
            display: block;
            margin-bottom: 0.35rem;
            font-size: 0.9rem;
            color: #e5e7eb;
        }

        .checkout-form .form-group input,
        .checkout-form .form-group textarea {
            width: 100%;
            padding: 0.7rem 0.9rem;
            border-radius: 10px;
            border: 1px solid rgba(148, 163, 184, 0.5);
            background: rgba(15, 23, 42, 0.7);
            color: #e5e7eb;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.08s ease;
            box-sizing: border-box;
        }

            .checkout-form .form-group input::placeholder,
            .checkout-form .form-group textarea::placeholder {
                color: #6b7280;
            }

            .checkout-form .form-group input:focus,
            .checkout-form .form-group textarea:focus {
                border-color: #38bdf8;
                background: rgba(15, 23, 42, 0.9);
                box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5), 0 10px 25px rgba(15, 23, 42, 0.9);
                transform: translateY(-1px);
            }

/* ====== Validation ====== */

.validation-summary {
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.5);
    color: #fecaca;
    font-size: 0.85rem;
}

.checkout-form span.field-validation-error,
.checkout-form span[asp-validation-for] {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #fca5a5;
}

/* ====== Buttons ====== */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

/* زر المتابعة للدفع */
.btn-primary {
    width: 100%;
    margin-top: 0.6rem;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #0b1120;
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.4), 0 0 0 1px rgba(15, 23, 42, 0.7);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #0ea5e9, #38bdf8);
        transform: translateY(-1px);
        box-shadow: 0 18px 40px rgba(56, 189, 248, 0.55), 0 0 0 1px rgba(15, 23, 42, 0.8);
    }

    .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.9), 0 0 0 1px rgba(15, 23, 42, 0.9);
    }

/* زر العودة إلى السلة */
.btn-secondary {
    margin-top: 1.2rem;
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

    .btn-secondary:hover {
        background: rgba(15, 23, 42, 0.85);
        transform: translateY(-1px);
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
    }

/* ====== Summary Card ====== */

.checkout-summary-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.93));
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-sizing: border-box;
}

    .checkout-summary-card h3 {
        margin: 0 0 1rem;
        font-size: 1.1rem;
        color: #f9fafb;
    }

/* عناصر السلة */

.checkout-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}

.checkout-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.65rem 0.5rem;
    border-bottom: 1px dashed rgba(55, 65, 81, 0.7);
}

    .checkout-item:last-child {
        border-bottom: none;
    }

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.item-qty {
    font-size: 0.8rem;
    color: #9ca3af;
}

.item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f9fafb;
    white-space: nowrap;
}

/* الإجمالي */

.checkout-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.3rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.95rem;
}

    .checkout-total-row span:first-child {
        color: #e5e7eb;
    }

.total-amount {
    font-size: 1.05rem;
    font-weight: 700;
    color: #22c55e;
}

/* ملاحظة */

.checkout-note {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* نص عند عدم وجود عناصر */

.checkout-summary-card > p {
    font-size: 0.9rem;
    color: #9ca3af;
}



/* ====== Responsive ====== */

 @media (max-width: 900px) {
        .checkout-container {
            padding: 1.8rem 1.4rem;
            border-radius: 20px;
        }

        .checkout-grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .checkout-summary-card {
            order: -1;
        }
    } 

 @media (max-width: 600px) {
        .checkout-page {
            padding: 1.5rem 0.8rem;
        }

        .checkout-container {
            padding: 1.5rem 1.2rem;
            border-radius: 18px;
        }

        .checkout-header h2 {
            font-size: 1.4rem;
        }

        .checkout-header p {
            font-size: 0.85rem;
        }

        .checkout-form-card,
        .checkout-summary-card {
            padding: 1.3rem 1.1rem;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
        }

        .checkout-item {
            align-items: flex-start;
            flex-direction: row;
        }
    } 


/*===============================================Refund policy================================================*/

/* تنسيقات الصفحة الأساسية */
.policy-page-container {
    max-width: 950px;
    margin: 50px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333333;
    line-height: 1.8;
    background-color: #ffffff;
}

.policy-main-header {
    text-align: center;
    margin-bottom: 40px;
}

    .policy-main-header h1 {
        color: #004aad;
        font-size: 24px;
        margin-bottom: 20px;
    }

.intro-paragraph {
    font-size: 17px;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

.accent-line {
    width: 80px;
    height: 3px;
    background-color: #f39c12;
    margin: 20px auto;
}

/* تنسيق الكتل الرئيسية */
.policy-block {
    margin-bottom: 40px;
    padding: 25px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
}

.block-title {
    color: #004aad;
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
}

.block-intro {
    font-weight: bold;
    margin-bottom: 20px;
}

.sub-policy {
    padding: 15px;
    margin-bottom: 15px;
    border-right: 4px solid #004aad;
}

.gray-bg {
    background-color: #f9f9f9;
    border-right: 4px solid #f39c12;
}

.sub-policy h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #222;
}

/* القوائم */
.policy-list {
    padding-right: 25px;
    margin-top: 10px;
}

    .policy-list li {
        margin-bottom: 10px;
    }

/* قسم التذاكر */
.ticket-box-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ticket-status-box {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 6px;
    background-color: #ffffff;
}

.danger-border {
    border: 1px solid #e74c3c;
    border-top: 5px solid #e74c3c;
}

.primary-border {
    border: 1px solid #004aad;
    border-top: 5px solid #004aad;
}

.ticket-status-box h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

/* القسم الأخير */
.last-block {
    border: none;
    background-color: #f4f7fa;
}

.final-list {
    padding-right: 20px;
}

    .final-list li {
        margin-bottom: 15px;
    }

/* التجاوب مع الموبايل */
@media (max-width: 768px) {
    .ticket-box-container {
        flex-direction: column;
    }

    .policy-main-header h1 {
        font-size: 20px;
    }
}


/*============================================End of refund=================================================================*/

/*============================================privacy=================================================================*/

/* تنسيقات CSS مباشرة */
.privacy-page-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333333;
    line-height: 1.8;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-label {
    background-color: #004aad;
    color: #ffffff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.privacy-header h1 {
    color: #004aad;
    font-size: 26px;
    margin: 15px 0;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: #f39c12;
    margin: 20px auto;
    border-radius: 2px;
}

.privacy-content {
    background-color: #ffffff;
}

.privacy-item {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

    .privacy-item h2 {
        color: #004aad;
        font-size: 20px;
        margin-bottom: 15px;
    }

.highlight-box {
    background-color: #f8fbff;
    padding: 25px;
    border-right: 5px solid #f39c12;
    border-bottom: none;
    border-radius: 8px;
}

.styled-list {
    padding-right: 20px;
}

    .styled-list li {
        margin-bottom: 10px;
    }

/* شبكة الشركاء */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.partner-card {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
    border: 1px solid #e0e0e0;
}

/* التذييل والزر */
.privacy-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.privacy-btn {
    display: inline-block;
    margin-top: 15px;
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

    .privacy-btn:hover {
        text-decoration: underline;
    }

/* التجاوب */
@media (max-width: 600px) {
    .privacy-header h1 {
        font-size: 22px;
        
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/*============================================End of privacy=========================================================*/

/*========================== Responsive============================================== */
@media (max-width: 768px) {

.header-container {
        padding: 10px 15px;
    }

    .nav-list {
        display: none; /* إخفاء افتراضي */
        position: absolute;
        top: 100%;
        right: -40px;
        background: var(--deeper-blue);
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        animation: slideDown 0.3s ease; /* انيميشن سلس */
    }

    /* .nav-link{
        margin-right: 10em;
        font-weight: bold;
        font-size: 27px;
    } */

    .nav-list.active {
        display: flex; 
        height: 100vh;
    }

    .hamburger-btn {
        display: flex;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

   

    .services-section {
        padding: 60px 15px;
        background-attachment: scroll;
    }

    .services-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        height: auto;
    }


    header {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter input {
        width: 100%;
        max-width: 250px;
    }
    
    .hero {
        padding: 60px 20px; /* تقليل الارتفاع على الهواتف */
    }
    
    .hero h1 {
        font-size: 28px;
    }



 .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        gap: 20px;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .blog h2 {
        font-size: 28px;
    }




 .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .social-links {
        justify-content: center;
    }

    .sup {
        font-size: 10px;
        font-weight: bold ;
    }

}




@media (max-width: 480px) {




    .nav-link{
       
        font-weight: bold;
        font-size: 24px;
        justify-content: center;
    }


.cart-link{
    margin-right: 5em;
}


    .services-title {
        font-size: 28px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 20px;
    }




}