/* ===============================
   Travel Lovers Egypt
   Main Stylesheet
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
}

/* ===============================
   Container
================================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===============================
   Navbar
================================= */

.main-navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(0, 0, 0, 0.45);

    backdrop-filter:blur(0px);

}

.main-navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo img{

    height:70px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:40px;

}

nav a{

    text-decoration:none;

    color:white;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#C49A34;

}

/* ===============================
   Hero Section
================================= */

.hero{

    height:100vh;

    background-image:url("../images/hero/hero.png");

    background-size:cover;

    background-position:center;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    z-index:2;

    color:white;

    max-width:800px;

    padding:20px;

}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:64px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#16A7A8;

    color:white;

    padding:15px 38px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.btn-primary:hover{

    background:#11888A;

}

.btn-secondary{

    border:2px solid white;

    color:white;

    padding:15px 38px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#222;

}

/* =====================================
FEATURED TOURS
===================================== */

.featured-tours{

    padding:120px 0;

    background:#f8f9fa;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#16A7A8;

    letter-spacing:2px;

    font-weight:600;

}

.section-title h2{

    font-size:48px;

    margin:15px 0;

    font-family:'Playfair Display',serif;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#777;

    line-height:1.8;

}

.tour-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.tour-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.tour-card:hover{

    transform:translateY(-10px);

}

.tour-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.tour-card:hover img{

    transform:scale(1.08);

}

.tour-info{

    padding:30px;

}

.tour-info h3{

    margin-bottom:15px;

}

.tour-info p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.tour-info a{

    text-decoration:none;

    color:#16A7A8;

    font-weight:600;

}

/* ===================================
WHY US
=================================== */

