*{margin:0;padding:0;box-sizing:border-box;}

body{
font-family:'Poppins', sans-serif;
}

h1,h2,h3,h4,h5{
font-family:'Montserrat', sans-serif;
}

body{background:#f8fafc;color:#0f172a;}
.container{width:90%;max-width:1200px;margin:auto;}

/* HEADER */
.nav-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}
.nav-wrap.scrolled .logo img {
  height: 60px;
   transition: all 0.4s ease;
}
.logo{
    font-weight:700;
    color:#0ea5e9;
    font-size:22px;
}
.nav-menu a{
    margin-left:25px;
    text-decoration:none;
    color:#ffffff;
}

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}
.menu-toggle span{width:25px;
    height:3px;
    background:#111;
    margin:4px 0;
}

/*changes*/
.header{
background:#0b1a2f;
position:sticky;
top:0;
z-index:1000;
padding:15px 0;
}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
position:relative;
}

/* LOGO BIG + OUTSIDE NAVBAR */
.logo{
position:relative;
z-index:5;
}

.logo img{
height:120px;   /* BIG SIZE */
width:auto;
position:absolute;
top:-30px;      /* Move Outside Navbar */
left:0;
transition: all 0.4s ease;
}

/* MENU COLOR */
.nav-menu a{
color:white;
}
@media(max-width:768px){
    
    .nav-menu a {
    color: #0f172a;
}
.menu-toggle span{
    background: #0f172a ;
}

.logo img{
height:80px;
top:-25px;
}

.header{
padding:25px 0;
}

}

/*changes*/




/* HERO */
.hero{height:90vh;position:relative;overflow:hidden;}
.slide{position:absolute;width:100%;height:100%;background-size:cover;background-position:center;opacity:0;transition:1s;display:flex;justify-content:center;align-items:center;text-align:center;}
.slide.active{opacity:1;}
.hero-content{background:rgba(0,0,0,.4);padding:40px;border-radius:20px;color:white;}

