/* Custom CSS for Alash Travel Website */
@import url('https://fonts.googleapis.com/css2?family=Poltawski+Nowy:ital,wght@0,400..700;1,400..700&display=swap');
/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
body {
    font-family: "Poltawski Nowy", serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a1a2a;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    background: rgba(10, 26, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo{
    height: 60px;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto; /* centers the underline under the word */
    bottom: 0;
    width: 50%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}


/*Search Form */

:root {
    --gold: #a87c2c;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.btn-gold {
    background-color: var(--gold);
    border: none;
    border-radius: 25px;
    font-weight: 500;
}

.btn-gold:hover {
    background-color: #8f6b22;
}

.search-form-wrapper {
    margin-top: -190px;
    padding-bottom: 2rem;
    z-index: 5;
    position: relative;
}

.search-box {
    background: #fff;
    border: 3px solid #007bff;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Form fields with icons inside */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #888;
    font-size: 0.9rem;
}

.input-icon select,
.input-icon input {
    padding-left: 2rem;
}



/* Show underline only on hover or if active */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    opacity: 1;
}


/* Optional: uncomment to change text color on hover/active */
/*
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffc107 !important;
}
*/

.btn-outline-light {
    border-color: #ffc107;
    color: #ffc107;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
}

.btn-outline-light:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}

/* Hero Section */
/* Full height hero background */
.hero-section {
    background-size: cover;
    background-position: top;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background-repeat: no-repeat;
    transition: background-position 0.3s ease;
    will-change: background-position;
}

.inner-hero{
    height: 400px !important;
    padding-top: 100px;
    min-height: auto !important;
    background-image: url("/assets/images/inner_hero.png");
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

/* Ensure navbar overlays slider */
.navbar {
    z-index: 1000;
    background: transparent !important;
}

/* Hero content inside overlay */
.hero-content,
.search-form-container {
    position: relative;
    z-index: 2;
}

.hero-content h1.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Slider navigation right */
.slider-nav {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #fff;
    z-index: 99;
    text-align: right;
    padding-right: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
}

.slider-nav .dots .dot {
    margin: 10px 0;
    cursor: pointer;
    opacity: 0.6;
    font-size: 14px;
    padding-right: 10px;
    transition: 0.3s;
}

.slider-nav .dots .dot.active {
    opacity: 1;
    font-weight: bold;
}

/* Social media vertical left */
.social-icons-left {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    gap: 15px;
}

.social-icons-left span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    color: #ccc;
}

.social-icons-left a {
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons-left a:hover {
    color: #ffc107;
}

/* === Hero Section Animations === */

.hero-title {
    transition: transform 0.2s ease;
}

/* تأثير دخول الخلفية */
#heroSlider .carousel-item {
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: scale(1.05);
}

#heroSlider .carousel-item.active {
    opacity: 1;
    transform: scale(1);
}

/* محتوى السلايد */
#heroSlider .carousel-item .hero-content {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s ease;
}

#heroSlider .carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* scroll-down تأثير */
#heroSlider .scroll-down {
    animation: scrollFadeUp 2s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes scrollFadeUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* social icons from left */
.social-icons-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/********************************************************/

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.search-form .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search-form .form-control,
.search-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.95rem;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

