/* ===========================
   PASI MFALME - STYLE.CSS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#111;
}

/* ===========================
   PREMIUM HEADER
=========================== */

header{

position:fixed;

top:0;

left:0;

width:100%;

height:90px;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 7%;

background:#07182F;

z-index:1000;

transition:.4s;

box-shadow:0 5px 25px rgba(0,0,0,.25);

}

header.sticky{

height:75px;

background:#061222;

box-shadow:0 10px 35px rgba(0,0,0,.45);

}

/* LOGO */

.logo img{

height:65px;

transition:.4s;

}

header.sticky .logo img{

height:55px;

}

/* MENU */

nav ul{

display:flex;

align-items:center;

gap:40px;

list-style:none;

}

nav ul li a{

color:#fff;

text-decoration:none;

font-size:17px;

font-weight:500;

transition:.3s;

position:relative;

}

nav ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#D4AF37;

transition:.3s;

}

nav ul li a:hover{

color:#D4AF37;

}

nav ul li a:hover::after,

nav ul li a.active::after{

width:100%;

}

nav ul li a.active{

color:#D4AF37;

}

/* BUTTON */

.order-btn{

display:flex;

align-items:center;

gap:10px;

padding:14px 28px;

background:#D4AF37;

color:#fff;

text-decoration:none;

font-size:16px;

font-weight:600;

border-radius:12px;

transition:.35s;

}

.order-btn:hover{

background:#c89d22;

transform:translateY(-3px);

box-shadow:0 12px 25px rgba(212,175,55,.35);

}

.order-btn i{

font-size:18px;

}

/* MOBILE */

@media(max-width:991px){

nav{

display:none;

}

header{

padding:0 25px;

}

.logo img{

height:58px;

}

.order-btn{

padding:12px 22px;

font-size:15px;

}

}
/*=========================================
 HERO SECTION
=========================================*/

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    padding:170px 7% 80px;
    background:url("../images/hero1.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(7,24,47,.92),
        rgba(7,24,47,.60)
    );
}

.hero-container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;
}

.hero-content{
    color:#fff;
}

.hero-location{
    margin-bottom:20px;
}

.hero-location a{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    border-radius:50px;

    color:#fff;

    text-decoration:none;

    backdrop-filter:blur(15px);

    transition:.35s;
}

.hero-location a:hover{
    background:#D4AF37;
}

.hero-location i{
    color:#D4AF37;
}

.hero-tag{
    display:inline-block;

    margin-bottom:25px;

    padding:10px 22px;

    background:rgba(212,175,55,.18);

    border:1px solid rgba(212,175,55,.45);

    color:#D4AF37;

    border-radius:50px;

    font-size:15px;

    font-weight:600;
}

.hero-content h1{

    font-size:68px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;
}

.hero-content h1 span{

    color:#D4AF37;
}

.hero-content p{

    font-size:19px;

    line-height:1.9;

    color:#e7e7e7;

    max-width:620px;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:45px;
}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;
}

.btn-gold{

    background:#D4AF37;

    color:#fff;
}

.btn-gold:hover{

    background:#c89d22;

    transform:translateY(-4px);
}

.btn-outline{

    border:2px solid #fff;

    color:#fff;
}

.btn-outline:hover{

    background:#fff;

    color:#07182F;
}

.hero-stats{

    display:flex;

    gap:25px;

    flex-wrap:wrap;
}

.stat{

    min-width:120px;
}

.stat h3{

    font-size:34px;

    color:#D4AF37;

    margin-bottom:6px;
}

.stat span{

    color:#ddd;

    font-size:15px;
}

/* CARD */

.hero-card{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:24px;

    padding:35px;

    color:#fff;

    box-shadow:0 20px 40px rgba(0,0,0,.20);
}

.hero-card h3{

    color:#D4AF37;

    margin-bottom:28px;

    font-size:28px;
}

.hero-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;
}

.hero-item i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(212,175,55,.18);

    color:#D4AF37;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;
}

.scroll-down{

    position:absolute;

    left:50%;

    bottom:25px;

    transform:translateX(-50%);

    z-index:5;
}

.scroll-down a{

    color:#fff;

    font-size:30px;

    animation:bounce 2s infinite;
}

@keyframes bounce{

    0%,100%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(12px);
    }
}

/*=========================================
 MOBILE
=========================================*/

@media(max-width:991px){

.hero{

    padding:150px 25px 70px;
}

.hero-container{

    grid-template-columns:1fr;

    text-align:center;

    gap:40px;
}

.hero-content h1{

    font-size:48px;
}

.hero-content p{

    max-width:100%;
}

.hero-location{

    display:flex;

    justify-content:center;
}

.hero-buttons{

    flex-direction:column;
}

.btn{

    width:100%;
}

.hero-stats{

    justify-content:center;
}

.hero-card{

    width:100%;

    max-width:450px;

    margin:auto;
}

}

@media(max-width:576px){

.hero{

    padding:140px 18px 60px;
}

.hero-content h1{

    font-size:36px;
}

.hero-content p{

    font-size:16px;
}

.hero-tag{

    font-size:13px;

    padding:8px 18px;
}

.hero-card{

    padding:25px;
}

.hero-card h3{

    font-size:22px;
}

.stat h3{

    font-size:28px;
}

.scroll-down{

    display:none;
}

}/*================ SCROLL ================*/

.scroll-down a{

color:white;

font-size:30px;

animation:bounce 1.8s infinite;

}

@keyframes bounce{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(15px);
}

}

.hero{
    width:100%;
    height:100vh;
    background:url("../images/hero.png") center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
    margin-left:8%;
    color:#fff;
}

