/* =========================================================
   SINAI TRIPS
   PREMIUM CLEAN UI
========================================================= */

:root{

    --primary:#0d6efd;
    --primary-dark:#084298;

    --secondary:#ffc107;

    --dark:#111111;
    --brown:#3b2416;
    --brown-dark:#29180e;

    --gray:#6c757d;
    --light:#f7f8fc;
    --white:#ffffff;

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);
    --shadow:0 15px 40px rgba(0,0,0,.12);
    --shadow-lg:0 30px 60px rgba(0,0,0,.18);

    --radius:18px;
    --radius-lg:28px;

    --transition:.35s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    margin:0 !important;
    padding:0 !important;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f7f8fc;

    color:#222;

    overflow-x:hidden;

    line-height:1.7;
}

img{

    max-width:100%;

    display:block;
}

a{

    text-decoration:none;

    transition:var(--transition);
}

section{

    padding:90px 0;

    margin:0;
}

.container{

    max-width:1240px;
}


/* =========================================================
   NAVBAR - BLACK PREMIUM
========================================================= */

.navbar{

    position:relative;

    z-index:1000;

    width:100%;

    min-height:62px;

    padding:4px 0;

    margin:0 !important;

    background:#000000 !important;

    box-shadow:0 8px 25px rgba(0,0,0,.35);

    transition:.35s ease;
}


/* LOGO */

.navbar-logo{

    width:auto;

    height:55px;

    object-fit:contain;

    margin-right:10px;
}


/* LOGO TEXT */

.navbar-logo-text{

    color:#ffffff !important;

    font-size:28px;

    font-weight:700;

    letter-spacing:.4px;
}


/* BOOTSTRAP NAVBAR BRAND */

.navbar .navbar-brand{

    color:#ffffff !important;
}

.navbar .navbar-brand span{

    color:#ffffff !important;
}


/* NAV LINKS */

.navbar .nav-link{

    position:relative;

    color:#ffffff !important;

    font-size:16px;

    font-weight:500;

    margin-left:18px;

    padding:10px 4px !important;
}


.navbar .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:2px;

    width:0;

    height:3px;

    margin:auto;

    background:#ffc107;

    border-radius:20px;

    transition:.3s ease;
}


.navbar .nav-link:hover{

    color:#ffc107 !important;
}


.navbar .nav-link:hover::after{

    width:100%;
}


/* LANGUAGE */

.navbar .dropdown-menu{

    border:0;

    border-radius:14px;

    padding:8px;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    background:#ffffff;
}


.navbar .dropdown-item{

    border-radius:10px;

    padding:9px 14px;

    font-size:14px;
}


.navbar .dropdown-item:hover{

    background:#f1f5ff;

    color:#0d6efd;
}


/* TOGGLER */

.navbar-toggler{

    border:1px solid rgba(255,255,255,.6) !important;

    padding:7px 10px;

    border-radius:10px;

    background:transparent !important;
}


.navbar-toggler:focus{

    box-shadow:0 0 0 3px rgba(255,193,7,.2);
}


.navbar-toggler-icon{

    filter:brightness(0) invert(1);
}


/* BOOK NOW */

.navbar-book-btn{

    background:#ffc107 !important;

    border:0 !important;

    color:#222 !important;

    padding:11px 24px !important;

    font-weight:700;

    box-shadow:0 8px 20px rgba(255,193,7,.25);

    transition:.3s ease;
}


.navbar-book-btn:hover{

    background:#ffca2c !important;

    color:#222 !important;

    transform:translateY(-2px);
}


/* BOOTSTRAP BTN PRIMARY */

.navbar .btn-primary{

    background:#ffc107 !important;

    border-color:#ffc107 !important;

    color:#222 !important;

    box-shadow:0 8px 20px rgba(255,193,7,.25);
}


.navbar .btn-primary:hover{

    background:#ffca2c !important;

    border-color:#ffca2c !important;

    color:#222 !important;

    transform:translateY(-2px);
}


/* =========================================================
   TOP INFO BAR
========================================================= */

.top-info-bar{

    position:relative;

    z-index:900;

    width:100%;

    min-height:42px;

    margin:0 !important;

    padding:0 !important;

    background:
        linear-gradient(
            90deg,
            #0066ff,
            #004dcc,
            #0066ff
        );

    color:#fff;

    display:flex;

    align-items:center;

    box-shadow:0 4px 12px rgba(0,0,0,.12);
}


.top-info-content{

    width:100%;

    min-height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:55px;

    font-size:13px;

    font-weight:500;
}


.top-info-content span{

    display:flex;

    align-items:center;

    gap:7px;

    white-space:nowrap;
}


.top-info-content i{

    font-size:14px;

    color:#ffc107;
}


/* =========================================================
   PHONE NUMBER - WHITE
========================================================= */

.top-info-content a{

    color:#ffffff !important;

    text-decoration:none !important;
}


