/*==========================
ZIENA TOURS
STYLE.CSS
PART 1
==========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#222;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{
width:90%;
max-width:1350px;
margin:auto;
}

/*==========================
HEADER
==========================*/

.header{

position:fixed;
top:0;
left:0;
width:100%;
padding:22px 0;
background:rgba(255,255,255,.90);
backdrop-filter:blur(20px);
z-index:9999;
transition:.35s;

}

.header .container{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo img{

height:90px;

}

.navbar{

display:flex;
align-items:center;
gap:35px;

}

.navbar a{

color:#222;
font-weight:600;
font-size:16px;
transition:.3s;

}

.navbar a:hover{

color:#d4af37;

}

.menu-btn{

display:none;
font-size:28px;
cursor:pointer;

}

/*==========================
HERO
==========================*/

.hero{
animation: heroZoom 18s infinite alternate;
height:100vh;
background:url("images/hero.jpg") center center/cover no-repeat;
transition: background-image 1s ease-in-out;
display:flex;
justify-content:center;
align-items:center;
position:relative;
overflow:hidden;

}

.overlay{

position:absolute;
inset:0;
background:linear-gradient(to bottom,rgba(0,0,0,.55),rgba(0,0,0,.45));

}

.hero-content{

position:relative;
z-index:2;
text-align:center;
color:white;
width:90%;
max-width:900px;

}

.hero-content h1{

font-size:74px;
font-weight:800;
line-height:1.1;
margin-bottom:25px;

}

.hero-content p{

font-size:22px;
margin-bottom:45px;

}

.hero-buttons{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

.btn{

padding:18px 36px;
border-radius:50px;
font-weight:700;
transition:.35s;

}

.btn-gold{

background:#d4af37;
color:white;

}

.btn-gold:hover{

transform:translateY(-4px);

}

.btn-whatsapp{

background:#25D366;
color:white;

}

.btn-whatsapp:hover{

transform:translateY(-4px);

}

/*==========================
STATISTICS
==========================*/

.stats{

padding:90px 0;
background:#111;

}

.stats-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.stat-box{

background:#1b1b1b;
padding:45px;
border-radius:25px;
text-align:center;
transition:.35s;

}

.stat-box:hover{

transform:translateY(-10px);

}

.stat-box h2{

font-size:56px;
color:#d4af37;
margin-bottom:12px;

}

.stat-box p{

font-size:18px;
color:#fff;

}
/*==========================
TOURS
==========================*/

.destinations{

padding:120px 0;
background:#f8f8f8;

}

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title h2{

font-size:48px;
font-weight:800;
color:#222;
margin-bottom:15px;

}

.section-title p{

font-size:19px;
color:#777;
max-width:700px;
margin:auto;

}

.destination-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
gap:35px;

}

.destination-card{

background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 18px 40px rgba(0,0,0,.08);
transition:.35s;

}

.destination-card:hover{

transform:translateY(-10px);

}

.destination-card img{

width:100%;
height:260px;
object-fit:cover;
transition:.5s;

}

.destination-card:hover img{

transform:scale(1.08);

}

.destination-info{

padding:30px;

}

.tour-tag{

display:inline-block;
background:#d4af37;
color:#fff;
padding:8px 16px;
border-radius:30px;
font-size:12px;
font-weight:700;
margin-bottom:18px;

}

.destination-info h3{

font-size:30px;
margin-bottom:15px;

}

.destination-info p{

color:#666;
line-height:1.8;
margin-bottom:25px;

}

.destination-info a{

font-weight:700;
color:#d4af37;
font-size:17px;

}

/*==========================
WHY US
==========================*/

.why-us{

padding:120px 0;
background:#fff;

}

.features-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
gap:30px;

}

.feature-card{

background:#fafafa;
padding:40px;
border-radius:22px;
text-align:center;
transition:.35s;
box-shadow:0 12px 35px rgba(0,0,0,.07);

}

.feature-card:hover{

transform:translateY(-10px);

}

.feature-card i{

font-size:48px;
color:#d4af37;
margin-bottom:20px;

}

.feature-card h3{

font-size:24px;
margin-bottom:15px;

}

.feature-card p{

color:#666;
line-height:1.8;

}

/*==========================
GALLERY
==========================*/

.gallery-section{

padding:120px 0;
background:#f8f8f8;

}

.gallery-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;

}

.gallery-grid img{

width:100%;
height:260px;
object-fit:cover;
border-radius:20px;
transition:.35s;
cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}
/*==========================
CONTACT
==========================*/