.btn{background:#0ea5e9;color:white;padding:12px 25px;border-radius:40px;text-decoration:none;display:inline-block;margin-top:15px;}
.btn.white{background:white;color:#0ea5e9;}

/* STATS */
.stats{background:#0ea5e9;color:white;padding:20px 0;}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);text-align:center;}

/* SECTIONS */
.section{padding:80px 0;}
.light{background:#eef6fb;}
.section-title{text-align:center;margin-bottom:40px;}
.section-title.white{color:white;}

.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;}
.about-grid img{width:100%;border-radius:20px;}

.check-list li{margin:8px 0;}

/* TOUR */
.tour-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:25px;}
.tour-card{background:white;border-radius:15px;overflow:hidden;box-shadow:0 10px 25px rgba(0,0,0,.05);}
.tour-card img{width:100%;}
.tour-info{padding:20px;}

/* DEST */
.dest-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.dest{position:relative;}
.dest img{width:100%;border-radius:15px;}
.overlay{position:absolute;bottom:15px;left:15px;color:white;font-weight:600;}

/* TEST */
.testimonial{background:#0f172a;color:white;padding:80px 0;text-align:center;}
.test{display:none;}
.test.active{display:block;}

/* CTA */
.cta{background:#0ea5e9;color:white;text-align:center;padding:60px 20px;}

/* GALLERY */
.gallery-strip{display:grid;grid-template-columns:repeat(5,1fr);}
.gallery-strip img{width:100%;}



/* RESPONSIVE */
@media(max-width:900px){
.about-grid{grid-template-columns:1fr;}
.tour-grid{grid-template-columns:repeat(2,1fr);}
.dest-grid{grid-template-columns:repeat(2,1fr);}

.stats-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
.nav-menu{display:none;flex-direction:column;background:white;position:absolute;top:70px;right:20px;padding:20px;}
.nav-menu.show{display:flex;}
.menu-toggle{display:flex;}
.tour-grid,.dest-grid,.stats-grid{grid-template-columns:1fr;}
.gallery-strip{grid-template-columns:repeat(2,1fr);}
}



/* NAV */
.nav-menu{
display:flex;
align-items:center;
}

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
z-index:1001;
}

.menu-toggle span{
width:25px;
height:3px;
    background: #e1d2d2;
margin:4px 0;
transition:.4s;
}

/* MOBILE NAV OVERLAY */
@media(max-width:768px){

.nav-menu{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:white;
flex-direction:column;
padding-top:100px;
transition:.4s;
box-shadow:-5px 0 20px rgba(0,0,0,.1);
}

.nav-menu a{
margin:15px 0;
font-size:18px;
}

.nav-menu.show{
right:0;
}

.menu-toggle{
display:flex;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}
.menu-toggle.active span:nth-child(2){
opacity:0;
}
.menu-toggle.active span:nth-child(3){
transform:rotate(-45deg) translate(5px,-5px);
}

}


/* CATEGORY */
.category-slider{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding-bottom:10px;
}

.category-slider::-webkit-scrollbar{
height:6px;
}

.category-slider::-webkit-scrollbar-thumb{
background:#0ea5e9;
border-radius:10px;
}

.cat-card{
min-width:260px;
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;
cursor:pointer;
}

.cat-card:hover{
transform:translateY(-8px);
}

.cat-card img{
width:100%;
height:180px;
object-fit:cover;
}

.cat-card h4{
padding:15px;
text-align:center;
}
/* CATEGORY CARD */
.category-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
}

.category-card img{
width:100%;
height:200px;
object-fit:cover;
}

.category-card h3{
padding:15px;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:999;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* SMALL SWIPER ARROWS */
.swiper-button-next,
.swiper-button-prev{
width:35px;
height:35px;
background:rgba(0,0,0,0.6);

}

/* Arrow Icon Size */
.swiper-button-next:after,
.swiper-button-prev:after{
font-size:14px !important;
font-weight:bold;
color:white;
}


/*tour-details-page*/
/* ===== BANNER ===== */

.tour-details-banner{
padding:80px 0 70px;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('https://picsum.photos/1600/600?maldives');
background-size:cover;
background-position:center;
color:#fff;
text-align:center;
}

.tour-details-banner h1{
font-size:40px;
margin-bottom:10px;
}

.tour-left{
min-width:0;
}
.tour-right{
display:flex;
flex-direction:column;
gap:30px;
width:100%;
position:sticky;
overflow:visible;
}


/* ===== MAIN GRID ===== */

.tour-details-section{
padding:80px 0;
}

.tour-details-grid{
display:grid;
grid-template-columns:minmax(0, 2fr) minmax(320px, 1fr);
gap:50px;
align-items:start;
}



/* ===== LEFT SIDE ===== */

.main-tour-img{
width:100%;
min-height:300px;
object-fit:cover;
border-radius:18px;
}
.tour-left h2{
margin:25px 0 15px;
}

.tour-left ul{
padding-left:20px;
}

.tour-left li{
margin-bottom:8px;
}


/* ===== ITINERARY ===== */

.itinerary-box{
background:#f7f9fc;
padding:18px;
border-radius:12px;
margin-bottom:15px;
}


/* ===== RIGHT SIDE FORM ===== */

.inquiry-box{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
position:sticky;

align-self:flex-start;
z-index:2;
}



.inquiry-box h3{
margin-bottom:20px;
}

.inquiry-box input,
.inquiry-box textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:8px;
border:1px solid #e5e7eb;
font-family:'Poppins',sans-serif;
}

.inquiry-box textarea{
height:120px;
resize:none;
}


/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.tour-details-grid{
grid-template-columns:1fr;
}

.inquiry-box{
position:relative;
top:0;
}

}
.modern-inquiry{
background:rgba(255,255,255,0.85);
backdrop-filter:blur(12px);
padding:35px;
border-radius:22px;
box-shadow:0 20px 60px rgba(0,0,0,0.12);
border:1px solid rgba(255,255,255,0.3);
}

.modern-inquiry h3{
font-size:24px;
margin-bottom:5px;
}

.inq-sub{
font-size:14px;
color:#666;
margin-bottom:25px;
}
.form-group{
position:relative;
margin-bottom:22px;
}

.form-group input,
.form-group textarea{
width:100%;
padding:16px 14px;
border-radius:12px;
border:1px solid #e5e7eb;
font-size:14px;
background:#fff;
outline:none;
transition:.3s;
}

.form-group textarea{
height:110px;
resize:none;
}

/* LABEL */

.form-group label{
position:absolute;
left:14px;
top:15px;
font-size:14px;
color:#777;
pointer-events:none;
transition:.25s ease;
background:#fff;
padding:0 6px;
}

/* FLOAT EFFECT */

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group label.active{
top:-8px;
font-size:12px;
color:#0a7cff;
}

/* FOCUS BORDER */

.form-group input:focus,
.form-group textarea:focus{
border-color:#0a7cff;
box-shadow:0 0 0 3px rgba(10,124,255,.1);
}
.inq-btn{
width:100%;
padding:16px;
border:none;
border-radius:14px;
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
font-weight:600;
font-size:16px;
cursor:pointer;
transition:.35s;
    text-align: center;
    text-decoration: none;
}

.inq-btn:hover{
transform:translateY(-2px);
box-shadow:0 15px 35px rgba(10,124,255,.35);
}

.tour-gallery-slider{
margin-bottom:25px;
}

.gallerySwiper .swiper-slide img{
width:100%;
height:120px;
object-fit:cover;
border-radius:12px;
cursor:pointer;
transition:.3s;
}

.gallerySwiper .swiper-slide img:hover{
transform:scale(1.05);
}



.related-tour-box{
    width:100%;
    position:relative;
    z-index:1;
    margin-top:0;
   
}

.related-tour-box h3{
margin-bottom:15px;
font-size:18px;
}

.related-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.related-card img{
width:100%;
height:140px;
object-fit:cover;
}

.related-card h4{
font-size:15px;
padding:10px 12px 0;
}

.related-card span{
display:block;
padding:5px 12px 12px;
color:#0a7cff;
font-weight:600;
}
.related-tour-box .swiper{
width:100%;
overflow:hidden;
}
.relatedTourSwiper{
       width:100%;
    overflow:hidden;
}

.relatedTourSwiper .swiper-slide{
 height:auto;
}
.tour-content,
.tour-container{
    overflow:visible;
}


.related-card{
width:100%;
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.related-card img{
width:100%;
height:150px;
object-fit:cover;
display:block;
}
.inquiry-box.modern-inquiry{
    width:100%;
    position:relative;
    z-index:2;
    padding:30px;
    margin-bottom:0;
}



/*tour page*/
/* SEARCH */
.tour-search{
background:#fff;
padding:25px 0;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

/* SEARCH BAR CENTER + BIG */
.tour-top-bar{
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

.tour-top-bar input{
width:500px;          /* increase size */
max-width:90%;        /* mobile safe */
padding:18px 22px;    /* bigger height */
border-radius:16px;
border:1px solid #e5e7eb;
font-size:16px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
transition:.3s;
}

/* Focus Effect */
.tour-top-bar input:focus{
outline:none;
border-color:#0a7cff;
box-shadow:0 10px 30px rgba(10,124,255,.15);
}

/* GRID */
.tour-page{
padding:60px 0;
}

.tour-list{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* CARD */
.tour-card{
position:relative;
background:#fff;
border-radius:20px;
overflow:hidden;
text-decoration:none;
color:#000;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.3s;
}

.tour-card:hover{
transform:translateY(-8px);
}

/* IMAGE */
.tour-img{
position:relative;
overflow:hidden;
}

.tour-img img{
width:100%;
height:220px;
object-fit:cover;
transition:.5s;
}

.tour-card:hover img{
transform:scale(1.1);
}

/* OVERLAY */
.tour-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(transparent, rgba(0,0,0,.7));
display:flex;
align-items:flex-end;
padding:20px;
opacity:0;
transition:.4s;
}

.tour-card:hover .tour-overlay{
opacity:1;
}

.tour-overlay span{
color:#fff;
font-weight:600;
}

/* CONTENT */
.tour-content{
padding:18px;
}

.price{
color:#0a7cff;
font-weight:600;
}

/* WHATSAPP BUTTON */
.tour-wa{
position:absolute;
top:15px;
right:15px;
background:#25D366;
color:#fff;
padding:8px 14px;
border-radius:30px;
font-size:13px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,.2);
}

/* LOAD MORE */
.tour-actions{
text-align:center;
margin-top:40px;
}

#loadMoreBtn{
padding:15px 35px;
border:none;
background:#0a7cff;
color:#fff;
border-radius:14px;
font-size:16px;
cursor:pointer;
}

/* MOBILE */
@media(max-width:992px){
.tour-list{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.tour-list{
grid-template-columns:1fr;
}
}
#noResultText{
    display:none;
    text-align:center;
    font-size:18px;
    margin-top:40px;
    color:#666;
}


/*destination page*/

/* BANNER */
.destination-banner{
height:320px;
background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url('https://picsum.photos/1600/800?beach');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.destination-banner h1{
font-size:42px;
margin-bottom:10px;
}

.destination-banner p{
font-size:18px;
opacity:.9;
}

/* PAGE CONTAINER */
.destination-container{
width:90%;
max-width:1200px;
margin:60px auto;
}

/* ABOUT SECTION */
.destination-about{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:40px;
align-items:center;
margin-bottom:60px;
}

.destination-about img{
width:100%;
border-radius:20px;
}

.destination-about h2{
margin-bottom:15px;
}

/* TOUR PACKAGES */
.package-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.package-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.3s;
}

.package-card:hover{
transform:translateY(-8px);
}

.package-card img{
width:100%;
height:200px;
object-fit:cover;
}

.package-content{
padding:18px;
}

.price{
color:#0a7cff;
font-weight:600;
margin-top:8px;
display:block;
}

/* WHY VISIT */
.why-section{
margin-top:70px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:30px;
}

.why-box{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* RESPONSIVE */
@media(max-width:992px){
.destination-about{
grid-template-columns:1fr;
}

.package-grid{
grid-template-columns:repeat(2,1fr);
}

.why-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:600px){
.package-grid{
grid-template-columns:1fr;
}

.why-grid{
grid-template-columns:1fr;
}

.destination-banner h1{
font-size:30px;
}
}


/*blog page*/
/* PAGE LAYOUT */
.blog-container{
width:90%;
max-width:1300px;
margin:60px auto;
display:grid;
grid-template-columns:2.3fr 1fr;
gap:40px;
}

/* BLOG GRID */
.blog-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.blog-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;
display:block;
text-decoration:none;
color:#333;
}

.blog-card:hover{
transform:translateY(-8px);
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:20px;
}

.blog-content h4{
margin:0 0 10px;
}

.blog-meta{
font-size:13px;
color:#777;
margin-bottom:10px;
}

/* LOAD MORE */
.blog-actions{
text-align:center;
margin-top:40px;
}

#blogloadMoreBtn{
padding:15px 38px;
border:none;
border-radius:40px;
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
font-size:16px;
cursor:pointer;
}

/* SIDEBAR */
.blog-sidebar{
position:sticky;
top:40px;
height:fit-content;
}

.sidebar-box{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
margin-bottom:25px;
}

.sidebar-box h3{
margin-top:0;
margin-bottom:15px;
}

/* SEARCH */
.sidebar-search input{
width:100%;
padding:14px;
border-radius:30px;
border:1px solid #eee;
outline:none;
}

/* CATEGORY */
.category-list{
list-style:none;
padding:0;
margin:0;
}

.category-list li{
padding:10px 0;
border-bottom:1px solid #f1f1f1;
cursor:pointer;
}

/* FEATURED POST */
.featured-post{
display:flex;
gap:12px;
margin-bottom:15px;
}

.featured-post img{
width:70px;
height:60px;
object-fit:cover;
border-radius:10px;
}

/* CTA */
.sidebar-cta{
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
text-align:center;
}

.sidebar-cta button{
margin-top:15px;
padding:12px 25px;
border:none;
border-radius:30px;
background:#fff;
color:#0a7cff;
font-weight:600;
cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
.blog-container{
grid-template-columns:1fr;
}

.blog-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:600px){
.blog-grid{
grid-template-columns:1fr;
}
}

/*blog details*/

/* MAIN CONTAINER */
.blog-container{
width:90%;
max-width:1200px;
margin:60px auto;
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

/* BLOG CONTENT */
.blog-content{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.blog-meta{
font-size:14px;
color:#777;
margin-bottom:20px;
}

.blog-content img{
width:100%;
border-radius:15px;
margin:25px 0;
}

.blog-content h2{
margin-top:25px;
}

.blog-content p{
line-height:1.8;
margin:15px 0;
}

/* SIDEBAR */
.blog-sidebar{
display:flex;
flex-direction:column;
gap:25px;
}

.sidebar-box{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.sidebar-box h3{
margin-bottom:15px;
}

/* RECENT POSTS */
.recent-post{
display:flex;
gap:12px;
margin-bottom:15px;
}

.recent-post img{
width:70px;
height:70px;
object-fit:cover;
border-radius:10px;
}

.recent-post span{
font-size:14px;
color:#666;
}

/* CATEGORY LIST */
.category-list{
list-style:none;
padding:0;
margin:0;
}

.category-list li{
padding:8px 0;
border-bottom:1px solid #eee;
font-size:15px;
}

/* CTA BOX */
.cta-box{
background:linear-gradient(135deg,#0a7cff,#00c6ff);
color:#fff;
text-align:center;
}

.cta-box button{
margin-top:15px;
padding:12px 25px;
border:none;
border-radius:30px;
background:#fff;
color:#0a7cff;
font-weight:600;
cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
.blog-container{
grid-template-columns:1fr;
}
}

@media(max-width:600px){
.blog-banner h1{
font-size:28px;
}

.blog-content{
padding:25px;
}
}

/*contact page*/
/* MAIN */
.contact-container{
width:90%;
max-width:1200px;
margin:60px auto;
}

/* CONTACT GRID */
.contact-grid{
display:grid;
grid-template-columns:1.3fr 1fr;
gap:40px;
}

/* FORM */
.contact-form{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-form h2{
margin-top:0;
margin-bottom:25px;
}

.form-group{
margin-bottom:18px;
position:relative;
}

.form-group i{
position:absolute;
left:15px;
top:50%;
transform:translateY(-50%);
color:#0a7cff;
}

.form-group input,
.form-group textarea{
width:100%;
padding:14px 14px 14px 45px;
border-radius:12px;
border:1px solid #eee;
outline:none;
font-family:Poppins;
}

.form-group textarea{
height:140px;
resize:none;
padding-top:14px;
}

.submit-btn{
width:100%;
padding:16px;
border:none;
border-radius:40px;
background:linear-gradient(45deg,#0a7cff,#00c6ff);
color:#fff;
font-size:16px;
cursor:pointer;
}

/* INFO */
.contact-info{
display:flex;
flex-direction:column;
gap:20px;
}

.info-card{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
display:flex;
gap:15px;
align-items:flex-start;
}

.info-icon{
font-size:22px;
color:#0a7cff;
}

/* MAP */
.map-section{
margin-top:60px;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

/* RESPONSIVE */
@media(max-width:992px){
.contact-grid{
grid-template-columns:1fr;
}
}

@media(max-width:600px){
.contact-banner h1{
font-size:30px;
}

.contact-form{
padding:25px;
}
}


.whatsapp-popup{
    position:fixed;
    bottom:90px;
    right:20px;
    width:300px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
    display:none;
    z-index:999;
}

.popup-header{
    background:#25D366;
    color:#fff;
    padding:15px;
    border-radius:12px 12px 0 0;
    font-weight:bold;
}

.popup-body{
    padding:15px;
}

.popup-body a{
    display:block;
    background:#25D366;
    color:#fff;
    text-align:center;
    padding:10px;
    border-radius:8px;
    text-decoration:none;
    margin-top:10px;
}



/* ===== MAIN FOOTER ===== */
.agency-footer{
    background:#061a30;
    color:#fff;
    font-family:Poppins, sans-serif;
}

/* ===== TOP FOOTER ===== */
.agency-footer-top{
    max-width:1200px;
    margin:auto;
    padding:40px 20px 70px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
}

/* BRAND */
.af-brand{
    display:flex;
    align-items:center;
    gap:15px;
    flex:1.5;
    min-width:260px;
}

.af-brand img{
    height:55px;
}

.af-brand p{
    font-size:14px;
    color:#c3d8f5;
    margin:0;
}

/* NAV */
.af-nav{
    display:flex;
    gap:20px;
    flex:1;
    flex-wrap:wrap;
}

.af-nav a{
    color:#dbe8ff;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.af-nav a:hover{
    color:#4db5ff;
}

/* CONTACT */
.af-contact{
    display:flex;
    flex-direction:column;
    gap:6px;
    font-size:14px;
    flex:1;
}

.af-contact i{
    color:#4db5ff;
    margin-right:8px;
}


/* ===== BOTTOM WRAPPER ===== */
.agency-footer-bottom-wrapper{
    position:relative;
}

/* FLOATING LOGO */
.footer-floating-logo{
    position:absolute;
    left:50%;
    top:-35px;
    transform:translateX(-50%);

   
    padding:8px;
 
}

.footer-floating-logo img{
    height:100px;
    width:auto;
    object-fit:contain;
}


/* ===== BOTTOM BAR ===== */
.agency-footer-bottom{
   
    padding:45px 20px 18px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;

    max-width:1200px;
    margin:auto;
}

/* COPYRIGHT */
.af-copy{
    font-size:13px;
    color:#9fc3ea;
}

/* DEV */
.af-dev{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
}

/* DEV LINK */
.dev-link{
    display:flex;
    align-items:center;
    gap:6px;
    color:#4db5ff;
    text-decoration:none;
}

.dev-link img{
    height:18px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

.agency-footer-top{
    text-align:center;
    padding-bottom:80px;
}

.af-brand{
    justify-content:center;
    flex-direction:column;
}

.af-nav{
    justify-content:center;
}

.af-contact{
    align-items:center;
}

.agency-footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
}

.footer-floating-logo{
    top:-30px;
}

}