.top-info-content a:hover{

    color:#ffffff !important;
}


/* =========================================================
   REMOVE WHITE SPACE BEFORE HERO
========================================================= */

section:has(#heroSlider){

    padding-top:0 !important;

    padding-bottom:0 !important;

    margin-top:0 !important;
}


#heroSlider{

    width:100%;

    margin:0 !important;

    padding:0 !important;

    display:block;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn{

    border-radius:50px;

    padding:13px 30px;

    font-weight:600;

    transition:.35s ease;
}


.btn-primary{

    background:#0d6efd;

    border:none;

    box-shadow:0 10px 25px rgba(13,110,253,.25);
}


.btn-primary:hover{

    background:#0b5ed7;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(13,110,253,.35);
}


.btn-warning{

    background:#ffc107;

    border:none;

    color:#222;

    box-shadow:0 10px 25px rgba(255,193,7,.25);
}


.btn-warning:hover{

    background:#ffca2c;

    color:#222;

    transform:translateY(-3px);
}


.btn-success{

    box-shadow:0 10px 25px rgba(25,135,84,.25);
}


/* =========================================================
   HERO
========================================================= */

.carousel{

    position:relative;

    width:100%;

    margin:0 !important;

    padding:0 !important;

    overflow:hidden;

    border-radius:0;
}


.carousel-inner{

    margin:0 !important;

    padding:0 !important;
}


.carousel-item{

    position:relative;

    overflow:hidden;

    margin:0 !important;

    padding:0 !important;
}


.carousel-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.28);

    z-index:1;

    pointer-events:none;
}


.carousel-item img{

    width:100%;

    height:86vh;

    min-height:620px;

    object-fit:cover;

    object-position:center center;

    filter:brightness(.68) saturate(1.08);

    transform:scale(1);

    transition:transform 8s ease;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    will-change:transform;
}

@media (max-width:768px){

    .carousel-item img{

        transform:none !important;

        transition:none !important;
    }

    .carousel-item.active img{

        transform:none !important;
    }

}

/* =========================================================
   HERO CAPTION
========================================================= */

.carousel-caption{

    position:absolute !important;

    top:50% !important;

    left:50% !important;

    right:auto !important;

    bottom:auto !important;

    transform:translate(-50%,-50%) !important;

    width:92% !important;

    max-width:1000px !important;

    margin:0 !important;

    padding:20px !important;

    text-align:center !important;

    z-index:5 !important;
}


.carousel-caption h1{

    font-size:52px;

    line-height:1.18;

    font-weight:700;

    color:#fff;

    margin:0 0 14px;

    text-shadow:0 4px 15px rgba(0,0,0,.85);
}


.carousel-caption p{

    max-width:820px;

    margin:0 auto 18px;

    color:#fff;

    font-size:19px;

    line-height:1.55;

    text-shadow:0 3px 10px rgba(0,0,0,.8);
}


.carousel-caption .btn{

    margin:4px;
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge{

    display:inline-block;

    background:rgba(255,193,7,.96);

    color:#222;

    padding:8px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:14px;

    box-shadow:0 8px 20px rgba(0,0,0,.15);
}


/* =========================================================
   HERO SEARCH DESKTOP
========================================================= */

.hero-search{

    width:100%;

    max-width:900px;

    margin:18px auto 0;

    padding:7px;

    background:#fff;

    border-radius:60px;

    box-shadow:0 18px 40px rgba(0,0,0,.22);
}


.hero-search form{

    width:100%;

    display:flex;

    align-items:center;
}


.search-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding:6px 16px;

    flex:1;

    min-width:0;
}


.search-item i{

    flex-shrink:0;

    color:#0d6efd;

    font-size:19px;
}


.search-item select,
.search-item input{

    width:100%;

    min-width:0;

    border:none !important;

    outline:none !important;

    box-shadow:none !important;

    background:transparent !important;

    padding:8px 4px;
}


.hero-search-btn{

    flex-shrink:0;

    height:52px;

    padding:0 25px;

    border-radius:50px;

    font-weight:700;

    border:0;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-title{

    font-size:48px;

    font-weight:700;

    margin-bottom:15px;

    color:#222;
}


.section-subtitle{

    font-size:19px;

    color:#777;

    max-width:750px;

    margin:auto;

    line-height:1.8;
}


/* =========================================================
   DESTINATIONS
========================================================= */

.destination-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    box-shadow:var(--shadow);

    transition:.45s;

    cursor:pointer;

    background:#fff;
}


.destination-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);
}


.destination-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.6s;
}


.destination-card:hover img{

    transform:scale(1.08);
}


.destination-info{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:35px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.92)
    );

    color:#fff;
}


.destination-info h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:8px;
}


.destination-info p{

    margin:0;

    font-size:17px;

    color:#ddd;
}


/* =========================================================
   CARDS
========================================================= */

