*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#0A1F44;
color:white;
overflow-x:hidden;
scroll-behavior:smooth;
}

h1,h2,h3{
font-family:'Playfair Display',serif;
}

/* ================= NAVBAR ================= */


.navbar{
position:fixed;
top:0;
width:100%;
height:110px; 
padding:0 8%;
display:flex;
align-items:center;
justify-content:space-between;
background:rgba(10,31,68,0.92);
backdrop-filter:blur(14px);
z-index:1000;
transition:all 0.4s ease;
border-bottom:1px solid rgba(255,255,255,0.08);
}

/* shrink on scroll */
.navbar.shrink{
height:80px;
background:rgba(10,31,68,0.98);
box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* LOGO */
.logo{
display:flex;
align-items:center;
}

.logo img{
height:105px;   
width:auto;
object-fit:contain;
transition:0.4s ease;
}

.navbar.shrink .logo img{
height:75px;
}

/* NAV LINKS */
.navbar nav{
display:flex;
align-items:center;
}

.navbar a{
color:white;
text-decoration:none;
margin-left:35px;
font-weight:500;
font-size:15px;
letter-spacing:0.5px;
position:relative;
transition:0.3s ease;
}

/* underline animation */
.navbar a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#FF7A00;
transition:0.3s ease;
}

.navbar a:hover::after{
width:100%;
}

.navbar a:hover{
color:#FF7A00;
}

/* CTA */
.cta{
background:#FF7A00;
padding:12px 26px;
border-radius:8px;
box-shadow:0 8px 25px rgba(255,122,0,0.3);
}

.cta,
.cta:hover{
color:white !important;
}

.cta::after{
display:none;
}
/* ================= HERO ================= */

.hero{
position:relative;
height:100vh;
overflow:hidden;
margin-top:110px;

}

.hero-slide{
position:absolute;
inset:0;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1s ease;
}

.hero-slide.active{
opacity:1;
}

.hero::after{
content:"";
position:absolute;
inset:0;
background:
linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(10,31,68,0.85)),
radial-gradient(circle at 70% 30%, rgba(255,122,0,0.25), transparent 40%);
}

.hero-content{
position:relative;
z-index:2;
height:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:0 10%;
}

.hero-content h1{
font-size:3.8rem;
max-width:950px;
line-height:1.2;
letter-spacing:-1px;
}

.hero-content p{
margin-top:25px;
font-size:20px;
opacity:0.95;
max-width:750px;
}

/* ================= BUTTON ================= */

.primary-btn{
margin-top:30px;
padding:14px 36px;
background:#FF7A00;
border:none;
border-radius:8px;
color:white;
cursor:pointer;
font-weight:500;
transition:0.3s ease;
box-shadow:0 10px 25px rgba(255,122,0,0.3);
}

.primary-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(255,122,0,0.4);
}

/* ================= SECTIONS ================= */

.section{
padding:120px 8%;
}

.section h2{
font-size:2.4rem;
margin-bottom:20px;
position:relative;
display:inline-block;
}

.section h2::after{
content:"";
display:block;
width:60%;
height:3px;
background:#FF7A00;
margin-top:10px;
border-radius:3px;
}

.light{
background:white;
color:#0A1F44;
}

.dark{
background:#0A1F44;
}

.container{
max-width:1150px;
margin:auto;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;
margin-top:50px;
}

/* ================= CARDS ================= */

.card{
background:white;
color:#0A1F44;
padding:35px;
border-radius:20px;
transition:0.4s ease;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

/* ================= PACKAGES ================= */

.package-card{
background:white;
color:#0A1F44;
border-radius:20px;
overflow:hidden;
transition:0.4s ease;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.package-card img{
width:100%;
height:230px;
object-fit:cover;
transition:0.4s ease;
}

.package-card h3{
margin:20px;
}

.package-card .price{
color:#FF7A00;
margin:0 20px 15px;
font-weight:600;
}

.package-card:hover img{
transform:scale(1.05);
}

.package-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 70px rgba(0,0,0,0.15);
}



/* ================= PREMIUM PACKAGE LAYOUT ================= */

.packages-wrapper{
max-width:1400px;
margin:auto;
}

.package-card{
display:flex;
flex-direction:column;
background:white;
color:#0A1F44;
border-radius:24px;
overflow:hidden;
transition:0.4s ease;
box-shadow:0 15px 50px rgba(0,0,0,0.08);
}

.package-card img{
width:100%;
height:280px;
object-fit:cover;
transition:0.4s ease;
}

.package-card:hover img{
transform:scale(1.05);
}

.package-content{
padding:35px;
display:flex;
flex-direction:column;
gap:15px;
}

.package-content h3{
font-size:1.8rem;
}

.package-subtitle{
font-size:15px;
opacity:0.8;
}

.package-features{
margin-top:10px;
font-size:14px;
line-height:1.7;
opacity:0.9;
}

.package-bottom{
margin-top:20px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}

.package-price{
font-size:1.4rem;
font-weight:600;
color:#FF7A00;
}

.book-btn{
padding:12px 28px;
background:#FF7A00;
border:none;
border-radius:8px;
color:white;
cursor:pointer;
font-weight:500;
transition:0.3s ease;
}

.book-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(255,122,0,0.3);
}