.hero-content h1{
    font-size:68px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#f5f5f5;
}
/*==========================
SERVICES
===========================*/

.services{

    padding:100px 8%;

    background:#f7f8fc;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title .section-tag{

    display:inline-block;

    padding:10px 25px;

    background:#D4AF37;

    color:#fff;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.section-title h2{

    font-size:42px;

    color:#07182F;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.services-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.service-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;

}

.service-content{

    padding:30px;

}

.service-content h3{

    color:#07182F;

    font-size:24px;

    margin-bottom:15px;

}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.service-content a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.service-content a:hover{

    color:#07182F;

}

@media(max-width:991px){

.services{

padding:80px 20px;

}

.section-title h2{

font-size:34px;

}

.service-card img{

height:220px;

}

}

/*================ CTA ================*/

.cta{

    padding:100px 8%;

    text-align:center;

    background:#111;

    color:#fff;

}

.cta h2{

    font-size:46px;

    margin-bottom:30px;

}

/*================ FOOTER ================*/

footer{

    background:#000;

    color:#fff;

    padding:60px 8%;

    text-align:center;

}

footer h2{

    color:#C8A44D;

}

.socials{

    margin:30px 0;

}

.socials a{

    color:white;

    margin:0 10px;

    font-size:22px;

}

.copy{

    color:#aaa;

}

/*================ MOBILE ================*/

@media(max-width:991px){

.navbar{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 7%;

    background:#081426;

    backdrop-filter:blur(15px);

    box-shadow:0 5px 20px rgba(0,0,0,.25);

    z-index:1000;

    transition:.4s;
}
.hero-content{

margin:0 25px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

text-align:center;

}

}
/*==========================
FOOTER
===========================*/

.footer{
background:#111;
color:#fff;
padding:70px 8% 20px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-box h3{
color:#d4af37;
margin-bottom:20px;
font-size:22px;
}

.footer-box p{
color:#ccc;
line-height:1.8;
font-size:15px;
}

.footer-box a{
display:block;
text-decoration:none;
color:#ccc;
margin:10px 0;
transition:.3s;
}

.footer-box a:hover{
color:#d4af37;
padding-left:8px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.1);
margin-top:40px;
padding-top:20px;
text-align:center;
color:#999;
font-size:14px;
}
/*==========================
WHATSAPP BUTTON
===========================*/

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px rgba(0,0,0,.3);
z-index:999;
animation:float 2s ease-in-out infinite;
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.12);
}

.whatsapp img{
width:36px;
height:36px;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}
/*==========================
BOOKING
===========================*/

.booking{

padding:100px 8%;

background:#f8f8f8;

}

.booking-container{

max-width:700px;

margin:auto;

}

.booking-text{

text-align:center;

margin-bottom:40px;

}

.booking-text h2{

font-size:38px;

color:#111;

margin-bottom:15px;

}

.booking-text p{

color:#666;

line-height:1.8;

}

#bookingForm{

display:flex;

flex-direction:column;

gap:20px;

}

#bookingForm input,

#bookingForm select,

#bookingForm textarea{

padding:16px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

outline:none;

transition:.3s;

}

#bookingForm input:focus,

#bookingForm select:focus,

#bookingForm textarea:focus{

border-color:#d4af37;

}

#bookingForm button{

padding:18px;

border:none;

background:#d4af37;

color:white;

font-size:18px;

font-weight:bold;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

#bookingForm button:hover{

background:#111;

}
/*====================
PRELOADER
====================*/

#preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#111;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

transition:1s;

}

.loader{

text-align:center;

}

.loader img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:20px;
}
.loader h2{

color:#d4af37;

font-size:30px;

margin-bottom:25px;

}

.loading-bar{

width:220px;

height:6px;

background:#333;

border-radius:30px;

overflow:hidden;

}

.loading-bar span{

display:block;

width:40%;

height:100%;

background:#d4af37;

animation:loading 1.2s infinite;

}

@keyframes loading{

0%{

transform:translateX(-100%);

}

100%{

transform:translateX(320%);

}

}

@keyframes spin{

0%{

transform:rotate(0);

}

100%{

transform:rotate(360deg);

}

}
/* ===========================
ABOUT
=========================== */

.about{
padding:100px 8%;
background:#fff;
}

.about-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:60px;
align-items:center;
}
.about-image{
    width:100%;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-image img:hover{
transform:scale(1.03);
}

.about-content span{
color:#caa54b;
font-weight:700;
letter-spacing:2px;
}

.about-content h2{
font-size:42px;
margin:15px 0;
color:#111;
line-height:1.3;
}

.about-content p{
font-size:16px;
line-height:30px;
color:#666;
margin-bottom:20px;
}

.about-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin:35px 0;
}

.feature{
display:flex;
align-items:center;
gap:12px;
font-weight:600;
}

.feature i{
color:#caa54b;
font-size:22px;
}

.about-btn{
display:inline-block;
padding:15px 40px;
background:#caa54b;
color:#fff;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.4s;
}

.about-btn:hover{
background:#111;
transform:translateY(-4px);
}

@media(max-width:900px){

.about-container{
grid-template-columns:1fr;
}

.about-content h2{
font-size:32px;
}

.about-features{
grid-template-columns:1fr;
}

}
/*==========================
ABOUT
===========================*/