.card{

    border:none;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.4s;

    background:#fff;
}


.card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);
}


.card-img-top{

    transition:.6s;
}


.card:hover .card-img-top{

    transform:scale(1.06);
}


.card-body{

    padding:28px;
}


.card h4{

    font-size:25px;

    font-weight:700;

    margin-bottom:15px;
}


.card h3{

    font-size:30px;

    font-weight:700;

    color:#0d6efd;
}


.card-footer{

    background:#fff;

    border:none;

    padding:25px;
}


.badge{

    font-size:14px;

    padding:9px 15px;

    border-radius:30px;

    font-weight:600;
}


/* =========================================================
   ICON BOX
========================================================= */

.icon-box{

    width:80px;

    height:80px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

    font-size:34px;

    background:#eef4ff;

    color:#0d6efd;

    transition:.4s;
}


.card:hover .icon-box{

    background:#0d6efd;

    color:#fff;

    transform:rotate(360deg);
}


/* =========================================================
   STATS
========================================================= */

.stats-section{

    background:linear-gradient(
        135deg,
        #0d6efd,
        #4e9dff
    );

    color:#fff;

    padding:90px 0;
}


.stats-section h2{

    font-size:58px;

    font-weight:700;

    margin-bottom:12px;
}


.stats-section p{

    font-size:19px;

    opacity:.95;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery img{

    border-radius:22px;

    transition:.45s;

    box-shadow:var(--shadow-sm);
}


.gallery img:hover{

    transform:scale(1.05);

    box-shadow:var(--shadow-lg);
}


.gallery-section{

    padding:100px 0;

    background:#f8f9fa;
}


.gallery-title{

    font-size:48px;

    font-weight:700;

    text-align:center;

    margin-bottom:15px;
}


.gallery-subtitle{

    text-align:center;

    color:#777;

    margin-bottom:60px;

    font-size:20px;
}


.gallery-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap:25px;
}


.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.15);
}


.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;
}


.gallery-item:hover img{

    transform:scale(1.08);
}


.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:25px;

    background:linear-gradient(
        rgba(0,0,0,0),
        rgba(0,0,0,.75)
    );

    opacity:0;

    transition:.4s;
}


.gallery-item:hover .gallery-overlay{

    opacity:1;
}


.gallery-overlay h4{

    color:#fff;

    font-size:28px;

    margin:0;
}


.gallery-overlay p{

    color:#ddd;

    margin:5px 0 0;
}


/* =========================================================
   FEATURED TOURS
========================================================= */

.featuredSwiper{

    padding:10px 5px 55px;
}


.featuredSwiper .swiper-slide{

    height:auto;
}


.featuredSwiper .card{

    transition:.3s;

    border-radius:20px;

    overflow:hidden;

    background:#fff;
}


.featuredSwiper .card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.18);
}


.featuredSwiper img{

    transition:.4s;
}


.featuredSwiper .card:hover img{

    transform:scale(1.06);
}


.featuredSwiper .card-body{

    padding:22px;
}


.featuredSwiper h5{

    font-weight:700;

    min-height:58px;

    line-height:1.35;
}


.featuredSwiper .card img{

    width:100%;

    height:210px !important;

    object-fit:cover;
}


.featuredSwiper .swiper-button-next,
.featuredSwiper .swiper-button-prev{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}


.featuredSwiper .swiper-button-next::after,
.featuredSwiper .swiper-button-prev::after{

    font-size:18px;

    font-weight:bold;

    color:#0d6efd;
}


.featuredSwiper .swiper-pagination-bullet{

    width:10px;

    height:10px;
}


.featuredSwiper .swiper-pagination-bullet-active{

    background:#0d6efd;
}


/* =========================================================
   FEATURES
========================================================= */

.features-slider{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:18px;
}


.feature-item .card{

    height:100%;

    border-radius:18px;

    padding:22px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #f8fbff
        );

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}


.feature-item .card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(13,110,253,.15);
}





/* =========================================================
   HURGHADA MOST POPULAR TOURS
========================================================= */

.hurghada-section{
    background:#fff;
}

.hurghadaSwiper{
    position:relative;
    padding-bottom:45px;
}

.hurghadaSwiper .card{
    border-radius:18px;
    overflow:hidden;
    transition:.3s ease;
}

.hurghadaSwiper .card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.15) !important;
}

.hurghadaSwiper .card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.4s ease;
}

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

.hurghadaSwiper .swiper-button-next,
.hurghadaSwiper .swiper-button-prev{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 18px rgba(0,0,0,.15);
}

.hurghadaSwiper .swiper-button-next::after,
.hurghadaSwiper .swiper-button-prev::after{
    font-size:16px;
    font-weight:800;
}

@media(max-width:768px){

    .hurghadaSwiper{
        padding-bottom:40px;
    }

    .hurghadaSwiper .card img{
        height:210px;
    }

}







