:root{

--primary:#1f3b93;
--secondary:#1d75bc;
--gold:#f39a1e;
--red:#c5162d;
--white:#ffffff;
--light:#f8fafc;
--dark:#081c3a;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
color:#222;
overflow-x:hidden;
}

html{
scroll-behavior:smooth;
}

/* =========================
TOP BAR
========================= */

.topbar{

background:var(--dark);
color:white;

display:flex;
justify-content:space-between;
align-items:center;

padding:12px 8%;

font-size:14px;

}

/* =========================
HEADER
========================= */

.header{
background:white;
position:sticky;
top:0;
z-index:1000;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 4%;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo img{
height:80px;
}

.header ul{
display:flex;
align-items:center;
gap:20px;
justify-content:center;
list-style:none;
flex-wrap:nowrap;
}

.header ul li a{
white-space:nowrap;
text-decoration:none;
color:var(--dark);
font-weight:600;
font-size:15px;
position:relative;
transition:.3s;
}

.header ul li a:hover::after{
width:100%;
}

.header ul li a:hover{
color:var(--gold);
}


.header nav{
flex:1;
display:flex;
justify-content:center;
}

.header ul li{
white-space:nowrap;
}

.header ul li a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:var(--gold);
transition:.3s;
}

.header ul li a:hover::after{
width:100%;
}

.quote-btn{
white-space:nowrap;
}

.quote-btn{
background:linear-gradient(
135deg,
var(--gold),
#ffb648
);
padding:14px 28px;
border-radius:50px;
text-decoration:none;
font-weight:700;
color:white;
white-space:nowrap;
box-shadow:0 8px 20px rgba(243,154,30,.25);
transition:.3s;
}

.quote-btn:hover{
transform:translateY(-3px);
}

.hero-image img,
.about-image img,
.destination-card img,

.tour-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
border-radius:25px;
}

/* =========================
HERO
========================= */

.hero{
min-height:100vh;
display:flex;
justify-content:space-between;
align-items:center;
padding:120px 8%;
background:
linear-gradient(
rgba(8,28,58,.75),
rgba(8,28,58,.75)
),
url("hero.png");
background-size:cover;
background-position:center;
color:white;
position:relative;
overflow:hidden;
}

.hero-content{
max-width:700px;
z-index:2;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.hero-tag{
display:inline-block;
background:rgba(255,255,255,.15);
backdrop-filter:blur(10px);
padding:12px 25px;
border-radius:50px;
margin-bottom:25px;
font-size:14px;
letter-spacing:2px;
text-transform:uppercase;
}

.hero h1{
font-size:80px;
line-height:1.05;
margin-bottom:25px;
font-weight:800;
}

.hero p{
font-size:24px;
line-height:1.8;
margin-bottom:40px;
max-width:650px;
}

.hero-image{
width:45%;
z-index:2;
}

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:30px;
animation:float 5s ease-in-out infinite;
}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}
}

.btn-primary{
display:inline-block;
padding:18px 42px;
background:var(--gold);
color:white;
text-decoration:none;
border-radius:50px;
font-weight:700;
transition:.4s;
margin-right:15px;
}

.btn-primary:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(243,154,30,.35);
}

.btn-secondary{
display:inline-block;
padding:18px 42px;
border:2px solid white;
color:white;
text-decoration:none;
border-radius:50px;
font-weight:700;
transition:.4s;
}

.btn-secondary:hover{
background:white;
color:var(--dark);
}
.tour-btn{
display:inline-block;
margin-top:20px;
padding:12px 24px;
background:var(--gold);
color:white;
text-decoration:none;
border-radius:50px;
font-weight:600;
}

.partner-box{
background:white;
padding:40px;
border-radius:20px;
font-size:20px;
font-weight:700;
color:var(--primary);
}

/* =========================
ABOUT
========================= */

.about{
display:flex;
align-items:center;
gap:60px;
padding:120px 10%;
}

.about-image{
width:500px;
height:500px;
border-radius:30px;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.about-content h2{
font-size:48px;
margin-bottom:20px;
color:var(--dark);
}

.about-content p{
line-height:2;
margin-bottom:25px;
}

.about-intro{
display:flex;
align-items:center;
gap:80px;
padding:120px 10%;
}

.about-intro-image{
flex:1;
height:550px;
border-radius:30px;
overflow:hidden;
border:none;
display:flex;
justify-content:center;
align-items:center;
}

.about-intro-image img,
.about-page-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
border-radius:30px;
}