.about{

    padding:100px 8%;

    background:#fff;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

.about-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:20px;

    display:block;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-content h2{

    font-size:42px;

    margin:20px 0;

    color:#07182F;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}
/*==========================
COUNTER
==========================*/

.counter{

padding:100px 8%;

background:#081b33;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

text-align:center;

}

.counter-box{

background:rgba(255,255,255,.08);

padding:40px;

border-radius:20px;

transition:.4s;

backdrop-filter:blur(10px);

}

.counter-box:hover{

transform:translateY(-10px);

background:#d4af37;

color:#081b33;

}

.counter-box h2{

font-size:55px;

color:#FFD700;

margin-bottom:10px;

}

.counter-box:hover h2{

color:#081b33;

}

.counter-box p{

font-size:18px;

font-weight:600;

color:white;

}

.counter-box:hover p{

color:#081b33;

}
/*==========================
GALLERY PREVIEW
===========================*/

.gallery-preview{
    padding:100px 8%;
    background:#f8f8f8;
    text-align:center;
}

.gallery-button{
    margin-top:40px;
}

.gallery-btn{
    display:inline-block;
    padding:18px 45px;
    background:#D4AF37;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    border-radius:50px;
    transition:.4s;
}

.gallery-btn:hover{
    background:#0B1F3A;
    transform:translateY(-6px);
}
/*==========================
PRICING
===========================*/

.pricing{
    padding:70px 8%;
    background:#fff;
}

.pricing .section-title{
    text-align:center;
    margin-bottom:40px;
}

.pricing-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.price-card{

    width:280px;
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border:2px solid transparent;
    transition:.4s;
    position:relative;

}

.price-card:hover{

    transform:translateY(-8px);
    border-color:#D4AF37;

}

.featured{

    border-color:#D4AF37;

}

.popular{

    position:absolute;
    top:15px;
    right:15px;
    background:#D4AF37;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;

}

.price-card h3{

    font-size:24px;
    color:#0B1F3A;
    margin-bottom:20px;

}

.price{

    font-size:32px;
    color:#D4AF37;
    font-weight:bold;
    margin-bottom:25px;

}

.price-btn{

    display:inline-block;
    background:#0B1F3A;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:30px;
    transition:.4s;

}

.price-btn:hover{

    background:#D4AF37;

}

@media(max-width:900px){

.pricing-container{

flex-direction:column;
align-items:center;

}

.price-card{

width:100%;
max-width:340px;

}

}
/*==========================
HERO LOCATION
===========================*/

.hero-location{
    margin-bottom:25px;
}

.hero-location a{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 22px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    border-radius:50px;

    backdrop-filter:blur(12px);

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    transition:.4s;

}

.hero-location a:hover{

    background:#D4AF37;

    color:#fff;

    transform:translateY(-3px);

}

.hero-location i{

    color:#D4AF37;

    font-size:18px;

}

.hero-location a:hover i{

    color:#fff;

}
/*==========================
TOP BAR
===========================*/

.top-bar{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    height:40px;

    background:#D4AF37;

    overflow:hidden;

    z-index:10000;

}

.top-track{

    display:flex;

    width:max-content;

    height:100%;

    align-items:center;

    animation:topScroll 35s linear infinite;

}

.top-track span{

    color:#fff;

    font-size:14px;

    font-weight:600;

    white-space:nowrap;

    padding-right:120px;

}

@keyframes topScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* Navbar ishuke chini kidogo */

header{

    top:40px;

}

/* Hero ianze chini ya navbar */

.hero{

    padding-top:170px;

}
/*==========================
CONTACT SECTION
===========================*/

.contact{
    padding:100px 8%;
    background:#f8f9fb;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    margin-top:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:22px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-6px);
}

.contact-card i{
    width:55px;
    height:55px;
    background:#D4AF37;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-card h3{
    color:#0B1F3A;
    margin-bottom:8px;
    font-size:18px;
}

.contact-card p,
.contact-card a{
    color:#666;
    text-decoration:none;
    line-height:1.7;
}

.contact-card a:hover{
    color:#D4AF37;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.input-box{
    margin-bottom:20px;
}

.input-box input,
.input-box textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    outline:none;

    transition:.3s;

    font-family:'Poppins',sans-serif;

}

.input-box input:focus,
.input-box textarea:focus{

    border-color:#D4AF37;

}

.contact-btn{

    width:100%;

    padding:16px;

    background:#0B1F3A;

    color:#fff;

    border:none;

    border-radius:12px;

    font-size:17px;

    cursor:pointer;

    transition:.4s;

}

.contact-btn:hover{

    background:#D4AF37;

}

.contact-btn i{

    margin-right:10px;

}

.map-section{

    margin-top:60px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.map-section iframe{

    display:block;

    width:100%;

}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-form{

margin-top:10px;

}

}

@media(max-width:768px){

.contact{

padding:70px 6%;

}

.contact-card{

padding:18px;

}

.contact-card i{

width:50px;
height:50px;
font-size:20px;

}

.contact-form{

padding:25px;

}

.input-box input,
.input-box textarea{

font-size:15px;

}

.contact-btn{

font-size:16px;

}

}
/*==========================
FOOTER
===========================*/

.footer{

    background:#0B1F3A;

    color:#fff;

    padding:80px 8% 25px;

}

.footer-content{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-box h3{

    color:#D4AF37;

    margin-bottom:20px;

    font-size:22px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-box p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin:12px 0;

}

.footer-box ul li a{

    text-decoration:none;

    color:#d8d8d8;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

}

.footer-box p a{

    color:#d8d8d8;

    text-decoration:none;

}

.footer-box p a:hover{

    color:#D4AF37;

}

.footer-box i{

    color:#D4AF37;

    margin-right:10px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    color:#fff;

    text-decoration:none;

    transition:.4s;

}

.footer-social a:hover{

    background:#D4AF37;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    margin-top:50px;

    padding-top:20px;

    text-align:center;

}

.footer-bottom p{

    color:#bbb;

    font-size:15px;

}

/*==========================
BACK TO TOP
===========================*/

.topBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#D4AF37;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

}

.topBtn.show{

    opacity:1;

    visibility:visible;

}

.topBtn:hover{

    background:#fff;

    color:#0B1F3A;

    transform:translateY(-5px);

}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:768px){

.footer{

padding:60px 6% 20px;

}

.footer-content{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

.footer-logo{

margin:auto;
margin-bottom:20px;

}

}
/*==========================
COUNTER
===========================*/

.counter-section{

    padding:70px 8%;

    background:#0B1F3A;

}

.counter-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.counter-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    padding:35px 20px;

    border-radius:18px;

    text-align:center;

    transition:.4s;

}

