/* ============================================================
   ASIJA ELECTRICAL'S — same design system as the asija.html
   reference, with colors tuned to match the logo (navy blue,
   blue accent, gold, white).
   ============================================================ */

/* =========================
   ROOT
========================= */

:root{
    --navy:#04295e;
    --blue:#0969d8;
    --blue2:#1685f5;
    --red:#dc2626;
    --red-dark:#b91c1c;
    --red-light:#fef2f2;
    --yellow:#f5a623;
    --orange:#e6960f;
    --light:#f8fafc;
    --text:#0f172a;
    --muted:#64748b;
    --white:#ffffff;
    --border:#e2e8f0;
    --shadow:0 12px 35px rgba(0,0,0,.08);
    --radius:16px;
}

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    font-family:inherit;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* =========================
   TOP BAR
========================= */

.topbar{
    background:var(--navy);
    color:#fff;
    font-size:13px;
    padding:9px 0;
}

.topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-left span{
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.top-left svg{
    width:15px;
    height:15px;
    flex-shrink:0;
    stroke-width:2.2;
    color:var(--yellow);
    vertical-align:middle;
}

.topbar a{
    color:#fff;
    opacity:.92;
}

.topbar a:hover{
    color:var(--yellow);
}

/* =========================
   HEADER
========================= */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 18px rgba(0,0,0,.06);
}

.navbar{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:max-content;
}

.logo-icon{
    width:47px;
    height:47px;
    background:linear-gradient(135deg,var(--blue),var(--navy));
    border-radius:12px;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:22px;
    font-weight:800;
    box-shadow:0 8px 20px rgba(9,105,216,.22);
}

.logo-text{
    font-family:'Poppins',sans-serif;
    line-height:1.05;
}

.logo-text strong{
    font-size:21px;
    color:var(--navy);
    display:block;
    letter-spacing:-.5px;
}

.logo-text span{
    color:var(--blue);
    font-size:10px;
    font-weight:700;
    letter-spacing:1.3px;
    text-transform:uppercase;
}

/* =========================
   NAV
========================= */

.nav-links{
    display:flex;
    align-items:center;
    gap:27px;
    list-style:none;
}

.nav-links > li{
    position:relative;
}

.nav-links a{
    font-size:14px;
    font-weight:600;
    color:#27344b;
    transition:.25s;
}

.nav-links a:hover{
    color:var(--blue);
}

.dropdown{
    position:absolute;
    top:42px;
    left:-15px;
    width:245px;
    background:#fff;
    padding:12px;
    border-radius:14px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.25s;
}

.dropdown a{
    display:block;
    padding:10px 12px;
    border-radius:9px;
    font-size:13px;
}

.dropdown a:hover{
    background:#f1f7ff;
}

.nav-links li:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-cta{
    background:var(--blue);
    color:#fff!important;
    padding:12px 19px;
    border-radius:10px;
    box-shadow:0 8px 18px rgba(9,105,216,.20);
}

.nav-cta:hover{
    background:var(--navy)!important;
    color:#fff!important;
}