.about-intro-content{
flex:1;
}

.section-tag{
display:inline-block;
padding:8px 18px;
background:#eef4ff;
color:var(--primary);
border-radius:50px;
font-weight:600;
margin-bottom:20px;
}

.about-intro-content h2{
font-size:52px;
line-height:1.2;
margin-bottom:25px;
color:var(--dark);
}

.about-intro-content p{
line-height:2;
margin-bottom:20px;
font-size:17px;
}

.about-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
background:var(--primary);
color:white;
padding:80px 10%;
text-align:center;
}

.about-stats h2{
font-size:60px;
color:var(--gold);
margin-bottom:10px;
}

/* =========================
SERVICES
========================= */

.services{
padding:120px 10%;
background:var(--light);
}

.services-btn{
text-align:center;
margin-top:50px;
}

.services h2{
text-align:center;
font-size:48px;
margin-bottom:60px;
color:var(--dark);
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:white;
padding:40px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card h3{
margin:20px 0;
color:var(--dark);
}

.service-row.reverse .service-image{
order:2;
}

.service-row.reverse .service-content{
order:1;
}


.service-image{
flex:1;
height:450px;
overflow:hidden;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.service-image img{
width:100%;
height:100%;
object-fit:cover;
}

.service-content{
flex:1;
}

.service-content h2{
font-size:42px;
margin-bottom:25px;
color:var(--primary);
}

.service-content p{
line-height:2;
font-size:18px;
margin-bottom:25px;
}

.feature-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:25px;
}

.feature-item{
background:#f8fafc;
padding:15px;
border-radius:12px;
font-weight:500;
box-shadow:0 5px 15px rgba(0,0,0,.05);
transition:.3s;
}

.feature-item:hover{
transform:translateY(-3px);
}

/* =========================
DESTINATIONS
========================= */

.destinations{
padding:120px 10%;
}

.destinations h2{
text-align:center;
font-size:48px;
margin-bottom:60px;
color:var(--dark);
}

.destination-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.destination-card{
height:380px;
background:white;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
transition:.4s;
position:relative;
overflow:hidden;
cursor:pointer;
}

.destination-card:hover{
transform:translateY(-10px);
}

.destination-card h3{
margin-top:20px;
font-size:28px;
color:var(--primary);
}

.destination-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.destination-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:30px;
background:linear-gradient(
transparent,
rgba(0,0,0,.85)
);
}

.destination-overlay h3{
color:white;
font-size:32px;
margin-bottom:10px;
}

.destination-overlay a{
display:inline-block;
color:white;
text-decoration:none;
font-weight:600;
}

.destination-tags{
display:flex;
gap:12px;
flex-wrap:wrap;
margin:20px 0 30px;
}

.destination-tags span{
background:#eef4ff;
padding:10px 18px;
border-radius:50px;
color:var(--primary);
font-weight:600;
}

/* =========================
CTA
========================= */

.cta{

background:var(--primary);

color:white;

text-align:center;

padding:100px 10%;

}

.cta h2{

font-size:52px;

margin-bottom:20px;

}

/* =========================
FOOTER
========================= */