.counter-box:hover{

    transform:translateY(-8px);

    background:#D4AF37;

}

.counter-box i{

    font-size:45px;

    color:#D4AF37;

    margin-bottom:15px;

}

.counter-box:hover i{

    color:#fff;

}

.counter-box h2{

    color:#fff;

    font-size:42px;

    margin-bottom:10px;

}

.counter-box p{

    color:#ddd;

    font-size:16px;

}

.counter-box:hover p{

    color:#fff;

}
/*==========================
BOOKING
===========================*/

.booking{

    padding:90px 8%;

    background:#fff;

}

.booking-form{

    max-width:700px;

    margin:auto;

    background:#f8f8f8;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.form-group{

    margin-bottom:20px;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    font-size:16px;

    font-family:Poppins,sans-serif;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#D4AF37;

}

.booking-btn{

    width:100%;

    padding:16px;

    background:#25D366;

    color:#fff;

    border:none;

    border-radius:10px;

    font-size:18px;

    cursor:pointer;

    transition:.4s;

}

.booking-btn:hover{

    background:#128C7E;

}
/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width:768px){

    .container{
        width:90%;
        margin:auto;
    }

    section{
        padding:60px 0;
    }

    h1{
        font-size:2rem;
    }

    h2{
        font-size:1.8rem;
    }

    p{
        font-size:15px;
        line-height:1.7;
    }

    .btn{
        width:100%;
        text-align:center;
        margin-top:10px;
    }

}
/*=========================================
MOBILE HEADER
=========================================*/

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.menu-toggle:hover{
    color:#D4AF37;
}

@media(max-width:991px){

header{
    padding:0 20px;
}

.menu-toggle{
    display:block;
}

.order-btn{
    display:none;
}

nav{
    position:fixed;
    top:130px;
    left:-100%;
    width:100%;
    background:#07182F;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

nav.active{
    left:0;
}

nav ul{
    display:flex;
    flex-direction:column;
    gap:0;
    padding:20px 0;
}

nav ul li{
    width:100%;
}

nav ul li a{
    display:block;
    width:100%;
    padding:18px;
    text-align:center;
    font-size:18px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

}
/* =========================================
   PASI MFALME - MOBILE FIRST FIX
   HEADER ONLY
========================================= */

@media (max-width: 768px){

    header{
        top:40px;
        width:100%;
        height:70px;
        padding:0 18px;
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    header.sticky{
        height:65px;
    }

    .logo{
        display:flex;
        align-items:center;
    }

    .logo img{
        height:52px;
        width:auto;
        display:block;
    }

    header.sticky .logo img{
        height:48px;
    }

    .order-btn{
        display:none;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:27px;
        color:#fff;
        cursor:pointer;
        width:45px;
        height:45px;
        z-index:1002;
    }

    nav{
        position:fixed;
        top:110px;
        left:-100%;
        width:100%;
        height:auto;
        background:#07182F;
        display:block;
        transition:left .35s ease;
        z-index:1001;
        box-shadow:0 15px 30px rgba(0,0,0,.30);
    }

    nav.active{
        left:0;
    }

    nav ul{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:10px 0;
        margin:0;
    }

    nav ul li{
        width:100%;
    }

    nav ul li a{
        display:block;
        width:100%;
        padding:16px 20px;
        text-align:center;
        font-size:16px;
        color:#fff;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    nav ul li a::after{
        display:none;
    }

    nav ul li a.active{
        color:#D4AF37;
    }

}
/* =========================================================
   PASI MFALME
   HERO SECTION - MOBILE FIRST
   ========================================================= */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;

    padding:170px 7% 80px;

    background:url("../images/hero1.jpg") center center/cover no-repeat;

    display:flex;
    align-items:center;

    overflow:hidden;
}

/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(7,24,47,.94),
        rgba(7,24,47,.62)
    );

    z-index:1;
}

/* HERO CONTAINER */

.hero-container{
    position:relative;

    z-index:2;

    width:100%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;
}

/* HERO CONTENT */

.hero-content{
    color:#fff;
    width:100%;
}

/* LOCATION */

.hero-location{
    margin-bottom:20px;
}

.hero-location a{
    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.20);

    border-radius:50px;

    color:#fff;

    text-decoration:none;

    backdrop-filter:blur(15px);

    transition:.35s;
}

.hero-location a:hover{
    background:#D4AF37;
    color:#fff;
}

.hero-location i{
    color:#D4AF37;
    font-size:16px;
}

.hero-location a:hover i{
    color:#fff;
}

/* HERO TAG */