/* ================= FOOTER ================= */

footer{
text-align:center;
padding:60px 20px;
background:#081735;
color:rgba(255,255,255,0.8);
font-size:14px;
}

/* ================= WHATSAPP ================= */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
padding:15px;
border-radius:50%;
color:white;
font-size:20px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

/* ================= FORM POPUP ================= */

.form-popup{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:2000;
}

.form-popup.active{
display:flex;
}

.form-box{
background:white;
color:#0A1F44;
padding:40px;
border-radius:20px;
display:flex;
flex-direction:column;
gap:18px;
width:420px;
box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

.form-box h3{
text-align:center;
margin-bottom:10px;
}

.form-box input,
.form-box select{
padding:12px 15px;
border-radius:8px;
border:1px solid rgba(0,0,0,0.1);
font-size:14px;
outline:none;
}

.form-box input:focus,
.form-box select:focus{
border-color:#FF7A00;
}

.form-box button{
margin-top:10px;
}

/* ================= CLEAN PACKAGE PAGE ================= */

.packages-section{
margin-top:120px;
background:#0A1F44;
padding:100px 20px;
}

.packages-wrapper{
max-width:1100px;
margin:0 auto;
}

.packages-wrapper h2{
text-align:center;
margin-bottom:50px;
}

/* SEARCH BAR */

.search-bar{
max-width:600px;
margin:0 auto 70px;
display:flex;
gap:12px;
}

.search-bar input{
flex:1;
padding:14px 18px;
border-radius:10px;
border:none;
outline:none;
font-size:15px;
}

.search-bar button{
padding:14px 25px;
background:#FF7A00;
border:none;
color:white;
border-radius:10px;
cursor:pointer;
font-weight:500;
}

/* PACKAGE CARD */

.package-card{
display:flex;
width:100%;
background:white;
color:#0A1F44;
border-radius:20px;
overflow:hidden;
margin-bottom:50px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
transition:0.3s ease;
}

.package-card:hover{
transform:translateY(-5px);
}

.package-card img{
width:42%;
object-fit:cover;
}

.package-content{
width:58%;
padding:40px;
display:flex;
flex-direction:column;
justify-content:space-between;
}

.package-content h3{
font-size:1.9rem;
margin-bottom:10px;
}

.package-sub{
font-size:14px;
opacity:0.7;
margin-bottom:15px;
}

.package-features{
font-size:14px;
line-height:1.8;
margin-bottom:25px;
}

.package-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}

.package-price{
font-size:1.5rem;
font-weight:600;
color:#FF7A00;
}

.book-btn{
padding:12px 28px;
background:#FF7A00;
border:none;
border-radius:8px;
color:white;
cursor:pointer;
font-weight:500;
transition:0.3s ease;
}

.book-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(255,122,0,0.3);
}

@media(max-width:900px){
.package-card{
flex-direction:column;
}
.package-card img{
width:100%;
height:250px;
}
.package-content{
width:100%;
}
}




/* ===== FIX FOR PACKAGE PAGE WHITE SPACE (SAFE OVERRIDE) ===== */

.packages-section{
display:flex;
justify-content:center;
}

.packages-wrapper{
width:100%;
max-width:1100px;
margin:0 auto;
}

.packages-wrapper > .package-card{
display:flex;
flex-direction:row;
width:100%;
}

.packages-wrapper > .package-card img{
width:42%;
height:auto;
}

.packages-wrapper > .package-card .package-content{
width:58%;
}

@media(max-width:900px){
.packages-wrapper > .package-card{
flex-direction:column;
}

.packages-wrapper > .package-card img{
width:100%;
height:250px;
}

.packages-wrapper > .package-card .package-content{
width:100%;
}
}
/* ===== Flights & Hotels Addition (SAFE ADD-ON) ===== */

.mini-note{
font-size:13px;
opacity:0.7;
margin-top:5px;
}

.button-group{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.secondary-btn{
padding:12px 22px;
background:white;
color:#0A1F44;
border:2px solid #FF7A00;
border-radius:8px;
cursor:pointer;
font-weight:500;
transition:0.3s ease;
}

.secondary-btn:hover{
background:#FF7A00;
color:white;
}
/* Domestic Section Title */

.sub-section-title{
margin:80px 0 40px;
font-size:1.6rem;
text-align:center;
color:white;
opacity:0.9;
position:relative;
}

.sub-section-title::after{
content:"";
display:block;
width:80px;
height:3px;
background:#FF7A00;
margin:12px auto 0;
border-radius:3px;
}