/* =========================================================
   DESTINATION SLIDER
========================================================= */

.destinationsSwiper{

    position:relative;

    padding:0 60px;
}


.destinationsSwiper .swiper-button-prev,
.destinationsSwiper .swiper-button-next{

    width:48px;

    height:48px;

    background:#fff;

    border-radius:50%;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

    color:#0d6efd;
}


.destinationsSwiper .swiper-button-prev{

    left:-5px;
}


.destinationsSwiper .swiper-button-next{

    right:-5px;
}


.destinationsSwiper .swiper-button-prev::after,
.destinationsSwiper .swiper-button-next::after{

    font-size:20px;

    font-weight:bold;
}


/* =========================================================
   GLASS
========================================================= */

.glass{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:25px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-card{

    background:#fff;

    border-radius:25px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;
}


.testimonial-card::before{

    content:"★★★★★";

    position:absolute;

    top:20px;

    right:25px;

    font-size:18px;

    color:#ffc107;

    letter-spacing:2px;
}


.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);
}


.testimonial-card img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;
}


.testimonial-card h5{

    margin:15px 0 5px;

    font-weight:700;

    font-size:22px;
}


.testimonial-card p{

    color:#666;

    line-height:1.9;

    margin-top:20px;
}


/* =========================================================
   FAQ
========================================================= */

.accordion-item{

    border:none;

    border-radius:18px !important;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:var(--shadow-sm);
}


.accordion-button{

    font-size:18px;

    font-weight:600;

    padding:22px;

    background:#fff;
}


.accordion-button:not(.collapsed){

    background:#0d6efd;

    color:#fff;
}


.accordion-button:focus{

    box-shadow:none;
}


.accordion-body{

    padding:25px;

    font-size:17px;

    line-height:1.8;

    color:#666;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter{

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #4a95ff
        );

    border-radius:30px;

    padding:70px;

    color:#fff;

    text-align:center;

    box-shadow:var(--shadow-lg);
}


.newsletter h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;
}


.newsletter input{

    height:60px;

    border-radius:50px;

    padding-left:25px;

    border:none;
}


.newsletter .btn{

    height:60px;

    padding:0 35px;
}


/* =========================================================
   FOOTER
========================================================= */

footer{

    background:#101722;

    color:#ddd;

    padding-top:80px;

    margin-top:0;
}


footer h3,
footer h5{

    color:#fff;

    font-weight:700;

    margin-bottom:20px;
}


footer p{

    line-height:1.9;

    color:#bfc6d1;
}


footer ul{

    padding:0;

    list-style:none;
}


footer li{

    margin-bottom:12px;
}


footer a{

    color:#bfc6d1;

    transition:.3s;
}


footer a:hover{

    color:#ffc107;

    padding-left:5px;
}


footer hr{

    border-color:rgba(255,255,255,.08);

    margin:40px 0;
}


.footer-logo{

    height:70px;

    width:auto;

    object-fit:contain;
}


/* =========================================================
   SOCIAL
========================================================= */

.social-icons{

    display:flex;

    align-items:center;

    gap:10px;
}


.social-icons a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:48px;

    height:48px;

    border-radius:50%;

    background:#1f2b3b;

    color:#fff;

    font-size:20px;

    transition:.35s;
}


.social-icons a:hover{

    background:#ffc107;

    color:#222;

    transform:translateY(-5px);
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float{

    position:fixed;

    bottom:25px;

    right:25px;

    width:68px;

    height:68px;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:34px;

    box-shadow:0 15px 35px rgba(0,0,0,.30);

    z-index:9999;

    transition:.35s;
}


.whatsapp-float:hover{

    transform:scale(1.1);

    background:#1ebe5d;

    color:#fff;
}


/* =========================================================
   FORMS
========================================================= */

.form-control,
.form-select{

    border-radius:15px;

    padding:12px 18px;

    border:1px solid #ddd;
}


.form-control:focus,
.form-select:focus{

    box-shadow:0 0 0 .25rem rgba(13,110,253,.15);

    border-color:#0d6efd;
}


/* =========================================================
   TABLE
========================================================= */

.table{

    background:#fff;

    border-radius:20px;

    overflow:hidden;
}


.table th{

    background:#0d6efd;

    color:#fff;
}


/* =========================================================
   UTILITIES
========================================================= */

.rounded-4{

    border-radius:25px !important;
}


.rounded-xl{

    border-radius:30px;
}


.shadow-soft{

    box-shadow:0 12px 30px rgba(0,0,0,.08);
}


.hover-lift{

    transition:.35s;
}


.hover-lift:hover{

    transform:translateY(-8px);
}


.py-5{

    padding-top:90px !important;

    padding-bottom:90px !important;
}


.mb-5{

    margin-bottom:70px !important;
}


.img-fluid{

    border-radius:20px;
}


.card-title{

    font-weight:700;
}


.card-text{

    color:#666;

    line-height:1.8;
}


/* =========================================================
   TRIP DETAILS
========================================================= */

.trip-details-page{

    max-width:1180px;
}


.trip-details-page .row{

    align-items:flex-start;
}


.trip-details-page #mainImage{

    height:480px !important;

    object-fit:cover !important;
}