.hero-tag{
    display:inline-block;

    margin-bottom:25px;

    padding:10px 22px;

    background:rgba(212,175,55,.18);

    border:1px solid rgba(212,175,55,.45);

    color:#D4AF37;

    border-radius:50px;

    font-size:15px;

    font-weight:600;
}

/* HERO TITLE */

.hero-content h1{
    font-size:68px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

    color:#fff;
}

.hero-content h1 span{
    color:#D4AF37;
}

/* HERO DESCRIPTION */

.hero-content p{
    font-size:19px;

    line-height:1.9;

    color:#e7e7e7;

    max-width:620px;

    margin-bottom:35px;
}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;

    gap:18px;

    margin-bottom:45px;
}

.hero-buttons .btn{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;
}

/* GOLD BUTTON */

.hero-buttons .btn-gold{
    background:#D4AF37;
    color:#fff;
}

.hero-buttons .btn-gold:hover{
    background:#c89d22;

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(212,175,55,.30);
}

/* OUTLINE BUTTON */

.hero-buttons .btn-outline{
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.hero-buttons .btn-outline:hover{
    background:#fff;
    color:#07182F;
}

/* HERO STATS */

.hero-stats{
    display:flex;

    align-items:flex-start;

    gap:30px;

    flex-wrap:wrap;
}

.stat{
    min-width:120px;
}

.stat h3{
    font-size:34px;

    color:#D4AF37;

    margin-bottom:6px;

    line-height:1.2;
}

.stat span{
    color:#ddd;

    font-size:15px;
}

/* =========================================================
   HERO CARD
   ========================================================= */

.hero-card{
    width:100%;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:24px;

    padding:35px;

    color:#fff;

    box-shadow:0 20px 40px rgba(0,0,0,.20);
}

.hero-card h3{
    color:#D4AF37;

    margin-bottom:28px;

    font-size:28px;

    line-height:1.35;
}

.hero-item{
    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;
}

.hero-item i{
    width:42px;
    height:42px;

    border-radius:50%;

    background:rgba(212,175,55,.18);

    color:#D4AF37;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;
}

.hero-item span{
    line-height:1.5;
}

/* =========================================================
   SCROLL DOWN
   ========================================================= */

.scroll-down{
    position:absolute;

    left:50%;

    bottom:25px;

    transform:translateX(-50%);

    z-index:5;
}

.scroll-down a{
    color:#fff;

    font-size:30px;

    animation:bounceHero 2s infinite;
}

@keyframes bounceHero{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(12px);
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:991px){

    .hero{
        min-height:auto;

        padding:145px 25px 70px;

        background-position:center center;
    }

    .hero-overlay{
        background:rgba(7,24,47,.82);
    }

    .hero-container{
        grid-template-columns:1fr;

        gap:45px;

        text-align:center;
    }

    .hero-content{
        display:flex;

        flex-direction:column;

        align-items:center;
    }

    .hero-location{
        display:flex;

        justify-content:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        max-width:700px;

        font-size:17px;
    }

    .hero-buttons{
        width:100%;

        max-width:600px;

        flex-direction:column;

        gap:15px;

        margin-bottom:40px;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .hero-stats{
        justify-content:center;
    }

    .hero-card{
        width:100%;

        max-width:500px;

        margin:auto;

        text-align:left;
    }

    .scroll-down{
        display:none;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:768px){

    .hero{
        width:100%;

        min-height:auto;

        padding:135px 18px 60px;

        background-position:center center;
    }

    .hero-overlay{
        background:rgba(7,24,47,.84);
    }

    .hero-container{
        width:100%;

        gap:35px;
    }

    /* LOCATION */

    .hero-location{
        width:100%;

        margin-bottom:18px;
    }

    .hero-location a{
        max-width:100%;

        padding:11px 18px;

        font-size:14px;

        justify-content:center;
    }

    /* TAG */

    .hero-tag{
        max-width:100%;

        margin-bottom:20px;

        padding:9px 16px;

        font-size:12px;

        line-height:1.5;
    }

    /* TITLE */

    .hero-content h1{
        width:100%;

        font-size:42px;

        line-height:1.08;

        margin-bottom:22px;
    }

    /* DESCRIPTION */

    .hero-content p{
        width:100%;

        font-size:15px;

        line-height:1.75;

        margin-bottom:28px;
    }

    /* BUTTONS */

    .hero-buttons{
        width:100%;

        gap:14px;

        margin-bottom:35px;
    }

    .hero-buttons .btn{
        width:100%;

        min-height:56px;

        padding:15px 20px;

        font-size:15px;
    }

    /* STATS */

    .hero-stats{
        width:100%;

        display:grid;

        grid-template-columns:repeat(3,1fr);

        gap:8px;

        justify-content:center;
    }

    .stat{
        min-width:0;

        text-align:center;
    }

    .stat h3{
        font-size:27px;

        margin-bottom:5px;
    }

    .stat span{
        font-size:13px;
    }

    /* HERO CARD */

    .hero-card{
        width:100%;

        max-width:100%;

        padding:25px 20px;

        border-radius:20px;
    }

    .hero-card h3{
        font-size:22px;

        line-height:1.4;

        text-align:center;

        margin-bottom:25px;
    }

    .hero-item{
        gap:12px;

        margin-bottom:17px;
    }

    .hero-item i{
        width:40px;
        height:40px;

        font-size:14px;
    }

    .hero-item span{
        font-size:14px;

        line-height:1.5;
    }

    .hero-card .btn{
        width:100% !important;

        margin-top:20px !important;

        min-height:54px;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media(max-width:480px){

    .hero{
        padding:130px 16px 55px;
    }

    .hero-content h1{
        font-size:38px;

        line-height:1.08;
    }

    .hero-content p{
        font-size:14px;

        line-height:1.75;
    }

    .hero-tag{
        font-size:11.5px;

        padding:8px 13px;
    }

    .hero-location a{
        font-size:13px;

        padding:10px 15px;
    }

    .hero-buttons .btn{
        min-height:54px;

        font-size:14px;
    }

    .stat h3{
        font-size:25px;
    }

    .stat span{
        font-size:12px;
    }

    .hero-card{
        padding:22px 17px;
    }

    .hero-card h3{
        font-size:20px;
    }

    .hero-item span{
        font-size:13px;
    }
}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media(max-width:360px){

    .hero{
        padding-left:13px;
        padding-right:13px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:13.5px;
    }

    .hero-tag{
        font-size:10.5px;
    }

    .stat h3{
        font-size:22px;
    }

    .stat span{
        font-size:11px;
    }
}
/* =========================================
   PASI MFALME - COUNTER MOBILE FIX
   ========================================= */

@media (max-width: 768px){

    .counter-section{
        padding:55px 15px;
    }

    .counter-container{
        width:100%;
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:15px;
    }

    .counter-box{
        width:100%;
        padding:25px 12px;
        border-radius:16px;
    }

    .counter-box i{
        font-size:32px;
        margin-bottom:10px;
    }

    .counter-box h2{
        font-size:32px;
        margin-bottom:8px;
    }

    .counter-box p{
        font-size:13px;
        line-height:1.5;
    }

}

/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width:480px){

    .counter-section{
        padding:50px 12px;
    }

    .counter-container{
        gap:12px;
    }

    .counter-box{
        padding:22px 8px;
    }

    .counter-box i{
        font-size:28px;
    }

    .counter-box h2{
        font-size:27px;
    }

    .counter-box p{
        font-size:12px;
    }

}

/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width:360px){

    .counter-box h2{
        font-size:24px;
    }

    .counter-box p{
        font-size:11px;
    }

}
/* =========================================
   PASI MFALME - ABOUT MOBILE FIX
   MOBILE RESPONSIVE ONLY
========================================= */

@media (max-width: 768px){

    .about{
        width:100%;
        padding:60px 18px;
    }

    .about-container{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:35px;
    }

    /* IMAGE */

    .about-image{
        width:100%;
    }

    .about-image img{
        width:100%;
        height:320px;
        object-fit:cover;
        border-radius:18px;
        display:block;
    }

    /* CONTENT */

    .about-content{
        width:100%;
    }

    .about-content span{
        display:block;
        font-size:14px;
        letter-spacing:1.5px;
        margin-bottom:15px;
    }

    .about-content h2{
        font-size:30px;
        line-height:1.3;
        margin:10px 0 20px;
    }

    .about-content p{
        width:100%;
        font-size:15px;
        line-height:1.8;
        margin-bottom:18px;
        color:#666;
    }

    /* FEATURES */

    .about-features{
        width:100%;
        display:grid;
        grid-template-columns:1fr;
        gap:15px;
        margin:30px 0 0;
    }

    .feature{
        width:100%;
        display:flex;
        align-items:center;
        gap:12px;
        font-size:14px;
        line-height:1.5;
    }

    .feature i{
        width:38px;
        height:38px;
        min-width:38px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:17px;
    }

}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width:480px){

    .about{
        padding:55px 16px;
    }

    .about-container{
        gap:30px;
    }

    .about-image img{
        height:280px;
        border-radius:16px;
    }

    .about-content span{
        font-size:13px;
    }

    .about-content h2{
        font-size:27px;
        line-height:1.3;
    }

    .about-content p{
        font-size:14px;
        line-height:1.8;
    }

    .about-features{
        gap:13px;
        margin-top:25px;
    }

    .feature{
        font-size:13px;
    }

    .feature i{
        width:36px;
        height:36px;
        min-width:36px;
        font-size:16px;
    }

}

/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width:360px){

    .about{
        padding-left:13px;
        padding-right:13px;
    }

    .about-image img{
        height:250px;
    }

    .about-content h2{
        font-size:25px;
    }

    .about-content p{
        font-size:13px;
    }

    .feature{
        font-size:12px;
    }

}
/* =========================================
   PASI MFALME - GALLERY MOBILE FIX
   MOBILE RESPONSIVE ONLY
========================================= */

@media (max-width: 768px){

    .gallery-preview{
        width:100%;
        padding:60px 18px;
        text-align:center;
    }

    .gallery-preview .container{
        width:100%;
        max-width:100%;
        margin:auto;
    }

    .gallery-preview .section-title{
        margin-bottom:30px;
    }

    .gallery-preview .section-tag{
        font-size:13px;
        padding:9px 20px;
        margin-bottom:15px;
    }

    .gallery-preview .section-title h2{
        font-size:30px;
        line-height:1.3;
        margin-bottom:12px;
    }

    .gallery-preview .section-title p{
        width:100%;
        font-size:14px;
        line-height:1.7;
    }

    .gallery-button{
        width:100%;
        margin-top:30px;
    }

    .gallery-btn{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        gap:10px;

        width:100%;
        max-width:320px;

        min-height:54px;

        padding:15px 25px;

        font-size:15px;
    }

}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width:480px){

    .gallery-preview{
        padding:55px 16px;
    }

    .gallery-preview .section-title h2{
        font-size:27px;
    }

    .gallery-preview .section-title p{
        font-size:13px;
        line-height:1.75;
    }

    .gallery-btn{
        max-width:300px;
        font-size:14px;
    }

}