.menu-btn{
    display:none;
    width:44px;
    height:44px;
    border:0;
    background:#eef6ff;
    color:var(--navy);
    border-radius:10px;
    font-size:23px;
    cursor:pointer;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:650px;
    background:
        radial-gradient(circle at 85% 20%,rgba(22,133,245,.18),transparent 32%),
        radial-gradient(circle at 10% 90%,rgba(255,189,23,.12),transparent 25%),
        linear-gradient(135deg,#f8fbff 0%,#edf6ff 100%);
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border:1px solid rgba(9,105,216,.08);
    border-radius:50%;
    right:-150px;
    top:-130px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:50px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    color:var(--blue);
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    box-shadow:0 8px 22px rgba(7,27,58,.07);
    margin-bottom:20px;
}

.badge i{
    width:8px;
    height:8px;
    background:var(--yellow);
    border-radius:50%;
}

.hero h1{
    font-family:'Poppins',sans-serif;
    font-size:clamp(40px,5vw,67px);
    line-height:1.04;
    color:var(--navy);
    letter-spacing:-2px;
    margin-bottom:20px;
}

.hero h1 span{
    color:var(--blue);
}

.hero p{
    color:var(--muted);
    font-size:17px;
    max-width:650px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 22px;
    border-radius:11px;
    font-size:14px;
    font-weight:700;
    transition:.25s;
}

.btn-primary{
    color:#fff;
    background:var(--blue);
    box-shadow:0 10px 25px rgba(9,105,216,.22);
}

.btn-primary:hover{
    background:var(--navy);
    transform:translateY(-2px);
}

.btn-outline{
    color:var(--navy);
    border:1px solid #cbd8e8;
    background:#fff;
}

.btn-outline:hover{
    border-color:var(--blue);
    color:var(--blue);
}

.hero-note{
    display:flex;
    gap:25px;
    margin-top:35px;
    flex-wrap:wrap;
}

.hero-note div{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    font-weight:600;
    color:#526078;
}

.check{
    width:22px;
    height:22px;
    border-radius:50%;
    background:#e6f2ff;
    color:var(--blue);
    display:grid;
    place-items:center;
    font-size:12px;
}

/* =========================
   HERO VISUAL
========================= */

.hero-visual{
    position:relative;
    min-height:450px;
}

.visual-card{
    position:absolute;
    background:#fff;
    border-radius:25px;
    box-shadow:0 25px 70px rgba(7,27,58,.15);
    border:1px solid rgba(255,255,255,.8);
}

.main-product{
    width:390px;
    height:390px;
    right:25px;
    top:25px;
    background:
        linear-gradient(145deg,#ffffff,#edf5ff);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.product-circle{
    width:270px;
    height:270px;
    border-radius:50%;
    background:linear-gradient(135deg,#dceeff,#fff);
    display:grid;
    place-items:center;
}

.battery-art{
    width:135px;
    height:190px;
    background:linear-gradient(90deg,#1c2e46,#071b3a);
    border-radius:15px;
    position:relative;
    box-shadow:0 20px 35px rgba(7,27,58,.30);
}

.battery-art::before{
    content:"";
    position:absolute;
    top:-10px;
    left:35px;
    width:65px;
    height:12px;
    background:#1a2b42;
    border-radius:6px 6px 0 0;
}

.battery-art::after{
    content:"POWER";
    position:absolute;
    left:18px;
    top:75px;
    color:var(--yellow);
    font-size:18px;
    font-weight:800;
    transform:rotate(-90deg);
}

.floating-card{
    padding:17px;
    display:flex;
    align-items:center;
    gap:12px;
}

.float-one{
    left:0;
    top:85px;
}

.float-two{
    right:0;
    bottom:30px;
}

.float-icon{
    width:44px;
    height:44px;
    border-radius:12px;
    background:#e9f4ff;
    display:grid;
    place-items:center;
    font-size:21px;
}

.float-text strong{
    display:block;
    color:var(--navy);
    font-size:14px;
}

.float-text small{
    color:var(--muted);
    font-size:11px;
}

/* =========================
   TRUST BAR
========================= */

.trust{
    background:var(--navy);
    color:#fff;
    padding:22px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.trust-icon{
    font-size:25px;
}

.trust-item strong{
    display:block;
    font-size:14px;
}

.trust-item span{
    display:block;
    font-size:11px;
    opacity:.65;
}

/* =========================
   SECTIONS
========================= */

section{
    padding:90px 0;
}

.section-head{
    text-align:center;
    max-width:720px;
    margin:0 auto 50px;
}

.section-label{
    color:var(--blue);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin-bottom:10px;
}

.section-head h2{
    font-family:'Poppins',sans-serif;
    font-size:38px;
    line-height:1.2;
    color:var(--navy);
    margin-bottom:13px;
}

.section-head p{
    color:var(--muted);
    font-size:15px;
}

/* =========================
   PRODUCTS
========================= */

.products{
    background:#fff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.product-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
    position:relative;
}

.product-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
    border-color:#cfe2f7;
}

.product-image{
    height:190px;
    background:linear-gradient(135deg,#f4f9ff,#e9f4ff);
    display:grid;
    place-items:center;
    position:relative;
    overflow:hidden;
}

.product-emoji{
    font-size:70px;
    filter:drop-shadow(0 10px 12px rgba(7,27,58,.10));
}

.product-content{
    padding:20px;
}

.product-content h3{
    color:var(--navy);
    font-family:'Poppins',sans-serif;
    font-size:18px;
    margin-bottom:7px;
}

.product-content p{
    font-size:12px;
    color:var(--muted);
    margin-bottom:14px;
}

.product-link{
    color:var(--blue);
    font-size:12px;
    font-weight:800;
}

/* =========================
   ABOUT
========================= */

.about{
    background:var(--light);
}

.about-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:65px;
    align-items:center;
}

.about-image{
    min-height:430px;
    border-radius:25px;
    background:
        linear-gradient(135deg,rgba(7,27,58,.92),rgba(9,105,216,.88)),
        #071b3a;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-image::before,
.about-image::after{
    content:"";
    position:absolute;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
}

.about-image::before{
    width:380px;
    height:380px;
}

.about-image::after{
    width:280px;
    height:280px;
}

.about-center{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.about-center strong{
    display:block;
    font-family:'Poppins',sans-serif;
    font-size:42px;
}

.about-center span{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:var(--yellow);
}

.about-content .section-label{
    text-align:left;
}

.about-content h2{
    font-family:'Poppins',sans-serif;
    color:var(--navy);
    font-size:38px;
    line-height:1.2;
    margin-bottom:17px;
}

.about-content p{
    color:var(--muted);
    font-size:15px;
    margin-bottom:15px;
}

.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:13px;
    margin:25px 0;
}

.about-point{
    display:flex;
    align-items:center;
    gap:9px;
    font-size:13px;
    font-weight:700;
}

.about-point span{
    width:24px;
    height:24px;
    background:#e2f0ff;
    color:var(--blue);
    border-radius:50%;
    display:grid;
    place-items:center;
    font-size:12px;
}

/* =========================
   WHY US
========================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.why-card{
    padding:30px;
    border:1px solid var(--border);
    border-radius:18px;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.why-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    background:#eaf4ff;
    display:grid;
    place-items:center;
    font-size:25px;
    margin-bottom:20px;
}

.why-card h3{
    font-family:'Poppins',sans-serif;
    font-size:18px;
    color:var(--navy);
    margin-bottom:8px;
}

.why-card p{
    color:var(--muted);
    font-size:13px;
}

/* =========================
   BRANDS
========================= */

.brands{
    background:var(--light);
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

@media (max-width: 992px) {
    .brand-grid {
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width: 640px) {
    .brand-grid {
        grid-template-columns:repeat(2,1fr);
    }
}

.brand,
.brand-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.brand-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(9,105,216,0.12);
    border-color: #cbd5e1;
}

.brand-inner{
    height:95px;
    padding: 14px 16px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:14px;
    background: #ffffff;
}

.brand-logo-text{
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-category-tag{
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.brand-img-logo{
    max-width: 85%;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-img-logo{
    transform: scale(1.06);
}

/* =========================
   CTA
========================= */

.cta{
    padding:70px 0;
}

.cta-box{
    background:
        radial-gradient(circle at 90% 10%,rgba(255,189,23,.20),transparent 25%),
        linear-gradient(135deg,var(--navy),#0a4b91);
    border-radius:25px;
    padding:55px 60px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    overflow:hidden;
}

.cta-box h2{
    font-family:'Poppins',sans-serif;
    font-size:36px;
    line-height:1.2;
    margin-bottom:10px;
}

.cta-box p{
    opacity:.78;
    font-size:14px;
    max-width:650px;
}

.btn-yellow{
    background:var(--yellow);
    color:var(--navy);
    white-space:nowrap;
}

.btn-yellow:hover{
    background:#fff;
}

/* =========================
   CONTACT
========================= */

.contact{
    background:#f8fafc;
}

.contact-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:35px;
}

.contact-info{
    background:var(--navy);
    color:#fff;
    padding:35px;
    border-radius:20px;
}

.contact-info h3{
    font-family:'Poppins',sans-serif;
    font-size:26px;
    margin-bottom:12px;
}

.contact-info > p{
    color:rgba(255,255,255,.68);
    font-size:13px;
    margin-bottom:28px;
}

.contact-item{
    display:flex;
    gap:14px;
    margin:22px 0;
}

.contact-item .icon{
    width:42px;
    height:42px;
    border-radius:10px;
    background:rgba(255,255,255,.10);
    display:grid;
    place-items:center;
}

.contact-item strong{
    display:block;
    font-size:13px;
}

.contact-item span{
    color:rgba(255,255,255,.65);
    font-size:12px;
}

.contact-form{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
}

.contact-form h3{
    font-family:'Poppins',sans-serif;
    color:var(--navy);
    margin-bottom:20px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.field{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.field.full{
    grid-column:1/-1;
}

.field label{
    font-size:12px;
    font-weight:700;
    color:#344054;
}

.field input,
.field select,
.field textarea{
    border:1px solid #d9e1eb;
    border-radius:9px;
    padding:12px 13px;
    outline:none;
    font-family:inherit;
    font-size:13px;
    transition:.2s;
}

.field textarea{
    min-height:120px;
    resize:vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
    border-color:var(--blue);
    box-shadow:0 0 0 3px rgba(9,105,216,.08);
}

/* =========================
   FOOTER
========================= */

footer{
    background:#041329;
    color:#fff;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:45px;
}

.footer-logo strong{
    font-family:'Poppins',sans-serif;
    font-size:21px;
}

.footer-logo p{
    color:rgba(255,255,255,.58);
    font-size:12px;
    max-width:320px;
    margin-top:12px;
}

.footer-col h4{
    font-size:14px;
    margin-bottom:18px;
}

.footer-col a{
    display:block;
    color:rgba(255,255,255,.60);
    font-size:12px;
    margin:10px 0;
}

.footer-col a:hover{
    color:var(--yellow);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.10);
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    color:rgba(255,255,255,.45);
    font-size:11px;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    display:grid;
    place-items:center;
    font-size:28px;
    z-index:999;
    box-shadow:0 12px 30px rgba(37,211,102,.30);
    transition:.25s;
}

.whatsapp:hover{
    transform:scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1050px){

    .nav-links{
        gap:17px;
    }

    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .hero-grid{
        gap:30px;
    }
}

@media(max-width:850px){

    .topbar{
        display:none;
    }

    .navbar{
        min-height:70px;
    }

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        padding:15px 5%;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:4px;
        box-shadow:0 15px 25px rgba(0,0,0,.08);
        border-top:1px solid var(--border);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links > li > a{
        display:block;
        padding:12px;
    }

    .dropdown{
        position:static;
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
        width:100%;
        box-shadow:none;
        border:0;
        padding:0 10px;
    }

    .nav-links li:hover .dropdown{
        display:block;
    }

    .hero{
        min-height:auto;
        padding:80px 0;
    }

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-visual{
        min-height:420px;
    }

    .main-product{
        right:50%;
        transform:translateX(50%);
    }

    .float-one{
        left:5%;
    }

    .float-two{
        right:5%;
    }

    .trust-grid{
        grid-template-columns:1fr 1fr;
    }

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .about-image{
        min-height:350px;
    }

    .why-grid{
        grid-template-columns:1fr 1fr;
    }

    .brand-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .cta-box{
        flex-direction:column;
        align-items:flex-start;
        padding:45px 35px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){

    section{
        padding:65px 0;
    }

    .container{
        width:90%;
    }

    .logo-icon{
        width:42px;
        height:42px;
    }

    .logo-text strong{
        font-size:17px;
    }

    .logo-text span{
        font-size:8px;
    }

    .hero{
        padding:65px 0 50px;
    }

    .hero h1{
        font-size:40px;
        letter-spacing:-1.5px;
    }

    .hero p{
        font-size:14px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .hero-note{
        gap:12px;
        flex-direction:column;
    }

    .hero-visual{
        min-height:350px;
    }

    .main-product{
        width:300px;
        height:300px;
        top:20px;
    }

    .product-circle{
        width:210px;
        height:210px;
    }

    .battery-art{
        width:105px;
        height:145px;
    }

    .float-one{
        left:-5px;
        top:40px;
    }

    .float-two{
        right:-5px;
        bottom:20px;
    }

    .floating-card{
        padding:11px;
    }

    .float-icon{
        width:35px;
        height:35px;
        font-size:16px;
    }

    .float-text strong{
        font-size:11px;
    }

    .float-text small{
        font-size:9px;
    }

    .trust-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .trust-item{
        gap:7px;
    }

    .trust-icon{
        font-size:19px;
    }

    .trust-item strong{
        font-size:11px;
    }

    .trust-item span{
        font-size:9px;
    }

    .section-head h2,
    .about-content h2{
        font-size:29px;
    }

    .product-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .product-image{
        height:135px;
    }

    .product-emoji{
        font-size:48px;
    }

    .product-content{
        padding:14px;
    }

    .product-content h3{
        font-size:14px;
    }

    .product-content p{
        font-size:10px;
    }

    .about-points{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .brand-grid{
        grid-template-columns:1fr 1fr;
    }

    .cta-box h2{
        font-size:28px;
    }

    .contact-form,
    .contact-info{
        padding:25px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .field.full{
        grid-column:auto;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .whatsapp{
        width:52px;
        height:52px;
        right:16px;
        bottom:16px;
        font-size:24px;
    }
}


/* =========================
   INNER PAGE HERO
   (battery.php, inverter.php, etc.)
========================= */

.page-hero{
    background:
        radial-gradient(circle at 85% 15%,rgba(22,133,245,.25),transparent 35%),
        linear-gradient(120deg,var(--navy),#0a4b91);
    color:#fff;
    padding:56px 0 64px;
}

.breadcrumb{
    font-size:12.5px;
    color:rgba(255,255,255,.6);
    margin-bottom:18px;
}

.breadcrumb a{
    color:rgba(255,255,255,.85);
}

.breadcrumb a:hover{
    color:var(--yellow);
}

.page-hero h1{
    font-family:'Poppins',sans-serif;
    color:#fff;
    font-size:clamp(32px,4.4vw,48px);
    letter-spacing:-1px;
    max-width:700px;
}

.page-hero p.lead{
    color:rgba(255,255,255,.85);
    max-width:600px;
    font-size:16px;
    margin-top:14px;
}

/* =========================
   DETAIL LAYOUT
========================= */

.detail-wrap{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:50px;
    padding:70px 0;
    align-items:start;
}

.detail-figure{
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    margin-bottom:10px;
}

.detail-figure img{
    width:100%;
    object-fit:cover;
}

.detail-figure figcaption{
    font-size:12px;
    color:var(--muted);
    padding:10px 2px;
}

.detail-wrap h2{
    font-family:'Poppins',sans-serif;
    color:var(--navy);
    font-size:26px;
}

.table-scroll{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    margin:24px 0 10px;
    border-radius:12px;
}

.spec-table{
    width:100%;
    border-collapse:collapse;
    min-width:480px;
}

.spec-table caption{
    text-align:left;
    font-size:12px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--orange);
    font-weight:800;
    margin-bottom:10px;
}

.spec-table th,
.spec-table td{
    text-align:left;
    padding:13px 14px;
    border-bottom:1px solid var(--border);
    font-size:14px;
}

.spec-table th{
    font-size:11.5px;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--muted);
    background:var(--light);
}

.spec-table td.num{
    color:var(--navy);
    font-weight:700;
}

.side-card{
    background:var(--light);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px;
    margin-bottom:20px;
}

.side-card h4{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    color:var(--navy);
    margin-bottom:12px;
}

.side-card ul{
    margin:0;
    padding-left:18px;
    color:var(--muted);
    font-size:14px;
}

.side-card ul li{
    margin-bottom:8px;
}

.side-card .btn{
    width:100%;
    margin-top:6px;
}

.related-links{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:14px;
}

.related-links a{
    font-size:12px;
    border:1px solid var(--border);
    padding:8px 13px;
    border-radius:999px;
    color:var(--navy);
    font-weight:700;
    transition:.2s;
}

.related-links a:hover{
    border-color:var(--yellow);
    color:var(--orange);
    background:#fff;
}

/* Gold / navy button variants used on inner pages */
.btn-gold{
    background:linear-gradient(135deg,var(--yellow),var(--orange));
    color:var(--navy);
    box-shadow:0 10px 24px rgba(230,150,15,.28);
}

.btn-gold:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(230,150,15,.36);
}

.btn-navy{
    background:var(--blue);
    color:#fff;
    box-shadow:0 10px 24px rgba(9,105,216,.22);
}

.btn-navy:hover{
    background:var(--navy);
    transform:translateY(-2px);
}

/* Quick-contact CTA bar shown above the footer on every page */
.contact-band{
    padding:70px 0 0;
}

@media(max-width:850px){
    .detail-wrap{
        grid-template-columns:1fr;
    }
}

/* =========================
   ICON SYSTEM
   (all icons are simple inline
   SVGs — no emoji anywhere)
========================= */

.top-right a,
.footer-col a[href^="tel"],
.footer-col a[href^="mailto"],
.dropdown a,
.btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.top-right svg{
    width:14px;
    height:14px;
    stroke-width:2.2;
}

.dropdown a svg{
    width:16px;
    height:16px;
    color:var(--blue);
    flex-shrink:0;
}

.btn svg{
    width:16px;
    height:16px;
    flex-shrink:0;
    stroke-width:2.2;
}

.badge svg{
    width:14px;
    height:14px;
}

.check{
    color:var(--blue);
}

.check svg{
    width:13px;
    height:13px;
    stroke-width:3;
}

.about-point span{
    color:var(--blue);
}

.about-point span svg{
    width:13px;
    height:13px;
    stroke-width:3;
}

.why-icon{
    color:var(--blue);
}

.why-icon svg{
    width:26px;
    height:26px;
    stroke-width:1.9;
}

.trust-icon{
    display:grid;
    place-items:center;
    width:44px;
    height:44px;
    border-radius:12px;
    background:rgba(255,255,255,.10);
}

.trust-icon svg{
    width:22px;
    height:22px;
    stroke-width:1.9;
}

.float-icon{
    color:var(--blue);
}

.float-icon svg{
    width:22px;
    height:22px;
    stroke-width:1.9;
}

.contact-item .icon svg{
    width:20px;
    height:20px;
    stroke-width:1.9;
}

.whatsapp svg{
    width:27px;
    height:27px;
    stroke-width:2;
}

/* =========================
   HAMBURGER (CSS-only icon,
   toggles into a close cross)
========================= */

.hamburger{
    position:relative;
    display:inline-block;
    width:19px;
    height:14px;
}

.hamburger span{
    position:absolute;
    left:0;
    width:100%;
    height:2px;
    background:var(--navy);
    border-radius:2px;
    transition:.25s ease;
}

.hamburger span:nth-child(1){ top:0; }
.hamburger span:nth-child(2){ top:6px; }
.hamburger span:nth-child(3){ top:12px; }

.menu-btn.open .hamburger span:nth-child(1){
    top:6px;
    transform:rotate(45deg);
}

.menu-btn.open .hamburger span:nth-child(2){
    opacity:0;
}

.menu-btn.open .hamburger span:nth-child(3){
    top:6px;
    transform:rotate(-45deg);
}

/* ============================================================
   SAMOFLIX HEADER PRODUCT BAR & CAROUSEL (HOVER MEGA MENU)
   ============================================================ */

.sf-header-products-bar{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0 14px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 998;
    pointer-events: none;
}

.nav-item-products:hover ~ .sf-header-products-bar,
.nav-item-products:hover .sf-header-products-bar,
.sf-header-products-bar:hover,
.sf-header-products-bar.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sf-header-cat-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.sf-cat-tab{
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    padding: 4px 12px;
    position: relative;
    transition: 0.2s;
    text-decoration: none;
}

.sf-cat-tab:hover,
.sf-cat-tab.active{
    color: var(--blue);
}

.sf-cat-tab.active::after{
    content: '';
    position: absolute;
    bottom: -6px;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
}

.sf-header-products-scroll{
    display: flex;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px 12px;
}

.sf-header-products-scroll::-webkit-scrollbar{
    display: none;
}

.sf-header-card{
    flex: 0 0 135px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 10px;
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.sf-header-card:hover,
.sf-header-card.active{
    background: #ffffff;
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(9, 105, 216, 0.12);
}

.sf-header-card-img{
    width: 90px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.sf-header-card-img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sf-header-card strong{
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.sf-header-card:hover strong,
.sf-header-card.active strong{
    color: var(--blue);
}

.sf-header-scroll-track{
    width: 220px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 6px auto 0;
    position: relative;
    overflow: hidden;
}

.sf-header-scroll-thumb{
    width: 70px;
    height: 100%;
    background: var(--blue);
    border-radius: 4px;
}

.nav-cta{
    background: var(--blue) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 18px rgba(9, 105, 216, 0.28) !important;
    transition: 0.25s !important;
}

.nav-cta:hover{
    background: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(4, 41, 94, 0.35) !important;
}

.nav-btn-demo{
    background: #fff;
    border: 1px solid var(--border);
    color: #1e293b !important;
    border-radius: 50px;
    padding: 9px 18px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
}

.nav-btn-demo:hover{
    border-color: var(--blue);
    color: var(--blue) !important;
    background: #eef6ff;
}

/* Product Showcase Grid in Project Blue Palette */
.sf-section-label{
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
}

.sf-product-card{
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.sf-product-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(9, 105, 216, 0.10);
    border-color: rgba(9, 105, 216, 0.3);
}

.sf-product-img-holder{
    background: #f8fafc;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}

.sf-product-img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-center img{
    width: 340px;
    max-width: 90%;
    height: auto;
    background: #ffffff;
    padding: 24px 32px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: inline-block;
}

.sf-product-card:hover .sf-product-img-holder img{
    transform: scale(1.05);
}

.sf-product-body{
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sf-product-brand{
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sf-product-title{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.sf-product-desc{
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.sf-product-link{
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.sf-product-card:hover .sf-product-link{
    gap: 10px;
    color: var(--navy);
}

/* Product Detail Page Layout */
.sf-detail-section{
    padding: 40px 0 70px;
}

.sf-breadcrumb{
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
}

.sf-breadcrumb a{
    color: #334155;
    font-weight: 500;
}

.sf-breadcrumb a:hover{
    color: var(--blue);
}

.sf-detail-grid{
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 45px;
    align-items: start;
}

.sf-image-container{
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

.sf-image-container img{
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

.sf-badge{
    display: inline-block;
    background: #eef6ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(9, 105, 216, 0.18);
}

.sf-title{
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 6px;
}

.sf-tagline{
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.sf-desc{
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.sf-highlights-title{
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.sf-highlights-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.sf-highlight-pill{
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.sf-highlight-pill svg{
    width: 16px;
    height: 16px;
    color: var(--blue);
}

.sf-quote-title{
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.sf-whatsapp-btn{
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff !important;
    width: 100%;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sf-whatsapp-btn svg{
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    flex-shrink: 0 !important;
    stroke-width: 2.2;
}

.sf-whatsapp-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #28e16d, #149c8d);
}

.sf-features-card{
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px;
    margin-top: 45px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.03);
}

.sf-features-header{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

.sf-features-header::after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--blue);
}

.sf-features-header-icon{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eef6ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
}

.sf-features-header-icon svg{
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

.sf-features-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.sf-feature-item{
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}

.sf-feature-item:hover{
    border-color: rgba(9, 105, 216, 0.3);
    background: #fff;
    box-shadow: 0 4px 12px rgba(9, 105, 216, 0.05);
}

.sf-check-circle{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eef6ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
}

.sf-check-circle svg{
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
}

@media(max-width: 850px){
    .sf-header-products-bar{
        display: none !important;
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        padding: 12px 0 10px;
        border-top: 1px solid #f1f5f9;
        pointer-events: none;
    }

    .sf-header-products-bar.mobile-active{
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .sf-header-cat-tabs{
        gap: 8px;
        margin-bottom: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
    }
    
    .sf-cat-tab{
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .sf-header-products-scroll{
        gap: 10px;
        padding-bottom: 8px;
    }
    
    .sf-header-card{
        flex: 0 0 115px;
        padding: 10px 6px;
        border-radius: 12px;
    }
    
    .sf-header-card-img{
        width: 70px;
        height: 55px;
        margin-bottom: 6px;
    }
    
    .sf-header-card strong{
        font-size: 11px;
    }
    
    .sf-header-scroll-track{
        width: 140px;
        height: 3px;
    }

    .sf-detail-section{
        padding: 24px 0 50px;
    }

    .sf-detail-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sf-image-container{
        min-height: auto;
        height: 280px;
        padding: 18px;
        border-radius: 18px;
    }

    .sf-image-container img{
        max-height: 240px;
    }

    .sf-title{
        font-size: 26px;
    }

    .sf-tagline{
        font-size: 14px;
    }

    .sf-features-card{
        padding: 24px 18px;
        border-radius: 18px;
        margin-top: 30px;
    }

    .sf-features-grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sf-feature-item{
        padding: 12px 14px;
        font-size: 13px;
    }
}

@media(max-width: 768px){
    .product-grid{
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .sf-product-card{
        border-radius: 18px !important;
        overflow: hidden !important;
    }

    .sf-product-img-holder{
        height: 220px !important;
    }

    .sf-product-body{
        padding: 20px !important;
    }

    .sf-product-brand{
        font-size: 11px !important;
    }

    .sf-product-title{
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    .sf-product-desc{
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .sf-title{
        font-size: 22px;
    }

    .sf-image-container{
        height: 230px;
        padding: 12px;
    }

    .sf-image-container img{
        max-height: 200px;
    }

    .sf-highlight-pill{
        padding: 8px 12px;
        font-size: 12px;
    }

    .sf-whatsapp-btn{
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 12px;
    }
}