.trip-details-page .gallery-thumb{

    height:80px !important;

    object-fit:cover !important;
}


.trip-details-page .col-lg-5 h1{

    font-size:36px !important;

    line-height:1.25 !important;
}


.trip-details-page .col-lg-5 > .sticky-top > .card{

    border-radius:18px !important;
}


.trip-details-page .col-lg-5 .card-body{

    padding:22px !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:992px){

    section{

        padding:70px 0;
    }


    section:has(#heroSlider){

        padding-top:0 !important;

        padding-bottom:0 !important;
    }


    .section-title{

        font-size:36px;
    }


    .navbar-logo-text{

        font-size:25px;
    }


    .destination-card img{

        height:240px;
    }


    .features-slider{

        grid-template-columns:
            repeat(2,1fr);
    }


    .carousel-item img{

        height:78vh;

        min-height:560px;
    }


    .carousel-caption h1{

        font-size:42px;
    }


    .carousel-caption p{

        font-size:17px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

    #heroSlider .carousel-item > img{

        height:500px !important;

        min-height:500px !important;

        max-height:500px !important;

        object-fit:cover;

        object-position:center center;
    }


    .navbar{

        min-height:43px;

        padding:0;

        background:#000000 !important;
    }


    .navbar-logo{

        height:36px;

        margin-right:7px;
    }


    .navbar-logo-text{

        font-size:23px;

        color:#fff !important;
    }


    .navbar .navbar-brand span{

        color:#fff !important;
    }


    .navbar-collapse{

        margin-top:12px;

        padding:12px 5px;

        background:#000000;

        border-radius:15px;
    }


    .navbar .nav-link{

        margin-left:0;

        padding:10px 8px !important;
    }


    .navbar-book-btn{

        width:100%;

        text-align:center;
    }


    .navbar .btn-primary{

        width:100%;

        text-align:center;

        margin-top:8px;
    }


    .top-info-bar{

        min-height:38px;

        padding:5px 0;
    }


    .top-info-content{

        min-height:28px;

        gap:8px 16px;

        font-size:10px;

        flex-wrap:wrap;

        line-height:1.3;
    }


    .carousel{

        border-radius:0 0 25px 25px;

        margin:0 !important;

        padding:0 !important;
    }


    .carousel-item img{

        height:500px !important;

        min-height:500px !important;

        max-height:500px !important;

        object-position:center center;
    }


    .carousel-caption{

        top:41% !important;

        left:50% !important;

        right:auto !important;

        bottom:auto !important;

        transform:translate(-50%,-58%) !important;

        width:94% !important;

        max-width:94% !important;

        padding:12px 10px !important;
    }


    .carousel-caption h1{

        font-size:29px;

        line-height:1.25;

        margin-bottom:12px;

        text-shadow:0 4px 12px rgba(0,0,0,.9);
    }


    .carousel-caption p{

        font-size:14px;

        line-height:1.5;

        margin-bottom:12px;

        text-shadow:0 3px 10px rgba(0,0,0,.9);
    }


    .hero-badge{

        font-size:12px;

        padding:7px 16px;

        margin-bottom:10px;
    }


    .carousel-caption .btn{

        padding:10px 20px;

        font-size:13px;

        margin:3px;
    }


    .hero-search{

        width:94% !important;

        max-width:360px !important;

        margin:16px auto 0 !important;

        padding:7px !important;

        border-radius:38px !important;

        background:#ffffff !important;

        box-shadow:
            0 10px 30px rgba(0,0,0,.28) !important;
    }


    .hero-search form{

        display:flex !important;

        width:100%;

        align-items:center;

        min-height:46px;
    }


    .hero-search .search-item{

        display:none !important;
    }


    .hero-search form::before{

        content:"Search tours...";

        flex:1;

        min-width:0;

        display:flex;

        align-items:center;

        height:44px;

        padding-left:18px;

        padding-right:8px;

        color:#555;

        font-size:14px;

        font-weight:500;

        text-align:left;

        white-space:nowrap;
    }


    .hero-search-btn{

        width:44px !important;

        min-width:44px !important;

        height:44px !important;

        padding:0 !important;

        border-radius:50% !important;

        display:flex !important;

        justify-content:center;

        align-items:center;

        flex-shrink:0;

        box-shadow:0 5px 15px rgba(255,193,7,.35);
    }


    .hero-search-btn i{

        font-size:17px !important;

        margin:0 !important;
    }


    .hero-search-btn .search-button-text{

        display:none !important;
    }


    .section-title{

        font-size:30px;
    }


    .section-subtitle{

        font-size:16px;
    }


    .btn{

        padding:11px 23px;

        font-size:14px;
    }


    .card-body{

        padding:20px;
    }


    .card h4{

        font-size:22px;
    }


    .stats-section{

        padding:60px 0;
    }


    .stats-section h2{

        font-size:38px;
    }


    .features-slider{

        display:flex;

        grid-template-columns:none;

        overflow-x:auto;

        overflow-y:hidden;

        gap:18px;

        padding:10px 5px 20px;

        scroll-snap-type:x mandatory;

        scrollbar-width:none;
    }


    .features-slider::-webkit-scrollbar{

        display:none;
    }


    .feature-item{

        flex:0 0 calc(100% - 30px);

        max-width:calc(100% - 30px);

        scroll-snap-align:center;
    }


    .feature-item .card{

        min-height:240px;

        padding:18px;
    }


    .destinations-slider{

        display:flex;

        flex-wrap:nowrap;

        overflow-x:auto;

        overflow-y:hidden;

        gap:16px;

        padding:10px 15px 20px;

        scroll-snap-type:x mandatory;

        scrollbar-width:none;
    }


    .destinations-slider::-webkit-scrollbar{

        display:none;
    }


    .destination-item{

        flex:0 0 calc(100% - 20px);

        max-width:calc(100% - 20px);
    }


    .destination-card{

        border-radius:22px;
    }


    .destination-card img{

        height:240px;
    }


    .destination-info{

        padding:20px;
    }


    .destination-info h3{

        font-size:28px;
    }


    .destination-info p{

        font-size:15px;
    }


    .swiper-button-next,
    .swiper-button-prev{

        display:none !important;
    }


    footer{

        text-align:center;
    }


    footer .social-icons{

        justify-content:center;
    }


    .social-icons{

        justify-content:center;
    }


    .whatsapp-float{

        width:58px;

        height:58px;

        font-size:28px;

        right:18px;

        bottom:18px;
    }


    .trip-details-page{

        width:100%;

        max-width:100%;

        padding:15px 12px !important;
    }


    .trip-details-page #mainImage{

        height:220px !important;

        width:100% !important;

        border-radius:14px !important;

        margin-bottom:8px !important;
    }


    .trip-details-page .gallery-thumb{

        height:58px !important;

        border-radius:8px !important;
    }


    .trip-details-page .col-lg-5{

        width:100%;
    }


    .trip-details-page .sticky-top{

        position:static !important;
    }


    .trip-details-page .col-lg-5 h1{

        font-size:23px !important;

        line-height:1.3 !important;
    }


    .trip-details-page .card-body{

        padding:15px !important;
    }


    .trip-details-page section{

        padding:20px 0 !important;

        margin-bottom:10px !important;
    }


    .trip-details-page section h2{

        font-size:20px !important;

        margin-bottom:12px !important;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width:576px){

    .navbar-logo{

        height:60px;
    }


    .navbar-logo-text{

        font-size:21px;
    }


    .top-info-content{

        gap:5px 10px;

        font-size:9px;
    }


    .carousel-item img{

        height:490px !important;

        min-height:490px !important;

        max-height:490px !important;
    }


    .carousel-caption{

        top:40% !important;

        width:95% !important;

        max-width:95% !important;

        padding:10px 8px !important;
    }


    .carousel-caption h1{

        font-size:26px;

        line-height:1.22;

        margin-bottom:10px;
    }


    .carousel-caption p{

        display:none;
    }


    .hero-badge{

        font-size:11px;

        padding:6px 13px;

        margin-bottom:8px;
    }


    .hero-search{

        width:95% !important;

        max-width:350px !important;

        margin-top:12px !important;

        padding:7px !important;

        border-radius:38px !important;
    }


    .hero-search form{

        min-height:46px;
    }


    .hero-search form::before{

        height:44px;

        padding-left:17px;

        font-size:13px;
    }


    .hero-search-btn{

        width:44px !important;

        min-width:44px !important;

        height:44px !important;
    }


    .hero-search-btn i{

        font-size:17px !important;
    }


    .carousel-caption .btn{

        font-size:12px;

        padding:8px 15px;
    }


    .section-title{

        font-size:26px;
    }


    .search-box{

        padding:20px;
    }


    .trip-details-page{

        padding-left:10px !important;

        padding-right:10px !important;
    }


    .trip-details-page #mainImage{

        height:195px !important;
    }


    .trip-details-page .col-lg-5 h1{

        font-size:21px !important;
    }


    .trip-details-page .gallery-thumb{

        height:52px !important;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width:400px){

    .carousel-item img{

        height:470px !important;

        min-height:470px !important;

        max-height:470px !important;
    }


    .carousel-caption{

        top:38% !important;

        width:96% !important;

        max-width:96% !important;
    }


    .carousel-caption h1{

        font-size:23px;
    }


    .hero-badge{

        font-size:10px;
    }


    .hero-search{

        width:94% !important;

        max-width:320px !important;

        margin-top:10px !important;
    }


    .hero-search form::before{

        font-size:12px;

        padding-left:15px;
    }


    .hero-search-btn{

        width:42px !important;

        min-width:42px !important;

        height:42px !important;
    }

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar{

    width:9px;
}


::-webkit-scrollbar-track{

    background:#eef2f7;
}


::-webkit-scrollbar-thumb{

    background:#0d6efd;

    border-radius:20px;
}


::-webkit-scrollbar-thumb:hover{

    background:#0b5ed7;
}


/* =========================================================
   SELECTION
========================================================= */

::selection{

    background:#ffc107;

    color:#222;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}


.fade-up{

    animation:fadeUp .8s ease;
}



/* =========================================================
   TOURS SWIPER RESPONSIVE
========================================================= */

.featuredSwiper,
.hurghadaSwiper{
    width:100%;
    overflow:hidden;
}


.featuredSwiper .swiper-slide,
.hurghadaSwiper .swiper-slide{
    height:auto;
}


/* MOBILE */
@media(max-width:768px){

    .featuredSwiper,
    .hurghadaSwiper{

        padding-left:15px;
        padding-right:15px;

    }


    .featuredSwiper .swiper-slide,
    .hurghadaSwiper .swiper-slide{

        width:85% !important;

    }

}


/* TABLET */

@media(min-width:769px) and (max-width:1199px){

    .featuredSwiper .swiper-slide,
    .hurghadaSwiper .swiper-slide{

        width:45% !important;

    }

}


/* DESKTOP 4 CARDS */

@media(min-width:1200px){

    .featuredSwiper .swiper-slide,
    .hurghadaSwiper .swiper-slide{

        width:25% !important;

    }

}




/* =========================================================
   END
========================================================= */
/* =========================================================
   FINAL MOBILE HERO POSITION
========================================================= */

@media (max-width:768px){

    #heroSlider .carousel-caption{
        transform: translate(-50%, -65%) !important;
    }

}

@media (max-width:400px){

    #heroSlider .carousel-caption{
        transform: translate(-50%, -65%) !important;
    }

}