.footer{
background:#081c3a;
color:white;
padding:80px 10% 30px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer h3{
margin-bottom:20px;
color:var(--gold);
}

.footer p{
margin-bottom:12px;
line-height:1.8;
}

.footer-bottom{
margin-top:50px;
padding-top:30px;
border-top:1px solid rgba(255,255,255,.15);
text-align:center;
}

.footer a{
color:white;
text-decoration:none;
}

.footer a:hover{
color:var(--gold);
}

/* =========================
MOBILE
========================= */

@media(max-width:991px){
	
	.stats,
.why-grid{
grid-template-columns:1fr;
}

.tour-grid{
grid-template-columns:1fr;
}

.partners-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.topbar{
display:none;
}

.header{
flex-direction:column;
gap:20px;
}

.hero{
flex-direction:column;
text-align:center;
}

.hero h1{
font-size:48px;
}

.hero-image{
width:100%;
max-width:500px;
height:400px;
margin-top:40px;
}

.about{
flex-direction:column;
}

.about-image{
width:550px;
height:auto;
overflow:hidden;
border-radius:30px;
}

.about-image img{
width:100%;
height:auto%;
object-fit:cover;
object-position:center;
}
.service-grid{
grid-template-columns:1fr;
}

.destination-grid{
grid-template-columns:1fr;
}
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
padding:120px 10%;
background:white;
}

.stat-box{
border-top:4px solid var(--gold);
text-align:center;
padding:50px 30px;
border-radius:25px;
background:white;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
}

.stat-box:hover{
transform:translateY(-10px);
}

.stat-box h2{
font-size:60px;
font-weight:800;
color:var(--gold);
margin-bottom:10px;
}

.stat-box p{
font-size:18px;
font-weight:600;
color:#666;
}

.why-us{
padding:120px 10%;
background:#f8fafc;
}

.why-us h2{
text-align:center;
font-size:48px;
margin-bottom:60px;
color:var(--dark);
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.why-card{
background:white;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.why-card:hover{
transform:translateY(-10px);
}

.why-card h3{
margin:20px 0;
color:var(--primary);
}

.trust{
display:grid;
grid-template-columns:repeat(4,1fr);
padding:30px 10%;
background:white;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.trust div{
font-weight:600;
color:var(--primary);
}

.featured-tours{
padding:120px 10%;
background:white;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:48px;
color:var(--dark);
margin-bottom:15px;
}

.section-title p{
max-width:700px;
margin:auto;
line-height:1.8;
}

.tour-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.tour-card{
background:white;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.tour-card:hover{
transform:translateY(-10px);
}

.tour-image{
height:250px;
background:#eee;
display:flex;
justify-content:center;
align-items:center;
}

.tour-content{
padding:30px;
}

.tour-content h3{
margin-bottom:15px;
color:var(--primary);
}

.tour-content p{
margin-bottom:20px;
line-height:1.8;
}

.tour-content a{
color:var(--gold);
font-weight:700;
text-decoration:none;
}

.partners{
padding:100px 10%;
background:var(--light);
}

.partners-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
margin-top:50px;
}

.partner-box{
background:white;
padding:30px 20px;
text-align:center;
border-radius:20px;
font-weight:600;
box-shadow:0 10px 30px rgba(0,0,0,.06);
transition:.3s;
}

.partner-box:hover{
transform:translateY(-5px);
}

/* ==================================
ABOUT PAGE
================================== */
.page-hero{
padding:120px 10%;
background:
linear-gradient(
135deg,
#081c3a,
#10396e
);
color:white;
text-align:center;
}

.page-hero h1{
font-size:64px;
margin-bottom:20px;
}

.page-hero p{
font-size:22px;
max-width:800px;
margin:auto;
}

.about-page{
display:flex;
gap:60px;
align-items:center;
padding:120px 10%;
}

.about-page-image{

width:500px;
height:500px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.1);
border-radius:30px;
display:flex;
justify-content:center;
align-items:center;
}
.about-page-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.about-page-content{
flex:1;
}

.about-page-content h2{
font-size:48px;
margin-bottom:25px;
color:var(--dark);
}

.about-page-content p{
line-height:2;
margin-bottom:20px;
}

.mission-vision{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
padding:0 10% 120px;
}

.mv-card{
background:white;
padding:60px;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.mv-card:hover{
transform:translateY(-10px);
}

.mv-card h3{
font-size:32px;
margin-bottom:20px;
color:var(--primary);
}

.leadership{
padding:120px 10%;
text-align:center;
}

.leadership h2{
font-size:48px;
margin-bottom:20px;
}

.leadership p{
max-width:800px;
margin:auto auto 50px;
line-height:2;
}

.leadership-image{
height:450px;
border-radius:30px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.1);
display:flex;
justify-content:center;
align-items:center;
}

.values{
padding:120px 10%;
background:var(--light);
text-align:center;
}

.values h2{
font-size:48px;
margin-bottom:60px;
}

.values-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.value-card{
background:white;
padding:40px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

@media(max-width:991px){
	
.about-page{
flex-direction:column;
}

.about-page-image{
width:100%;
height:350px;
}

.mission-vision{
grid-template-columns:1fr;
}

.values-grid{
grid-template-columns:1fr;
}
}

/* =========================
SERVICES PAGE
========================= */

.services-page{
padding:120px 10%;
background:white;
}

.service-row{
display:grid;
grid-template-columns:400px 1fr;
gap:50px;
align-items:center;
margin-bottom:80px;
padding-bottom:80px;
border-bottom:1px solid #eee;
}

.service-image{
height:280px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.1);
border-radius:25px;
display:flex;
justify-content:center;
align-items:center;
font-weight:600;
color:#777;
}

.service-content h2{
font-size:38px;
color:var(--primary);
margin-bottom:20px;
}

.service-content p{
line-height:2;
margin-bottom:20px;
}

.service-content ul{
padding-left:20px;
line-height:2;
}

.service-content li{
margin-bottom:8px;
}

@media(max-width:991px){

.service-row{
grid-template-columns:1fr;
}
}

/* =========================
DESTINATIONS PAGE
========================= */

.destinations-page{
padding:120px 10%;
background:white;
}

.destination-section{
margin-bottom:80px;
}

.destination-section h2{
font-size:42px;
color:var(--primary);
margin-bottom:15px;
}

.destination-section p{
margin-bottom:40px;
line-height:1.8;
color:#555;
}

.destination-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.destination-box{
height:350px;
border-radius:20px;
position:relative;
overflow:hidden;
background:#f4f4f4;
box-shadow:0 10px 30px rgba(0,0,0,.08);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
font-size:22px;
font-weight:600;
transition:.4s;
}

.destination-box:hover{
transform:translateY(-10px);
}

.destination-box img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.destination-box:hover img{
transform:scale(1.08);
}

.destination-info{
padding:30px;
background:white;
}

.destination-info h3{
color:var(--primary);
margin-bottom:10px;
font-size:28px;
}

.destination-info p{
margin:0;
}

@media(max-width:991px){

.destination-gallery{
grid-template-columns:1fr;

}

}

/* =========================
CONTACT PAGE
========================= */

.contact-page{

padding:120px 10%;

background:white;

}

.contact-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

}

.contact-info{

background:var(--primary);

color:white;

padding:50px;

border-radius:30px;

}

.contact-info h2{

font-size:42px;

margin-bottom:25px;

}

.contact-info p{

line-height:2;

margin-bottom:20px;

}

.contact-form{

background:#fff;

padding:50px;

border-radius:30px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-form h2{

margin-bottom:30px;

color:var(--dark);

}

.contact-form form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,
.contact-form textarea{

padding:18px;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

outline:none;

}

.contact-form textarea{

height:180px;

resize:none;

}

.contact-form button{

background:var(--gold);

color:white;

border:none;

padding:18px;

border-radius:50px;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

transform:translateY(-3px);

}

.map-section{

padding:0 10% 120px;

}

.map-box{
height:450px;
border-radius:30px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

@media(max-width:991px){

.contact-container{

grid-template-columns:1fr;

}

}

/* =========================
WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{

position:fixed;

bottom:25px;
right:25px;

width:65px;
height:65px;

background:#25D366;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

font-size:32px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.1);

}

/* =========================
MOBILE MENU
========================= */

.menu-toggle{

display:none;

font-size:32px;

cursor:pointer;

color:var(--primary);

}

@media(max-width:991px){

.header{

flex-wrap:wrap;

}

.menu-toggle{

display:block;

}

.header nav{

width:100%;

}

#mobileMenu{

display:none;

flex-direction:column;

width:100%;

background:white;

padding:20px 0;

margin-top:20px;

text-align:center;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

#mobileMenu.active{

display:flex;

}

#mobileMenu li{

padding:10px 0;

}

.quote-btn{

margin-top:15px;

}

}

.contact-item{

display:flex;
align-items:flex-start;
gap:20px;

margin-bottom:25px;

padding:20px;

background:white;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-item i{

font-size:28px;

color:var(--gold);

margin-top:5px;

}

.contact-item h4{

margin-bottom:5px;

color:var(--primary);

}
.hero-badges{

display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-top:40px;

}

.hero-badges a{
background:rgba(255,255,255,.15);
padding:18px 35px;
border-radius:50px;
color:white;
text-decoration:none;
font-size:20px;
transition:.3s;
}

.hero-badges a:hover{
background:var(--gold);
transform:translateY(-4px);
}

.topbar a,
.footer a,

.contact-info a{
color:inherit;
text-decoration:none;
transition:.3s;
}

.topbar a:hover,
.footer a:hover,

.contact-info a:hover{
color:var(--gold);
}