/* ========================= 
   ROOT
========================= */
:root{
    --primary:#00aeef;
    --primary-dark:#008ecf;
    --dark:#111;
    --text:#333;
    --light:#f9fbfd;
}

/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#fff;
    color:var(--text);
    line-height:1.6;
    overflow-x:hidden; /* FIX horizontal scroll */
}

/* =========================
   CONTAINER
========================= */
.container{
    max-width:1200px;
    margin:auto;
    width:100%;
    padding:0 20px;
}

/* =========================
   BUTTONS
========================= */
.btn{
    display:inline-block;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.call{
    background:var(--primary);
    color:#fff;
}

.call:hover{
    background:var(--primary-dark);
}

.whatsapp{
    background:#25D366;
    color:#fff;
}

/* =========================
   HEADER
========================= */
.site-header{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:1000;
}

.header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px; /* FIX spacing */
}

.logo img{
    height:48px;
}

/* MENU */
.main-menu{
    display:flex;
    gap:25px;
    align-items:center;
}

.main-menu a{
    display:flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    position:relative;
}

.main-menu a::after{
    content:"";
    position:absolute;
    bottom:-5px;
    left:0;
    width:0%;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

.main-menu a:hover::after{
    width:100%;
}

.main-menu a:hover{
    color:var(--primary);
}
.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-contact a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:30px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
}

.header-download{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:30px;
    background:#ffffff;
    border:1px solid rgba(0,174,239,.25);
    color:var(--primary) !important;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    transition:.3s ease;
}

.header-download:hover{
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:#fff !important;
    transform:translateY(-2px);
}

@media(max-width:768px){
    .header-download{
        display:none;
    }

    .header-actions{
        margin-left:auto;
    }
}
/* CTA */
.header-contact a{
    background:#00aeef;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:6px;
}

/* =========================
   MOBILE MENU
========================= */
.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}

.menu-close{
    display:none;
}

/* OVERLAY */
body.menu-open{
    overflow:hidden; /* prevent scroll */
}

body.menu-open::before{
    content:"";
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    top:0;
    left:0;
    z-index:999;
}
/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden !important;
}
/* =========================
   MOBILE
========================= */
@media(max-width:768px){

.container{
    padding:0 15px; /* tighter */
}

.menu-toggle{
    display:block;
}

.main-menu{
    position:fixed;
    right:-100%;
    top:0;
    width:280px;
    height:100%;
    background:#fff;
    flex-direction:column;
    padding:25px;
    transition:0.35s ease-in-out;
    z-index:1001;
}

.main-menu.active{
    right:0;
}

.main-menu a{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.menu-close{
    display:block;
    font-size:22px;
    margin-bottom:20px;
}

.header-contact{
    display:none;
}

/* BUTTON FIX */
.btn{
    display:block;
    width:90%;
    margin:10px auto;
    text-align:center;
}

/* TYPOGRAPHY FIX */
h1{ font-size:24px; }
h2{ font-size:22px; }
h3{ font-size:18px; }

}

/* =========================
   SECTIONS
========================= */
.section-block{
    padding:30px 0;
}

.section-block h2{
    text-align:center;
    font-size:30px;
    margin-bottom:10px;
}

.section-sub{
    text-align:center;
    color:#666;
    margin-bottom:30px;
}

/* =========================
   FOOTER
========================= */
.footer{
    background:#0B5680;
    color:#fff;
    padding:60px 0 20px;
}
.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:8px;
}
.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}
.footer-col h3,
.footer-col h4{
    margin-bottom:12px;
}

.footer p{
    font-size:14px;
    color:#ccc;
}
.footer a{
    color:#ccc;
    text-decoration:none;
}

.footer a:hover{
    color:var(--primary);
}

.footer-bottom{
    text-align:center;
    margin-top:20px;
    font-size:13px;
    color:#aaa;
}
/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

/* Buttons */
.mobile-sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999999;
}

.mobile-sticky-bar a {
    flex: 1;
    padding: 14px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.call-btn { background: #00aeef; }
.whatsapp-btn { background: #25D366; }

@media (min-width: 768px) {
    .mobile-sticky-bar { display: none; }
}
/* ===== GLOBAL FIX PATCH ===== */

body{
    overflow-x:clip;
}

.container{
    width:100%;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.section-block{
    overflow:hidden;
}
/* =========================
   PRODUCT BUTTONS 
========================= */

.product-actions{
    display:flex;
    gap:10px;
    justify-content:center;
    align-items:center;
    margin-top:15px;
    flex-wrap:nowrap;
}

/* Base button */
.product-actions .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:36px;              /* ✅ FIX: equal height */
    padding:0 16px;           /* ✅ remove vertical padding */

    font-size:13px;
    border-radius:25px;

    min-width:110px;
    max-width:140px;
    width:auto !important;

    white-space:nowrap;
    line-height:1;            /* ✅ FIX: no text stretch */

    transition:all 0.25s ease;
    box-sizing:border-box;    /* ✅ FIX: border included */
}

/* =========================
   VIEW DETAILS
========================= */
.outline{
    border:1.5px solid var(--primary);
    color:var(--primary);
    background:#fff;
}

.outline:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 5px 12px rgba(0,174,239,0.25);
}

/* =========================
   ENQUIRE
========================= */
.call{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    border:none;
    outline:none;
    box-shadow:0 4px 10px rgba(0,174,239,0.25);
}

.call:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 16px rgba(0,174,239,0.35);
}

/* =========================
   MOBILE FIX
========================= */
@media(max-width:768px){

    .product-actions{
        flex-direction:row;
        flex-wrap:nowrap;
        gap:8px;
    }

    .product-actions .btn{
        flex:1;
        min-width:auto;
        max-width:none;

        height:34px;          /* slightly smaller for mobile */
        padding:0 10px;

        font-size:12px;
    }

}