/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width:360px){

    .gallery-preview{
        padding-left:13px;
        padding-right:13px;
    }

    .gallery-preview .section-title h2{
        font-size:25px;
    }

    .gallery-preview .section-title p{
        font-size:12.5px;
    }

    .gallery-btn{
        max-width:280px;
        font-size:13px;
    }

}
/* =========================================
   PASI MFALME - SERVICES MOBILE FIX
   MOBILE RESPONSIVE ONLY
========================================= */

@media (max-width: 768px){

    .services{
        width:100%;
        padding:60px 18px;
        background:#f7f8fc;
    }

    /* SECTION TITLE */

    .services .section-title{
        width:100%;
        margin-bottom:35px;
        text-align:center;
    }

    .services .section-title h2{
        font-size:30px;
        line-height:1.3;
        margin-bottom:12px;
    }

    .services .section-title p{
        width:100%;
        font-size:14px;
        line-height:1.75;
    }

    /* SERVICES CONTAINER */

    .services-container{
        width:100%;
        display:grid;
        grid-template-columns:1fr;
        gap:22px;
    }

    /* SERVICE CARD */

    .service-card{
        width:100%;
        border-radius:18px;
        overflow:hidden;
        background:#fff;
        box-shadow:0 12px 30px rgba(0,0,0,.08);
    }

    /* SERVICE IMAGE */

    .service-card img{
        width:100%;
        height:220px;
        display:block;
        object-fit:cover;
    }

    /* SERVICE CONTENT */

    .service-content{
        width:100%;
        padding:24px 20px 26px;
    }

    .service-content h3{
        font-size:22px;
        line-height:1.3;
        margin-bottom:12px;
        color:#07182F;
    }

    .service-content p{
        font-size:14px;
        line-height:1.75;
        margin-bottom:18px;
        color:#666;
    }

    .service-content a{
        display:inline-flex;
        align-items:center;
        font-size:14px;
        font-weight:700;
        padding:8px 0;
    }

}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width:480px){

    .services{
        padding:55px 16px;
    }

    .services .section-title{
        margin-bottom:30px;
    }

    .services .section-title h2{
        font-size:27px;
    }

    .services .section-title p{
        font-size:13px;
        line-height:1.75;
    }

    .services-container{
        gap:20px;
    }

    .service-card{
        border-radius:16px;
    }

    .service-card img{
        height:205px;
    }

    .service-content{
        padding:22px 18px 24px;
    }

    .service-content h3{
        font-size:20px;
    }

    .service-content p{
        font-size:13px;
        line-height:1.75;
    }

    .service-content a{
        font-size:13px;
    }

}