.contact-section{

padding:120px 0;
background:#ffffff;

}

.contact-box{

display:flex;
justify-content:center;
align-items:center;
gap:25px;
flex-wrap:wrap;
margin-top:40px;

}

.contact-btn{

background:#d4af37;
color:#fff;
padding:18px 34px;
border-radius:50px;
font-weight:700;
transition:.35s;
display:flex;
align-items:center;
gap:12px;

}

.contact-btn:hover{

transform:translateY(-5px);

}

.contact-btn i{

font-size:20px;

}

/*==========================
FOOTER
==========================*/

footer{

background:#111;
padding:70px 0;
text-align:center;
color:#fff;

}

footer img{

height:95px;
margin:auto;
margin-bottom:20px;

}

footer h2{

font-size:32px;
margin-bottom:15px;

}

footer p{

color:#bbb;
line-height:2;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.hero-content h1{

font-size:56px;

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.destination-grid{

grid-template-columns:repeat(2,1fr);

}

.features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.header{

padding:18px 0;

}

.logo img{

height:70px;

}

.navbar{

display:none;

}

.menu-btn{

display:block;

}

.hero{

height:90vh;

}

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

}

.stats-grid{

grid-template-columns:1fr;

}

.destination-grid{

grid-template-columns:1fr;

}

.features-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.contact-box{

flex-direction:column;

}

.contact-btn{

width:100%;
justify-content:center;

}

.section-title h2{

font-size:34px;

}

.section-title p{

font-size:17px;

}

}

@media(max-width:480px){

.hero-content h1{

font-size:32px;

}

.hero-content p{

font-size:16px;

}

.logo img{

height:60px;

}

}
.hero-rating{

display:inline-flex;

align-items:center;

gap:12px;

padding:10px 22px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.25);

border-radius:50px;

margin-bottom:25px;

font-size:18px;

color:#FFD54A;

font-weight:700;

}

.hero-rating span{

color:white;

font-size:15px;

font-weight:500;

}
.features-section{
    background:#fff;
    padding:70px 0;
    margin-top:-60px;
    position:relative;
    z-index:20;
}

.features-section .hero-features{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.features-section .feature-box{
    width:260px;
    background:#fff;
    color:#222;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.35s;
}

.features-section .feature-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.18);
}

.features-section .feature-box i{
    font-size:42px;
    color:#D4AF37;
    margin-bottom:20px;
}

.features-section .feature-box h3{
    font-size:22px;
    margin-bottom:15px;
}

.features-section .feature-box p{
    color:#666;
    line-height:1.7;
}
/* =========================
   Smooth Animations
========================= */

html{
    scroll-behavior:smooth;
}

*{
    transition:0.3s ease;
}

/* =========================
   Glass Effect
========================= */

.tour-card,
.destination-card,
.service-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:20px;
    overflow:hidden;
}

/* =========================
   Hover Effect
========================= */

.tour-card:hover,
.destination-card:hover,
.service-card:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

/* =========================
   Images Zoom
========================= */

.tour-card img,
.destination-card img{
    transition:0.6s;
}

.tour-card:hover img,
.destination-card:hover img{
    transform:scale(1.08);
}

/* =========================
   Buttons
========================= */

.btn{
    transition:.35s;
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 35px rgba(255,196,0,.45);
}

/* =========================
   Navbar
========================= */

.header{
    backdrop-filter:blur(12px);
    background:rgba(0,0,0,.35);
}

/* =========================
   Section Animation
========================= */

section{
    overflow:hidden;
}
@keyframes heroZoom{

0%{
background-size:100%;
}

100%{
background-size:110%;
}

}
.btn-gold{
    position:relative;
    overflow:hidden;
}

.btn-gold::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:60%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.7),
transparent
);

transform:skewX(-25deg);

transition:.8s;

}

.btn-gold:hover::before{

left:160%;

}
/* =========================
   Floating WhatsApp
========================= */

.floating-whatsapp{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    z-index: 9999;
    animation: whatsappFloat 2s infinite;
}

.floating-whatsapp:hover{
    transform: scale(1.15);
    background: #1ebe5d;
}
.floating-instagram{
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #E4405F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    z-index: 9999;
    animation: whatsappFloat 2s infinite;
    transition: .3s;
    
}

.floating-instagram:hover{
    transform: scale(1.15);
}

@keyframes whatsappFloat{
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-8px);
    }

    100%{
        transform: translateY(0);
    }
}
/* =========================
   REVIEWS
========================= */