/* Footer Tours color */
footer a[href*="trips"]{
    color:#ffc107 !important;
}


/* =====================================================
   MOBILE SEARCH BUTTON + POPUP
===================================================== */

.mobile-search-modal{
    display:none;
}



@media(min-width:769px){

    .mobile-search-modal{
        display:none !important;
    }

}

















@media(max-width:768px){

    .static-hero .carousel-caption p{
        font-size:16px !important;
        line-height:1.5 !important;
    }

}


@media(max-width:768px){

    .static-hero .static-hero-content{
        bottom:130px !important;
    }

}


@media(max-width:768px){

    .static-hero-content{
        transform:translateY(-35px) !important;
    }

}


@media(max-width:768px){

    .static-hero-content{
        transform:none !important;
    }

    .static-hero-content > .hero-badge,
    .static-hero-content > h1,
    .static-hero-content > p,
    .static-hero-content > .mt-4{
        position:relative !important;
        top:-25px !important;
    }

}








/* FINAL MOBILE SEARCH BAR */
@media (max-width:768px){

    .static-hero .hero-search{
        display:block !important;
        position:relative !important;
        width:96% !important;
        max-width:none !important;
        margin:15px auto 0 !important;
        padding:0 !important;
        background:none !important;
        box-shadow:none !important;
    }

    .static-hero .hero-search form{
        display:flex !important;
        width:100% !important;
        height:36px !important;
        margin:0 !important;
        padding:0 !important;
        background:#ffc107 !important;
        border-radius:6px !important;
        overflow:hidden !important;
        box-shadow:0 4px 15px rgba(0,0,0,.25) !important;
    }

    .static-hero .hero-search .search-item{
        display:none !important;
    }

    .static-hero .hero-search .row{
        display:flex !important;
        width:100% !important;
        margin:0 !important;
    }

    .static-hero .hero-search .col-lg-2{
        display:block !important;
        width:100% !important;
        padding:0 !important;
    }

    .static-hero .hero-search-btn{
        display:block !important;
        width:100% !important;
        height:36px !important;
        min-height:36px !important;
        border:0 !important;
        border-radius:6px !important;
        background:#ffc107 !important;
        color:#fff !important;
        font-size:14px !important;
        font-weight:700 !important;
    }

    .static-hero .hero-search-btn i{
        font-size:14px !important;
        margin-right:6px !important;
    }

}