/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width:360px){

    .services{
        padding-left:13px;
        padding-right:13px;
    }

    .services .section-title h2{
        font-size:25px;
    }

    .services .section-title p{
        font-size:12.5px;
    }

    .service-card img{
        height:190px;
    }

    .service-content{
        padding:20px 16px 22px;
    }

    .service-content h3{
        font-size:19px;
    }

    .service-content p{
        font-size:12.5px;
    }

}
/* =========================================
   PASI MFALME AI ASSISTANT
========================================= */

.ai-assistant {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;
    font-family: inherit;
}

/* FLOATING BUTTON */

.ai-floating-button {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: #dcae2f;
    color: #07172d;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    transition: .3s ease;
}

.ai-floating-button:hover {
    transform: translateY(-4px) scale(1.05);
}

.ai-floating-button span {
    display: block;
}


/* CHAT BOX */

.ai-chat-box {
    position: absolute;

    right: 0;
    bottom: 80px;

    width: 360px;
    max-width: calc(100vw - 30px);

    background: #ffffff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(0,0,0,.25);

    border: 1px solid rgba(7,23,45,.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px) scale(.96);

    transition: .3s ease;
}


/* OPEN STATE */

.ai-chat-box.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0) scale(1);
}


/* HEADER */

.ai-header {
    background: #07172d;

    padding: 18px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #ffffff;
}

.ai-avatar {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #dcae2f;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.ai-header-text {
    flex: 1;
}

.ai-header-text h3 {
    margin: 0;

    font-size: 16px;

    font-weight: 800;
}

.ai-header-text span {
    display: block;

    margin-top: 3px;

    font-size: 11px;

    color: #67d68b;
}

.ai-close {
    background: transparent;

    border: none;

    color: #ffffff;

    font-size: 27px;

    cursor: pointer;

    line-height: 1;
}


/* MESSAGES */

.ai-messages {
    height: 280px;

    padding: 18px;

    overflow-y: auto;

    background: #f7f9fc;
}

.ai-message {
    max-width: 85%;

    padding: 12px 14px;

    border-radius: 15px;

    margin-bottom: 12px;

    font-size: 13px;

    line-height: 1.6;
}

.ai-message.bot {
    background: #ffffff;

    color: #182438;

    border-bottom-left-radius: 5px;

    box-shadow: 0 3px 12px rgba(0,0,0,.06);
}

.ai-message.user {
    margin-left: auto;

    background: #07172d;

    color: #ffffff;

    border-bottom-right-radius: 5px;
}


/* QUICK BUTTONS */

.ai-quick-buttons {
    padding: 10px 12px;

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
}

.ai-quick-buttons button {
    border: 1px solid #e3e7ed;

    background: #ffffff;

    color: #07172d;

    padding: 7px 10px;

    border-radius: 20px;

    font-size: 11px;

    cursor: pointer;

    transition: .2s ease;
}

.ai-quick-buttons button:hover {
    background: #dcae2f;

    border-color: #dcae2f;
}


/* INPUT */