.reviews{

padding:100px 0;

background:#f8f9fb;

}

.reviews-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

margin-top:60px;

}

.review-card{

background:white;

padding:35px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}

.review-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.stars{

font-size:22px;

color:#FFD700;

margin-bottom:15px;

letter-spacing:3px;

}

.review-card p{

line-height:1.8;

color:#555;

margin-bottom:25px;

}

.review-card h4{

margin-bottom:5px;

color:#111;

}

.review-card span{

color:#999;

font-size:14px;

}
/* =========================
   SWIPER REVIEWS
========================= */

.reviewsSwiper{
    margin-top:60px;
    padding-bottom:60px;
}

.reviewsSwiper .swiper-slide{
    height:auto;
}

.reviewsSwiper .swiper-pagination-bullet{
    background:#d4af37;
    opacity:.5;
}

.reviewsSwiper .swiper-pagination-bullet-active{
    opacity:1;
}
/* =========================
   LANGUAGE SELECTOR
========================= */

.language-selector{

    position:relative;

    margin-left:25px;

}

#languageBtn{

    background:white;

    border:2px solid #eee;

    border-radius:30px;

    padding:10px 18px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

#languageBtn:hover{

    border-color:#d4af37;

    color:#d4af37;

}

.language-menu{

    position:absolute;

    top:55px;

    right:0;

    width:200px;

    background:white;

    border-radius:15px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    overflow:hidden;

    display:none;

    z-index:999;

}

.language-menu.active{

    display:block;

}

.language-option{

    padding:14px 18px;

    cursor:pointer;

    transition:.3s;

    font-weight:500;

}

.language-option:hover{

    background:#f5f5f5;

    color:#d4af37;

}
html[dir="rtl"] .hero-buttons{

    flex-direction:row-reverse;

}

html[dir="rtl"] .navbar{

    direction:rtl;

}

html[dir="rtl"] .hero-content{

    text-align:center;

}
.tour-price{

margin:18px 0;

font-size:18px;

font-weight:700;

color:#d4af37;

}

.destination-info a{

display:inline-block;

margin-top:10px;

padding:12px 24px;

background:#d4af37;

color:white;

border-radius:30px;

text-decoration:none;

transition:.3s;

}

.destination-info a:hover{

transform:translateY(-3px);

background:#b9962d;

}
.video-section{

padding:100px 0;

background:#fff;

}

.video-box{

overflow:hidden;

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.video-box iframe{

display:block;

width:100%;

border:none;

}

@media(max-width:768px){

.video-box iframe{

height:250px;

}

}
.map-section{

padding:100px 0;

background:#f8f9fb;

}

.map-box{

overflow:hidden;

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.map-box iframe{

display:block;

width:100%;

border:none;

}
.faq-section{

padding:100px 0;

background:#fff;

}

.faq-item{

background:#fff;

padding:30px;

margin-bottom:20px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.3s;

}

.faq-item:hover{

transform:translateY(-5px);

}

.faq-item h3{

margin-bottom:15px;

color:#d4af37;

}

.faq-item p{

color:#555;

line-height:1.8;

}
.instagram-section{

padding:100px 0;

background:#f8f9fb;

}

.instagram-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:20px;

}

.instagram-grid img{

width:100%;

height:220px;

object-fit:cover;

border-radius:18px;

transition:.35s;

cursor:pointer;

}

.instagram-grid img:hover{

transform:scale(1.05);

}
/* PREMIUM EFFECTS */

.hero{

animation:heroZoom 18s ease-in-out infinite alternate;

}

@keyframes heroZoom{

from{

background-size:100%;

}

to{

background-size:115%;

}

}

.hero-btn{

transition:.35s;

box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.hero-btn:hover{

transform:translateY(-6px) scale(1.05);

box-shadow:0 25px 50px rgba(212,175,55,.55);

}

.whatsapp-btn{

transition:.35s;

box-shadow:0 18px 40px rgba(37,211,102,.35);

}

.whatsapp-btn:hover{

transform:translateY(-6px);

box-shadow:0 30px 60px rgba(37,211,102,.45);

}

.gallery img{

transition:.45s;

}

.gallery img:hover{

transform:scale(1.08);

filter:brightness(1.05);

}

.timeline-item{

transition:.35s;

}

.timeline-item:hover{

transform:translateX(12px);

border-left:8px solid #d4af37;

}

.info-card{

transition:.4s;

}

.info-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.18);

}