/* =====================================================
   MOBILE SEARCH BAR - FINAL CLEAN
===================================================== */

@media (max-width:768px){

    .static-hero .hero-search{
        display:block !important;
        position:relative !important;
        width:94% !important;
        max-width:none !important;
        margin:12px auto 0 !important;
        padding:0 !important;
        background:transparent !important;
        box-shadow:none !important;
    }

    .static-hero .hero-search form{
        display:flex !important;
        align-items:center !important;
        width:100% !important;
        height:36px !important;
        margin:0 !important;
        padding:0 !important;
        background:#ffc107 !important;
        border-radius:6px !important;
        box-shadow:0 4px 12px rgba(0,0,0,.22) !important;
        overflow:hidden !important;
    }

    .static-hero .hero-search .search-item{
        display:none !important;
    }

    .static-hero .hero-search .row{
        display:flex !important;
        width:100% !important;
        margin:0 !important;
    }

    .static-hero .hero-search .col-lg-2{
        display:block !important;
        width:100% !important;
        padding:0 !important;
    }

    .static-hero .hero-search-btn{
        display:block !important;
        width:100% !important;
        min-width:100% !important;
        height:36px !important;
        min-height:36px !important;
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        border-radius:6px !important;
        background:#ffc107 !important;
        color:#fff !important;
        font-size:14px !important;
        font-weight:700 !important;
        line-height:36px !important;
    }

    .static-hero .hero-search-btn i{
        display:inline-block !important;
        margin-right:6px !important;
        font-size:14px !important;
    }

    .static-hero .hero-search-btn .search-button-text{
        display:inline !important;
    }

}