/* Section Styles */
.section-badge {
    background: linear-gradient(45deg, #4a90e2, #7ed321);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title_dest {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #b0c4de;
    margin-bottom: 2rem;
}

/* Destinations Section */
.destinations-section {
    background-color: #0a1a2a;
    color: white;
}

.destination-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-card h6 {
    color: #ffffff;
    font-weight: 600;
}


   /*About us section */
.about-section {
    background-color: #04121d;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 15%;
    left: -10px;
    width: 100px;
    height: 100px;
    background-image: url('/assets/images/about_bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
}

.about-label {
    position: relative;
    padding-left: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-number {
    font-size: 3.5rem;
    color: #687887ad;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -32px;
    z-index: 0;
}

.more_btn{
    background-color: #113D48;
    color: white;
}
.more_btn:hover{
    background-color: #08282f;
}

.about-badge {
    color: #FFEC00;
    font-weight: bold;
    letter-spacing: 2px;
    z-index: 1;
    position: relative;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-number {
    font-size: 3.5rem;
    color: #687887ad;
    font-weight: 900;
    position: relative;
    top: -2px;
    z-index: 0;
}

.heading-line {
    height: 2px;
    background-color: #FFEC00; /* الأصفر */
    width: 30px;
    margin-left: -50px;
    z-index: 3;
}

.recent-gallery-title{
    position: relative;
    left: 37%;
}

.section-title {
    color: #FFEC00;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 18px;
    margin: 0;
}


.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* صور */
.about-photos {
    position: relative;
    height: 500px;
    width: 400px;
    margin: auto;
}

.about-photos .img-main {
    width: 200px;
    height: 380px;
    border-radius: 150px 150px 0 150px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

.about-photos .img-circle {
    width: 180px;
    height: 180px;
    border-radius: 150px 150px 150px 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
}

.about-photos .img-half-top {
    width: 180px;
    height: 180px;
    border-radius: 150px 0 150px 150px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 200px;
}

.about-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.btn-outline-light:hover {
    background-color: #ffc107;
    color: #04121d;
    border-color: #ffc107;
}


/* Vision Mission Section */
.vision-mission-section {
    background-color: #0a1a2a;
    color: #fff;
    position: relative;
    padding-bottom: 80px;
}

/* أيقونات */
.vision-box .icon,
.mission-box .icon {
    width: 40px;
    height: auto;
}

/* العناوين */
.vision-box .title,
.mission-box .title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

/* النص */
.vision-box .desc,
.mission-box .desc {
    color: #b0c4de;
    font-size: 1rem;
    line-height: 1.7;
}

/* صورة البنت */
.character-img {
    position: absolute;
    right: -230px;
    bottom: -80px; /* تجعلها لاصقة في أسفل القسم */
    z-index: 2;
}

.character-img img {
    max-width: 70%;
    height: auto;
    transform: translateY(-20px); /* تجعلها طالعة من فوق */
}


/* خلفية المعالم الرمادية */
.vision-mission-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background-image: url('/assets/images/landmarks-bg.png');
    background-repeat: repeat-x;
    background-size: contain;
    /*opacity: 0.1;*/
    z-index: 1;
}


/* Services Section */
.services-section {
    background-color: #0a1a2a;
    color: white;
    position: relative;
    padding: 80px 0;
    background-image: url("/assets/images/services_bg.png");
}


.service-box {
    background-color: #0d2233;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    background: #3a3a3a9e;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: white;
    color: #243546;
    border-radius: 15px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-box h5 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-box p {
    color: #ccc;
    font-size: 0.95rem;
    min-height: 75px;
}

.learn-more {
    color: #FFEC00;
    font-weight: 500;
    display: inline-block;
    /*margin-top: 1rem;*/
    text-decoration: none;
}


/* Packages Section */
.tour-packages-section {
    background-color: #0a1a2a;
    color: #fff;
}

.package-card {
    /*background: #fff;*/
    color: #000;
    border-radius: 1rem;
    overflow: hidden;
    /*box-shadow: 0 0 10px rgba(0,0,0,0.05);*/
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}


.package-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Zoom image slightly on hover */
.package-card:hover .image-container img {
    transform: scale(1.07);
    transition: transform 0.5s ease;
}

/* Heart pulse effect */
.package-card:hover .heart-icon {
    background-color: #ff4d4d;
    color: white;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Animate tour-rate-div badge */
.package-card:hover .tour-rate-div {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.book-btn:hover {
    background-color: #a07416;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #000;
    width: 32px;
    text-align: center;
}
.card-body {
    padding: 1rem;
}
.badge-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.title {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.location {
    font-size: 0.85rem;
    color: #3E3E3E !important;
    margin-bottom: 0.3rem;
}

.stars {
    font-size: 0.85rem;
    color: #3E3E3E;
    margin-bottom: 0.3rem;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
}
.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}
.book-btn {
    background-color: #c79623;
    color: white;
    padding: 6px 15px;
    border-radius: 1rem;
    font-size: 0.9rem;
    text-decoration: none;
}
.view-more-btn {
    background-color: #124f56;
    color: white;
    padding: 10px 25px;
    border-radius: 2rem;
    font-size: 1rem;
    text-decoration: none;
}

.tour-rate-div{
    width: 90%;
    background-color: white;
    border-radius: 7px;
    padding: 10px;
    margin: auto;
    margin-top: -35px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* ← هذا هو الظل */
}
.tour-rate-div .badge{
    color: #444;
}
/* Gallery Section */
.pleasure-section {
    background-color: #0a1a2a;
    color: white;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

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

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

/* Testimonials Section */

.testimonial-section {
    background-color: #0d1c24;
    color: white;
    padding: 80px 0;
}

.section-header h6 {
    font-size: 14px;
    color: #fadd00;
    letter-spacing: 3px;
    text-transform: uppercase;
}


.section-header h2 {
    font-size: 36px;
    margin-top: 10px;
}

.section-header p {
    max-width: 600px;
    color: #ccc;
    margin-top: 15px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    justify-content: flex-start; /* حتى تبدأ الكروت من اليسار */
}

.testimonial-slider-wrapper {
    margin-top: 60px;
    overflow: hidden; /* ✅ ضع الـ overflow هنا */
    position: relative;
}

.testimonial-card {
    flex: 0 0 48%;
    background-color: #1a2b33;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card.active {
    border-color: #1da1f2;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.card-header h5 {
    margin: 0;
    font-size: 18px;
}

.card-header p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

.stars i {
    color: #FFEC00;
    margin-left: 2px;
}

.testimonial-card hr {
    margin: 20px 0;
    border-color: #2d3d44;
}

.card-body .quote-start,
.card-body .quote-end {
    font-size: 27px;
    color: #ccc;
    font-weight: bold;
    line-height: 0px;
}

.card-body p {
    font-size: 13px;
    margin-top: 10px;
    color: #eee;
}

.testimonial-nav {
    margin-top: 20px;
    text-align: left;
}

.slider-btn {
    background: #d8d8d8;
    color: #100f0f;
    border: none;
    padding: 15px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    margin: 0 3px;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #fadd00;
    color: #000;
}



/* Review Destinations Section */
.reviews-destinations-section {
    background-color: #0a1a2a;
    color: white;
}

.review-destination-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.review-destination-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.destination-image {
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.destination-content {
    padding: 1.5rem;
}

.destination-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.destination-description {
    color: #b0c4de;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.destination-rating {
    margin-bottom: 1rem;
}

/* Partners Section */
.partners-section {
    background-color: #132a42;
}

.partner-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #4a90e2, #7ed321);
    color: white;
}

.newsletter-section h3 {
    font-weight: 700;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 25px 0 0 25px;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* Footer */

.footer-section {
    background-color: #000;
    font-size: 16px;
}

.footer-section .border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) #36383a !important;
}

.footer-section .border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) #36383a !important;
}
.footer-section .form-control::placeholder {
    color: white;
}

.footer-section ul li {
    margin-bottom: 6px;
    color: #ccc;
}

.footer-section h6 {
    color: #fff;
}

.footer-section .btn-gold {
    background-color: #B58E43;
    color: #fff;
    border: none;
}

.footer-section .btn-gold:hover {
    background-color: #9e7635;
}

.footer-section .input-group .form-control,
.footer-section .input-group .input-group-text {
    border-radius: 30px;
}

.footer-section .social-icons a {
    font-size: 18px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .search-form-container {
        margin-top: 2rem;
    }

    .hero-section {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .search-form-container {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a1a2a;
}

::-webkit-scrollbar-thumb {
    background: #4a90e2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #357abd;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #357abd, #2968a3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.btn-outline-primary {
    border: 2px solid #4a90e2;
    color: #4a90e2;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #4a90e2;
    border-color: #4a90e2;
    transform: translateY(-2px);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Booking Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(45deg, #4a90e2, #7ed321);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    padding: 2rem;
}

.form-floating .form-control {
    border-radius: 8px;
}

.form-floating .form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* Success notification */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 8px;
}

/* Fix for bg-light sections */
.bg-light {
    background-color: #132a42 !important;
}

.bg-light .section-title {
    color: #ffffff;
}

.bg-light .section-subtitle {
    color: #b0c4de;
}


.destination-section {
    background-color: #04121d;
    background-image: url('/assets/images/dest_bg.png'); /* Optional decorative bg */
    background-repeat: repeat;
}


.section-subtitle {
    font-size: 1rem;
    color: #ccc;
}

.highlight-yellow {
    color: #FFEC00;
    font-weight: 600;
}



.destination-search-box {
    max-width: 500px;
}

.destination-search-box .form-control {
    border-radius: 0;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding-left: 1rem;
}

.destination-search-box .input-group-text {
    border-radius: 30px 0 0 30px;
}

.destination-search-box .btn-gold {
    background-color: #a87c2c;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.category-card img {
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.rotate-left img {
    transform: rotate(-5deg);
}

.rotate-right img {
    transform: rotate(5deg);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background-color: #ffc107;
    opacity: 1;
}


.gallery-section {
    background: url('/assets/images/line.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

.section-header h6 {
    font-size: 16px;
    color: #FFEC00;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 32px;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 220px 220px;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layout placement */
.item-1 {
    grid-row: 1 / 3; /* تمتد على الصفين */
    display: flex;
    align-items: center;
    justify-content: center
}

.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.item-4 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.item-5 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.item-6 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.item-7 {
    grid-row: 1 / 3; /* تمتد على الصفين */
    display: flex;
    align-items: center;
    justify-content: center
}

.item-1 img,
.item-7 img {
    height: 50%; /* نصف ارتفاع العمود */
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-item.video::after {
    content: '\f04b'; /* Font Awesome play icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: rgba(255, 255, 255, 0.85);
    color: #000;
    padding: 7px 18px;
    border-radius: 50%;
    z-index: 2;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/*Blog Section*/

.travel-section {
    background-color: #06121D;
    color: #fff;
    background-image: url('/assets/images/Image+Background.png'); /* مسار الصورة */
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 150px; /* عرض كامل، وارتفاع 100px */
    padding-bottom: 150px; /* تأمين مساحة لظهور الخلفية */
}

.travel-section .card-body{
    background: white;
    border-radius: 20px;
    position: relative;
    top: -17px;
}

.package-card .card-body{
    background: white;
    border-radius: 20px;
    position: relative;
    top: -22px;
    padding-top: 50px;
}

.rating i{
    color: #FFC700;
}

.travel-section .badge{
    background-color: red;
}
.section-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-top: -20px;
    color: #fff;
}

.btn-viewmore {
    background-color: #1D3B3F;
    color: #fff;
    border-radius: 40px;
    padding: 8px 20px;
    font-weight: 500;
    margin-top: -15px;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.btn-gold {
    background-color: #B58E43;
    color: #fff;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 16px;
}

.blog-card h6 {
    transition: font-size 0.3s ease;
}

.blog-card h6:hover {
    font-size: 1.05rem; /* تكبير بسيط جدًا */
    color: #B58E43;
    cursor: pointer;
}

.blog-image-wrapper {
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    position: relative;
}

.blog-image-wrapper img {
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.2);
}

.btn-gold:hover {
    background-color: #9c7335;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    transition: all 0.3s ease;
}



.logo-marquee-wrapper {
    background-color: transparent;
    overflow: hidden;
    position: relative;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}


.logo-item img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item:hover img {
    transform: scale(1.1);
}

.logo-track {
    display: flex;
    width: calc(250px * 16); /* total width based on 16 items */
    animation: scrollLogos 30s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    width: 250px;
    margin: 0 10px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.logo-item img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.text-muted{
    rgba(255, 255, 255, 0.75) !important
}

/* ===== Service Details Section ===== */
.service_details-section {
    padding: 80px 0;
    background-color: #0B1D26;
    color: #fff;
    background-image: url('/assets/images/imgbg.png'); /* مسار الصورة */
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 150px; /* عرض كامل، وارتفاع 100px */
    padding-bottom: 150px; /* تأمين مساحة لظهور الخلفية */
}

.service_details-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.service_details-section p {
    color: #b8c1ca;
    font-size: 15px;
    line-height: 1.8;
}

.service_details-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 40px;
    align-items: center;
}

.service_details-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.service_details-images img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.service_details-box {
    flex: 1;
    padding: 30px;
    border-radius: 12px;
    background-color: #13293d;
}

.service_details-box h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

.service_details-box strong {
    color: #fff;
    display: block;
    margin-top: 15px;
}

.service_details-box span {
    color: #9fc4ef;
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
}

/* ===== Bottom White Box ===== */
.service_details-highlight-box {
    background-color: #F6F6F6;
    border-radius: 18px;
    padding: 40px;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    position: relative;
}

.service_details-highlight-box .service_details-logo {
    width: 140px;
    margin-bottom: 20px;
}

.service_details-highlight-box h4 {
    font-size: 22px;
    color: #111;
    font-weight: 700;
    margin-bottom: 16px;
}

.service_details-highlight-box p {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service_details-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.service_details-badge {
    background-color: #fff;
    color: #9f7f36;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #d2b885;
    border-radius: 50px;
    padding: 6px 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service_details-contact {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service_details-contact .icon-box {
    font-size: 30px;
    color: #050707; /* لون الأيقونة */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f1f1;
}

.service_details-contact .contact-info span {
    display: block;
    font-size: 16px;
    color: #333;
}


.service_details-button {
    margin-top: 18px;
    display: inline-block;
    background-color: #b1872d;
    color: #fff;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.service_details-button:hover {
    background-color: #a17825;
}

.service_details-image-right {
    max-width: 500px;
    margin-left: auto;
    border-radius: 16px;
    margin-right: -40px;
    margin-bottom: -40px;
}

.trusted-service{
    background: white;
    border-radius: 12px;
    padding: 10px 20px;
    color: black !important;
}

.trusted-service span{
    color: #AD8025;
    font-weight: bold;
}

.breadcrumb-item a{
    color: white;
}
.breadcrumb-item.active{
    color: yellow;
    font-size: 1.5rem;
    margin-top: -5px;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: white;
    content: var(--bs-breadcrumb-divider, "/");
}


.floating-icons {
    position: relative;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* تخصيص المواقع حسب التصميم */
.icon-1 {
    top: 150px;
    right: 30px;
}

.icon-2 {
    top: 50px;
    left: 20px;
}

.icon-3 {
    top: 420px;
    left: 20px;

}

.service-card {
    background-color: #1f2e3c;
    border-radius: 18px;
    overflow: hidden;
    color: white;
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.service-card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: -30px auto 0 auto;
    background-color: white;
    color: black;
    font-size: 1.3rem;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.service-card-icon img {
    width: 30px;
    height: 30px;
}

.service-card-body {
    padding: 20px;
    text-align: center;
}

.service-card-body h5 {
    margin-bottom: 10px;
    font-weight: bold;
}

.service-card-body p {
    font-size: 14px;
    color: #c0c0c0;
}

.service-card-body .learn-more {
    display: inline-block;
    color: #f4c400;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
}

.service-card-body .learn-more span {
    margin-left: 5px;
}

.service_ad{
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.3s ease;

}
.service_ad:hover {
    transform: translateY(-5px);
}

.service-dropdown:hover .dropdown-menu {
    display: block;
    top: 100%;
    left: 0;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.2s ease-in-out;
}

.service-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    background-color: #fff;
    min-width: 220px;
    border-radius: 8px;
    padding: 0.5rem 0;
}

.service-dropdown .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    color: #333;
    /*transition: background 0.2s;*/
    position: relative;
    transition: all 0.3s ease;
    padding-left: 1.5rem; /* Space for the icon */
}
.service-dropdown .dropdown-menu .dropdown-item:before {
    content: "\f105"; /* Font Awesome chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: all 0.7s ease-in-out;
}

.service-dropdown .dropdown-menu .dropdown-item:hover {
    padding-left: 2rem;
    color: #f59e0b; /* Optional: highlight text */
}

.service-dropdown .dropdown-menu .dropdown-item:hover::before {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.service-dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
}

.blog-detail {
    padding: 60px 0;
    background: #0b1e26;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.blog-detail .category {
    background: #e1b349;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-detail .blog-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.blog-detail .blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
    color: #bbb;
}

.blog-detail .author {
    display: flex;
    align-items: center;
}

.blog-detail .author-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 8px;
}

.blog-detail .main-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
}

.blog-detail .blog-paragraph {
    line-height: 1.8;
    color: #cfd8dc;
    margin-bottom: 20px;
}

.blog-detail .section-heading {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    color: #fff;
}

.sidebar-title {
    font-weight: bold;
    color: #ffc107;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.recent-post {
    background: #152c33;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.recent-post .recent-date {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 5px;
}

.recent-post .recent-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.recent-post .recent-author {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 8px;
}

.btn-keep-reading {
    display: inline-block;
    background: #e1b349;
    color: #000;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
}

.social-links {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.social-links li {
    margin-bottom: 15px;
    color: #ccc;
}

.visa-section{
    background: white;
    padding: 20px;
    color: black;
    border-radius: 20px;
}
.visa-section .scrolling-flags {
    gap: 0.5rem;
    scroll-behavior: smooth;
}

.country-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-arrow {
    background-color: white;
    border: 1px solid #eee;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.country-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
    scrollbar-width: none;
    flex: 1;
}

.country-slider::-webkit-scrollbar {
    display: none;
}

.country-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s;
    background-color: white;
}

.country-pill img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.country-pill.active {
    background-color: #f0f8ff;
    font-weight: bold;
    border-color: #0d6efd;
}

.country-content-box .country-content {
    display: none;
}

.country-content-box .country-content.active {
    display: block;
}


.styled-search {
    position: relative;
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    border-radius: 999px;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    padding: 5px 10px;
    border: 1px solid #eee;
    float: right;
}

.styled-search input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 14px;
    color: #333;
    background-color: transparent;
}

.styled-search button {
    background-color: #a87c2f; /* اللون الذهبي */
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.styled-search button:hover {
    background-color: #926c27;
}

.styled-search i {
    font-size: 16px;
}

.university-section .university-card {
    position: relative;
    transition: 0.3s ease-in-out;
}

.university-section .university-card:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.university-section h6.text-warning {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.university-section ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.university-section ul li {
    margin-bottom: 5px;
    line-height: 1.6;
}

.university-section a {
    color: #0d6efd;
    font-weight: 500;
}

.carousel-item .card-category:nth-child(1){
    transform: scale(0.9) rotate(-5deg) ;
}

.carousel-item .card-category:nth-child(5) {
    transform: scale(0.9) rotate(5deg);
}
.carousel-item .card-category:nth-child(2){
    transform: scale(0.95) rotate(-4deg) translateY(-25px);
}
.carousel-item .card-category:nth-child(4) {
    transform: scale(0.95) rotate(4deg) translateY(-25px);
}
.carousel-item .card-category:nth-child(3) {
    transform: scale(0.95) ;
    margin-top: -60px;
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid white;
}

@media (max-width: 767.98px) {
    .needhelp{
        display: none;
    }
    .carousel-item .card-category:nth-child(1),
    .carousel-item .card-category:nth-child(2),
    .carousel-item .card-category:nth-child(3),
    .carousel-item .card-category:nth-child(4),
    .carousel-item .card-category:nth-child(5){
        transform: scale(0.9) rotate(0deg);
    }

    .recent-gallery-title{
        right: 0px;
    }
}


.footer-section a{
    color: white;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    transform: translateY(-50%) translateX(0);
    text-decoration: underline;
}

.trip-price-box {
    position: relative;
    padding: 10px 0;
    color: #fff;
}

.trip-price-box .icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    float: right;
    background-color: transparent;
}

.trip-price-box .icon-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.trip-price {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    width: 100%;
}

.trip-price .currency {
    font-size: 16px;
    opacity: 0.8;
    margin-right: 2px;
}

.trip-price .amount {
    font-size: 24px;
}

.trip-price .per {
    font-size: 14px;
    opacity: 0.7;
    margin-left: 4px;
}

.trip-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-image {
    flex: 1 1 60%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 450px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
}

.thumb-grid {
    flex: 1 1 38%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    height: 450px;
}

.thumb-grid img,
.more-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.thumb,
.more-photos {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}


.more-photos {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.more-photos .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: 0.3s ease;
}

.more-photos:hover .overlay {
    background: rgba(0, 0, 0, 0.7);
}

.more-photos .overlay i {
    font-size: 24px;
    margin-bottom: 5px;
}

/* Modal Style */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal img {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.gallery-modal .close {
    position: absolute;
    top: 15px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.gallery-modal .prev,
.gallery-modal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    user-select: none;
    transition: 0.3s;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.gallery-modal .prev:hover,
.gallery-modal .next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.gallery-modal .prev {
    left: 10px;
}

.gallery-modal .next {
    right: 10px;
}

.flatpickr-calendar{
    width: 100% !important;
}

.facilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.facility-box {
    background-color: #4c4c4c; /* لون داكن كما في الصورة */
    color: white;
    padding: 20px;
    border-radius: 12px;
    width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
}

.facility-box i {
    font-size: 28px;
    margin-bottom: 10px;
}

.facility-box span {
    font-size: 14px;
    font-weight: 500;
}

.accordion-item {
    background-color: #1c2a33;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    border-radius: 0;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: #243641;
    border-radius: 0 0 10px 10px;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.6;
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgba(80, 80, 80, 0.75) !important
}

.active > .page-link, .page-link.active {
    z-index: 3;
    background-color: #c79623;
    border-color: #c79623;
}


.destination-filter {
    background: #0e1b26;
    padding: 20px;
    border-radius: 16px;
    color: #fff;
}
.destination-filter select,
.destination-filter input[type="date"] {
    background-color: #1c2c36;
    border: 1px solid #3b4b55;
    color: #fff;
    border-radius: 10px;
    padding: 8px;
    width: 100%;
}
.destination-filter .range-label {
    font-size: 13px;
}
.destination-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    color: #000;
    position: relative;
}
.destination-card img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}
.destination-card .card-body {
    padding: 15px;
}
.destination-card h6 {
    font-size: 15px;
    font-weight: bold;
}
.rating-badge {
    background-color: #fff;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 12px;
}
.destination-card .price {
    font-size: 18px;
    font-weight: bold;
}
.book-now-btn {
    background-color: #B58E43;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
}
.slider-icons img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
}
.rating-stars i {
    color: gold;
}
