/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
width:100%;
overflow-x:hidden;
font-family:'Poppins',sans-serif;
background:#f5f7fb;
color:#222;
}

/* HEADER */

.mobile-header{
background:#001f66;
padding:18px;
text-align:center;
}

.logo{
color:#fff;
font-size:26px;
font-weight:700;
line-height:1.4;
}

/* NAVIGATION */

.mobile-nav{
background:#002b85;
display:flex;
justify-content:center;
flex-wrap:wrap;
padding:12px;
gap:15px;
}

.mobile-nav a{
color:#fff;
text-decoration:none;
font-size:15px;
font-weight:500;
}

.mobile-nav a:hover{
color:#ffd700;
}

.hero-section{
    position:relative;
    width:100%;
    overflow:hidden;
}

.hero-image{
    width:100%;
    display:block;
}

.hero-whatsapp-area{
    position:absolute;
    left:50%;
    top:72%;
    transform:translate(-50%,-50%);
    width:100%;
    display:flex;
    justify-content:center;
    z-index:999;
}

.hero-whatsapp-btn{
    background:#25D366;
    color:#fff !important;
    text-decoration:none !important;

    padding:15px 35px;

    border-radius:50px;

    font-size:18px;
    font-weight:700;

    display:flex;
    align-items:center;
    gap:10px;

    box-shadow:0 0 20px rgba(37,211,102,.7);

    animation:whatsappPulse 1.5s infinite;
}

.hero-whatsapp-btn i{
    font-size:24px;
}

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 10px rgba(37,211,102,.5);
    }

    50%{
        transform:scale(1.1);
        box-shadow:0 0 35px rgba(37,211,102,1);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 10px rgba(37,211,102,.5);
    }

}
/* QUICK MENU */

.quick-menu{
padding:20px;
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.menu-card{
background:white;
padding:18px;
text-align:center;
border-radius:15px;
text-decoration:none;
color:#001f66;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* ABOUT */

.about-section{
padding:30px 20px;
background:#fff;
}

.about-section h2{
font-size:30px;
color:#001f66;
margin-bottom:15px;
}

.about-section p{
font-size:17px;
line-height:1.8;
margin-bottom:15px;
}

/* WHY CHOOSE US */

.why-section{
padding:30px 20px;
}

.why-section h2{
font-size:30px;
color:#001f66;
margin-bottom:25px;
}

.stats{
display:flex;
flex-direction:column;
gap:15px;
}

.stat-box{
background:white;
padding:25px;
border-radius:20px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.stat-box h3{
font-size:35px;
color:#001f66;
margin-bottom:8px;
}

/* SERVICES */

.services-preview{
padding:30px 20px;
background:#fff;
}

.services-preview h2{
font-size:30px;
color:#001f66;
margin-bottom:20px;
}

.service-item{
background:white;
padding:18px;
margin-bottom:12px;
border-left:5px solid #ffd700;
border-radius:12px;
box-shadow:0 4px 12px rgba(0,0,0,.05);
}

/* PACKAGES */

.package-preview{
padding:30px 20px;
}

.package-preview h2{
font-size:30px;
color:#001f66;
margin-bottom:20px;
}

.package-box{
background:white;
padding:25px;
margin-bottom:15px;
border-radius:20px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.package-box h3{
color:#001f66;
margin-bottom:10px;
}

.price{
font-size:35px;
font-weight:700;
color:#25D366;
}

/* CTA */

.cta-section{
padding:40px 20px;
background:#001f66;
text-align:center;
color:white;
}

.cta-section h2{
font-size:30px;
margin-bottom:15px;
}

.cta-section p{
margin-bottom:20px;
}

.cta-btn{
display:inline-block;
padding:15px 30px;
background:#25D366;
color:white;
text-decoration:none;
font-weight:700;
border-radius:50px;
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
position:fixed;
right:20px;
bottom:85px;
width:60px;
height:60px;
border-radius:50%;
background:#25D366;
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:30px;
text-decoration:none;
z-index:999;
box-shadow:0 5px 15px rgba(0,0,0,.25);
}

/* FIXED BOTTOM BUTTON */

.bottom-book-btn{
position:fixed;
left:0;
bottom:0;
width:100%;
height:65px;
background:#25D366;
color:white;
font-size:18px;
font-weight:700;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
z-index:1000;
box-shadow:0 -3px 15px rgba(0,0,0,.2);
animation:pulse 1.5s infinite;
}

body{
padding-bottom:65px;
}

/* ANIMATION */

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.03);
}

100%{
transform:scale(1);
}

}

/* FOOTER */

.footer{
background:#001f66;
padding:40px 20px;
text-align:center;
color:white;
}

.footer h2{
font-size:28px;
margin-bottom:10px;
}

.footer p{
margin-bottom:10px;
}

.footer-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
margin:20px 0;
}

.footer-links a{
color:white;
text-decoration:none;
}

.footer-contact a{
color:#ffd700;
text-decoration:none;
}

.copyright{
margin-top:20px;
font-size:14px;
opacity:.9;
}

/* DESKTOP */

@media(min-width:768px){

.quick-menu{
grid-template-columns:repeat(4,1fr);
}

.stats{
flex-direction:row;
}

.stat-box{
flex:1;
}

}