/* MOBILE SEARCH - THINNER */
@media (max-width:768px){

    .static-hero .hero-search form{
        height:26px !important;
        min-height:26px !important;
    }

    .static-hero .hero-search-btn{
        height:26px !important;
        min-height:26px !important;
        line-height:26px !important;
        font-size:12px !important;
    }

    .static-hero .hero-search-btn i{
        font-size:12px !important;
    }

}

/* =====================================================
   MOBILE SEARCH BAR - THIN FINAL OVERRIDE
===================================================== */

@media (max-width:768px){

    .static-hero .hero-search{
        width:94% !important;
        max-width:none !important;
        height:24px !important;
        margin:10px auto 0 !important;
        padding:0 !important;
        background:transparent !important;
        box-shadow:none !important;
    }

    .static-hero .hero-search form{
        width:100% !important;
        height:24px !important;
        min-height:24px !important;
        padding:0 !important;
        margin:0 !important;
        background:#ffc107 !important;
        border-radius:5px !important;
        overflow:hidden !important;
    }

    .static-hero .hero-search .row{
        width:100% !important;
        height:24px !important;
        margin:0 !important;
    }

    .static-hero .hero-search .search-item{
        display:none !important;
    }

    .static-hero .hero-search .col-lg-2{
        width:100% !important;
        height:24px !important;
        padding:0 !important;
    }

    .static-hero .hero-search-btn{
        width:100% !important;
        height:24px !important;
        min-height:24px !important;
        padding:0 !important;
        margin:0 !important;
        border:0 !important;
        border-radius:5px !important;
        background:#ffc107 !important;
        color:#fff !important;
        font-size:11px !important;
        line-height:24px !important;
    }

    .static-hero .hero-search-btn i{
        font-size:11px !important;
        margin-right:4px !important;
    }

}

/* =====================================================
   FINAL MOBILE SEARCH - THIN GOLD BAR
===================================================== */

@media (max-width:768px){

    .static-hero .hero-search{
        display:block !important;
        width:94% !important;
        max-width:none !important;
        margin:10px auto 0 !important;
        padding:0 !important;
        background:transparent !important;
        box-shadow:none !important;
    }

    .static-hero .hero-search form{
        display:flex !important;
        align-items:center !important;
        width:100% !important;
        height:32px !important;
        min-height:32px !important;
        margin:0 !important;
        padding:2px !important;
        background:#ffc107 !important;
        border-radius:6px !important;
        box-shadow:0 3px 10px rgba(0,0,0,.20) !important;
    }

    .static-hero .hero-search .search-item{
        display:none !important;
    }

    .static-hero .hero-search .row{
        display:flex !important;
        width:100% !important;
        margin:0 !important;
    }

    .static-hero .hero-search .col-lg-2{
        display:block !important;
        width:100% !important;
        padding:0 !important;
    }

    .static-hero .hero-search form::before{
        content:"Search Tours..." !important;
        display:flex !important;
        flex:1 !important;
        align-items:center !important;
        height:28px !important;
        padding-left:12px !important;
        color:#5c4700 !important;
        font-size:12px !important;
        font-weight:600 !important;
    }

    .static-hero .hero-search-btn{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        width:42px !important;
        min-width:42px !important;
        height:28px !important;
        min-height:28px !important;
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        border-radius:5px !important;
        background:#fff !important;
        color:#ffc107 !important;
        font-size:0 !important;
    }

    .static-hero .hero-search-btn i{
        display:block !important;
        font-size:13px !important;
        color:#ffc107 !important;
    }

    .static-hero .hero-search-btn .search-button-text{
        display:none !important;
    }

}