.ai-input-area {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
}

.ai-input-area input {
    flex: 1;

    height: 42px;

    border: 1px solid #e1e5eb;

    border-radius: 12px;

    outline: none;

    padding: 0 13px;

    font-family: inherit;

    font-size: 13px;
}

.ai-input-area input:focus {
    border-color: #dcae2f;
}

.ai-input-area button {
    width: 42px;
    height: 42px;

    border: none;

    border-radius: 12px;

    background: #dcae2f;

    color: #07172d;

    font-size: 18px;

    cursor: pointer;

    transition: .2s ease;
}

.ai-input-area button:hover {
    transform: scale(1.05);
}


/* MOBILE */

@media (max-width: 600px) {

    .ai-assistant {
        right: 15px;
        bottom: 15px;
    }

    .ai-chat-box {
        width: calc(100vw - 30px);

        right: -1px;

        bottom: 75px;
    }

    .ai-messages {
        height: 260px;
    }

    .ai-floating-button {
        width: 58px;
        height: 58px;
    }

}
/* =========================================
   PASI MFALME AI - MOBILE IMPROVEMENT
========================================= */

@media (max-width: 600px) {

    /* AI CONTAINER */

    .ai-assistant {
        right: 14px;
        bottom: 14px;
        z-index: 99999;
    }


    /* FLOATING BUTTON */

    .ai-floating-button {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }


    /* CHAT WINDOW */

    .ai-chat-box {
        width: calc(100vw - 28px);
        max-width: none;

        right: 0;
        bottom: 72px;

        border-radius: 20px;

        box-shadow:
            0 20px 55px rgba(0, 0, 0, .28);
    }


    /* HEADER */

    .ai-header {
        padding: 14px 15px;
    }

    .ai-avatar {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .ai-header-text h3 {
        font-size: 15px;
    }

    .ai-header-text span {
        font-size: 10px;
    }

    .ai-close {
        font-size: 25px;
    }


    /* CHAT MESSAGES */

    .ai-messages {
        height: 230px;
        padding: 14px;
    }


    .ai-message {
        max-width: 88%;

        padding: 10px 12px;

        font-size: 13px;

        line-height: 1.55;

        border-radius: 13px;
    }


    /* QUICK BUTTONS */

    .ai-quick-buttons {
        padding: 9px 10px;

        gap: 6px;

        max-height: 92px;

        overflow-y: auto;
    }


    .ai-quick-buttons button {
        padding: 7px 9px;

        font-size: 11px;

        white-space: nowrap;
    }


    /* INPUT */

    .ai-input-area {
        padding: 9px 10px;

        gap: 7px;
    }


    .ai-input-area input {
        height: 40px;

        padding: 0 11px;

        font-size: 13px;
    }


    .ai-input-area button {
        width: 40px;
        height: 40px;

        font-size: 17px;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .ai-chat-box {
        width: calc(100vw - 20px);
    }


    .ai-messages {
        height: 210px;
    }


    .ai-quick-buttons {
        max-height: 82px;
    }


    .ai-message {
        font-size: 12px;
    }


    .ai-floating-button {
        width: 54px;
        height: 54px;
    }
   /* =====================================================
   PASI MFALME — FINAL MOBILE LOGO + HERO POLISH
===================================================== */

@media (max-width: 768px){

    /* ---------------------------------------------
       MOBILE HEADER
    --------------------------------------------- */

    header{
        height: 76px;
        padding: 0 15px;
    }

    header .logo img,
    header img{
        width: 68px;
        height: 52px;
        object-fit: contain;
    }


    /* ---------------------------------------------
       HERO — BETTER MOBILE VISIBILITY
    --------------------------------------------- */

    .hero{
        min-height: auto;
        padding-top: 105px;
        padding-bottom: 55px;
        position: relative;
        overflow: hidden;
    }


    /* Make the background image visible but controlled */

    .hero::before{
        opacity: .24;
    }


    /* Premium dark overlay */

    .hero::after{
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(4,18,38,.76) 0%,
            rgba(4,18,38,.62) 48%,
            rgba(4,18,38,.78) 100%
        );
        pointer-events: none;
        z-index: 0;
    }


    /* Keep Hero content above overlay */

    .hero > *{
        position: relative;
        z-index: 2;
    }


    /* ---------------------------------------------
       HERO TEXT
    --------------------------------------------- */

    .hero h1{
        font-size: clamp(38px, 10vw, 52px);
        line-height: 1.02;
        margin: 18px auto 18px;
        max-width: 94%;
    }

    .hero p{
        font-size: 15px;
        line-height: 1.75;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
    }


    /* ---------------------------------------------
       HERO BUTTONS
    --------------------------------------------- */

    .hero .btn,
    .hero button,
    .hero a{
        max-width: 600px;
    }


    /* ---------------------------------------------
       LOCATION / SERVICE BADGES
    --------------------------------------------- */

    .hero .location,
    .hero .badge,
    .hero .eyebrow{
        font-size: 13px;
    }


    /* ---------------------------------------------
       MOBILE STATS
    --------------------------------------------- */

    .hero .stats{
        gap: 12px;
    }

    .hero .stat{
        min-width: 0;
    }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 430px){

    header{
        height: 72px;
        padding: 0 14px;
    }

    header .logo img,
    header img{
        width: 64px;
        height: 49px;
    }

    .hero{
        padding-top: 98px;
        padding-bottom: 45px;
    }

    .hero h1{
        font-size: 39px;
        line-height: 1.04;
    }

    .hero p{
        font-size: 14px;
        line-height: 1.7;
    }

}

}
