/* ================= BASE ================= */
*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:Segoe UI,Arial,sans-serif;
    background:#f1f5f9;
    color:#020617;
}

/* ================= HEADER ================= */
.header{
    background:linear-gradient(90deg,#020617,#0f172a);
    padding:14px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo-box{display:flex;align-items:center;gap:12px}
.logo-img{height:42px}
.logo-box strong{color:#fff;font-size:18px}

/* ================= NAV ================= */
.nav{display:flex;align-items:center}
.nav a{
    color:#e5e7eb;
    margin-left:16px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
}
.nav a:hover{color:#22c55e}
.nav a.book-now{
    background:#22c55e;
    color:#020617 !important;
    padding:8px 16px;
    border-radius:25px;
    font-weight:700;
}

/* ================= CONTAINER / PAGE ================= */
.container{
    max-width:1100px;
    margin:25px auto;
    background:#fff;
    padding:22px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}
.container h2,
h1,h2{
    text-align:center;
    margin-bottom:20px;
    color:#020617;
}

/* ================= COMMON BUTTON ================= */
.btn,button{
    width:100%;
    padding:14px;
    background:#0f172a;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
}
.btn:hover,button:hover{opacity:.9}

/* ================= FORM ================= */
input,textarea{
    width:100%;
    padding:12px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    font-size:14px;
}
textarea{
    resize:none;
    height:120px;
}

/* ================= ALERTS ================= */
.success{
    background:#dcfce7;
    color:#166534;
    padding:10px;
    margin-bottom:15px;
    border-radius:8px;
    text-align:center;
}
.error{
    background:#fee2e2;
    color:#991b1b;
    padding:10px;
    margin-bottom:15px;
    border-radius:8px;
    text-align:center;
}

/* ================= FAQ ================= */
.faq-wrapper{
    max-width:1000px;
    margin:70px auto;
    padding:0 16px;
}
.faq-box{
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.faq-item{
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:18px 22px;
    margin-bottom:16px;
}
.faq-item.active{
    border-color:#22c55e;
    background:#f0fdf4;
}
.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
}
.faq-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}
.faq-item.active .faq-icon{
    background:#ef4444;
    transform:rotate(45deg);
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}
.faq-item.active .faq-answer{
    max-height:300px;
}
.faq-answer p{
    margin-top:14px;
    font-size:15px;
    line-height:1.7;
    color:#475569;
}

/* ================= SERVICES ================= */
.section{
    max-width:1200px;
    margin:50px auto;
    padding:0 16px;
}
.section-box{
    background:#fff;
    padding:35px;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
}
.service-card{
    background:#f8fafc;
    border-radius:12px;
    overflow:hidden;
}
.service-card img{
    width:100%;
    height:190px;
    object-fit:cover;
}
.service-content{padding:18px}

/* ================= OFFERS ================= */
.offers{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}
.card{
    background:#ffffff;
    padding:24px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    position:relative;
}
.badge{
    position:absolute;
    top:14px;
    right:14px;
    background:#16a34a;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
}
.card h3{
    margin:18px 0 10px;
    color:#0f172a;
    font-size:18px;
}
.card p{
    font-size:14px;
    color:#334155;
    line-height:1.6;
}
.btn{
    display:inline-block;
    margin-top:16px;
    padding:10px 22px;
    background:#0f172a;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
}
.btn:hover{opacity:.9}

.empty{
    text-align:center;
    font-size:16px;
    color:#64748b;
}

/* ================= FOOTER ================= */
.footer{
    text-align:center;
    padding:15px;
    background:#020617;
    color:#fff;
    margin-top:40px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
    .header{
        flex-direction:column;
        gap:10px;
    }
    .nav{
        flex-wrap:wrap;
        justify-content:center;
    }
    .nav a{margin:6px 10px}

    .container,.section,.faq-wrapper{
        margin:30px 10px;
    }

    .faq-box{
        padding:28px 22px;
    }
    .faq-question{font-size:16px}
    .faq-answer p{font-size:14px}

    .offers,
    .services-grid{
        grid-template-columns:1fr;
    }
}
/* ================= WHATSAPP FINAL FIX ================= */

/* Button size */
.wa-btn{
    position:fixed;
    bottom:90px;
    right:14px;
    width:52px;
    height:52px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 6px 16px rgba(0,0,0,.3);
}

/* 🔥 IMPORTANT: global img{width:100%} ko override */
.wa-btn img{
    width:28px !important;
    height:28px !important;
    max-width:28px !important;
    max-height:28px !important;
    object-fit:contain;
}

/* Popup */
.wa-box{
    position:fixed;
    bottom:150px;
    right:14px;
    width:300px;
    max-width:92%;
    background:#fff;
    border-radius:14px;
    box-shadow:0 12px 30px rgba(0,0,0,.35);
    opacity:0;
    transform:translateY(20px);
    pointer-events:none;
    transition:all .35s ease;
    z-index:9999;
}
.wa-box.open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

/* Header */
.wa-header{
    background:#25D366;
    color:#fff;
    padding:10px 14px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-radius:14px 14px 0 0;
}

/* Body */
.wa-body{padding:12px}
.wa-body textarea{
    width:100%;
    height:70px;
    resize:none;
    padding:8px;
    border:1px solid #ddd;
    border-radius:6px;
    margin-bottom:8px;
}
.wa-body button{
    width:100%;
    background:#25D366;
    color:#020617;
    border:none;
    padding:9px;
    border-radius:6px;
    font-size:14px;
    cursor:pointer;
}

/* Mobile safety */
@media(max-width:480px){
    .wa-btn{bottom:96px; right:12px}
    .wa-box{bottom:160px; right:10px; width:94%}
}