.why-us{

    padding:50px 0;

    background:white;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.why-card{

    background:#fff;

    text-align:center;

    padding:45px 30px;

    border-radius:18px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.icon{

    font-size:52px;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

/*=============================
companies
==============================*/

.companies{

padding:120px 0;

background:#f8f9fa;

}

.companies-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.companies-card{

position:relative;

overflow:hidden;

border-radius:18px;

height:350px;

cursor:pointer;

}


.companies-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.companies-card:hover img{

transform:scale(1.1);

}

.companies-overlay{

position:absolute;

inset:0;

display:flex;

justify-content:center;

align-items:flex-end;

padding:35px;

background:linear-gradient(transparent,rgba(0,0,0,.8));

}

.companies-overlay h3{

color:white;

font-size:30px;

font-family:'Playfair Display',serif;

}
/*=============================
DESTINATIONS
==============================*/

.destinations{

padding:120px 0;

background:#f8f9fa;

}

.destination-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.destination-card{

position:relative;

overflow:hidden;

border-radius:18px;

height:350px;

cursor:pointer;

}

.destination-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.destination-card:hover img{

transform:scale(1.1);

}

.destination-overlay{

position:absolute;

inset:0;

display:flex;

justify-content:center;

align-items:flex-end;

padding:35px;

background:linear-gradient(transparent,rgba(0,0,0,.8));

}

.destination-overlay h3{

color:white;

font-size:30px;

font-family:'Playfair Display',serif;

}

/*====================================================
                TOUR PAGE
====================================================*/

.tour-hero{

    height:70vh;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.tour-hero img{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    top:0;

    left:0;

}

.tour-hero .overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.tour-hero-content{

    position:relative;

    z-index:2;

    color:white;

    text-align:center;

    max-width:800px;

    padding:20px;

}




.tour-hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:60px;

    margin-bottom:20px;

}

.tour-hero-content p{

    font-size:20px;

    line-height:1.8;

}

/*====================================================*/

.tour-overview,
.tour-highlights,
.tour-included,
.tour-itinerary,
.tour-gallery{

    padding:100px 0;

}

/*====================================================*/

.overview-text{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#666;

    line-height:2;

    font-size:18px;

}

/*====================================================*/

.included-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-top:50px;

}

.included-item{

    background:white;

    padding:25px;

    border-radius:15px;

    text-align:center;

    font-weight:600;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.included-item:hover{

    transform:translateY(-8px);

}

/*====================================================*/
.timeline{
    max-width:850px;
    margin:50px auto 0;
}

.timeline-item{
    border-left:5px solid #16A7A8;
    background:#f8f9fa;
    border-radius:10px;
    margin-bottom:20px;
    overflow:hidden;
}

.timeline-item summary{
    list-style:none;
    cursor:pointer;
    padding:20px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:600;
}

.timeline-item summary::-webkit-details-marker{
    display:none;
}

.timeline-item summary::after{
    content:"+";
    font-size:26px;
    color:#16A7A8;
    transition:.3s;
}

.timeline-item[open] summary::after{
    content:"−";
}

.timeline-item h4{
    margin:0;
    color:#16A7A8;
}

.timeline-item p{
    padding:0 30px 25px;
    color:#666;
    line-height:1.8;
}
.timeline-item ul{
    margin:15px 30px;
    padding-left:20px;
    color:#666;
}

.timeline-item li{
    margin-bottom:8px;
    line-height:1.7;
}

.timeline-item h5{
    margin:20px 30px 10px;
    color:#16A7A8;
}
/*====================================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:20px;

    margin-top:50px;

}

.gallery-grid img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:15px;

    transition:.4s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/*====================================================*/

.tour-cta{

    background:#16A7A8;

    color:white;

    text-align:center;

    padding:100px 20px;

}

.tour-cta h2{

    font-size:42px;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;

}

.tour-cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    line-height:1.8;

}

/*====================================================*/

.footer{
    background:#0d1b2a;
    color:#fff;
    text-align:center;
    padding:60px 20px 30px;
}

.footer-logo{
    height:90px;
    margin-bottom:20px;
}

.footer-tagline{
    color:#d5d5d5;
    margin-bottom:25px;
    font-size:16px;
    letter-spacing:.5px;
}

.footer-contact p{
    margin:8px 0;
    font-size:16px;
}

.footer-contact a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-contact a:hover{
    color:#eb8439;
}

.footer-links{
    margin:30px 0 20px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#eb8439;
}

.footer-links span{
    color:#666;
}

.footer-copy{
    margin-top:20px;
    color:#aaa;
    font-size:14px;
}

/*====================================================*/

@media(max-width:768px){

.tour-hero-content h1{

font-size:40px;

}

.tour-hero-content p{

font-size:17px;

}

.tour-cta h2{

font-size:30px;

}

}
/*====================================
CONTACT PAGE
====================================*/

.contact-page{

padding:100px 0;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:start;

}

.contact-info h2{

font-size:42px;

margin-bottom:20px;

font-family:'Playfair Display',serif;

}

.contact-info p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

.contact-item{

margin-bottom:25px;

}

.contact-item h3{

margin-bottom:8px;

color:#16A7A8;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,

.contact-form textarea{

padding:16px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

font-family:'Poppins',sans-serif;

}

.contact-form textarea{

resize:vertical;

}

.contact-form button{

border:none;

cursor:pointer;

font-size:16px;

}

.map-section iframe{

width:100%;

height:450px;

border:0;

display:block;

}

@media(max-width:900px){

.contact-wrapper{

grid-template-columns:1fr;

}

}
.active{

color:#16A7A8;

font-weight:600;

}
/*====================================
DESTINATIONS PAGE
====================================*/

.destinations-page{

    padding:100px 0;

    background:#ffffff;

}

.destination-list{

    display:flex;

    flex-direction:column;

    gap:80px;

    margin-top:60px;

}

.destination-item{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}

.destination-item:nth-child(even) img{

    order:2;

}

.destination-item:nth-child(even) .destination-content{

    order:1;

}

.destination-item img{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    transition:.4s;

}

.destination-item img:hover{

    transform:scale(1.03);

}

.destination-content h2{

    font-family:'Playfair Display',serif;

    font-size:42px;

    margin-bottom:15px;

    color:#222;

}

.destination-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.destination-content h4{

    margin-bottom:15px;

    color:#16A7A8;

    font-size:20px;

}

.destination-content ul{

    margin-left:20px;

    margin-bottom:20px;

}

.destination-content li{

    margin-bottom:10px;

    color:#555;

}

.destination-content strong{

    color:#222;

}

.destination-content .btn-primary{

    margin-top:15px;

    display:inline-block;

}

/*====================================
MOBILE
====================================*/

@media(max-width:900px){

.destination-item{

grid-template-columns:1fr;

gap:30px;

}

.destination-item:nth-child(even) img,

.destination-item:nth-child(even) .destination-content{

order:unset;

}

.destination-item img{

height:280px;

}

.destination-content h2{

font-size:34px;

text-align:center;

}

.destination-content{

text-align:center;

}

.destination-content ul{

text-align:left;

display:inline-block;

}

}

.about-team,
.our-products,
.partner-section{
    padding:90px 0;
}

.team-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    align-items:center;
}

.team-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.team-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.team-item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
}

.team-item span{
    font-size:32px;
}

.team-item h4{
    margin-bottom:6px;
    color:#0d1b2a;
}

.team-item p{
    margin:0;
}

.products-grid,
.partner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
    margin-top:45px;
}

.product-item,
.partner-card{
    background:#fff;
    padding:22px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    font-weight:500;
}

.product-item:hover,
.partner-card:hover{
    transform:translateY(-6px);
}

.dmc-box{
    margin-top:50px;
    padding:35px;
    background:#f8f9fb;
    border-left:5px solid #eb8439;
    border-radius:12px;
}

.dmc-box h3{
    margin-bottom:15px;
    color:#0d1b2a;
}

.section-intro{
    max-width:850px;
    margin:0 auto;
    text-align:center;
    color:#666;
    line-height:1.8;
}

.social-links{
    display:flex;
    justify-content:left;
    align-items:left;
    gap:18px;
    margin-top:20px;
}

.social-links a{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#ffffff;
    color:#0d1b2a;
    border-radius:50%;
    font-size:20px;
    text-decoration:none;
    transition:all .3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
}

.social-links a:hover{
    background:#eb8439;
    color:#fff;
    transform:translateY(-5px);
}
.tour-highlights{
    padding:80px 0;
    background:#f8f9fa;
}

.highlight-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.highlight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.highlight-card span{
    font-size:40px;
    display:block;
    margin-bottom:15px;
}

.highlight-card h5{
    margin-bottom:20px;
    font-weight:700;
}

.highlight-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.highlight-card li{
    margin-bottom:12px;
    color:#555;
}

.subtitle{
    color:#d4a017;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}
/*==============================
WHATSAPP FLOATING BUTTON
===============================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

}

.whatsapp-float img{

    width:35px;

}