*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:#243447;
    line-height:1.65;
    background:#fff;
}

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

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

button,
input,
textarea,
select{
    font:inherit;
}

:root{
    --navy:#0b1f3a;
    --blue:#0b1f3a;
    --gold:#d6a84f;
    --light:#f5f7fa;
    --muted:#667085;
    --border:#e4e8ee;
}

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


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

.navwrap{
    background:#ffffff;

    /* LIVE SITE STYLE BLUE BOTTOM LINE */
    border-bottom:4px solid #0b1f3a;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    position:relative;
    z-index:1000;
}

.navin{
    min-height:88px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:28px;
}


/* ==================================================
   LOGO + ARABIN INTERNATIONAL
================================================== */

.brand{
    display:flex;
    align-items:center;

    gap:14px;

    flex-shrink:0;

    color:#0b1f3a;
}

.site-logo{
    width:155px;
    height:auto;
    max-height:68px;

    object-fit:contain;

    flex-shrink:0;
}

.brand-name{
    display:block;

    color:#0b1f3a;

    font-family:Arial,Helvetica,sans-serif;

    font-size:30px;

    font-weight:900;

    line-height:1;

    letter-spacing:.2px;

    white-space:nowrap;
}


/* ==================================================
   NAVIGATION
================================================== */

.nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.nav>a,
.drop>a{
    display:flex;
    align-items:center;

    height:84px;

    padding:0 14px;

    font-size:16px;

    font-weight:700;

    color:#0b1f3a;

    white-space:nowrap;

    transition:color .2s ease,
               background .2s ease;
}

.nav>a:hover,
.nav>a.active,
.drop>a:hover,
.drop>a.active{
    color:#d6a84f;
}


/* ==================================================
   GALLERY ARROW
================================================== */

.arrow{
    display:inline-block;

    margin-left:5px;

    font-size:15px;

    line-height:1;
}


/* ==================================================
   DROPDOWN
================================================== */

.drop{
    position:relative;
}

.dropmenu{
    display:none;

    position:absolute;

    top:100%;
    right:0;

    width:225px;

    padding:8px;

    background:#fff;

    border-top:3px solid #0b1f3a;

    box-shadow:
        0 12px 35px rgba(10,31,58,.16);
}

.dropmenu a{
    display:block;

    padding:11px 13px;

    font-size:14px;

    font-weight:600;

    color:#243447;

    border-bottom:1px solid #eef1f5;

    transition:.2s ease;
}

.dropmenu a:last-child{
    border-bottom:0;
}

.dropmenu a:hover{
    background:#f5f7fa;
    color:#0b1f3a;
}


/* DESKTOP DROPDOWN */

@media(min-width:901px){

    .drop:hover .dropmenu{
        display:block;
    }

}


/* ==================================================
   MOBILE MENU BUTTON
================================================== */

.menubtn{
    display:none;

    width:44px;
    height:42px;

    padding:0;

    border:0;

    border-radius:5px;

    background:#0b1f3a;

    color:#fff;

    font-size:22px;

    line-height:1;

    cursor:pointer;
}


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

.hero{
    min-height:650px;

    background:
        linear-gradient(
            90deg,
            rgba(4,18,37,.88),
            rgba(4,18,37,.52),
            rgba(4,18,37,.15)
        ),
        url('../images/hero.jpeg')
        center center / cover
        no-repeat;

    display:flex;

    align-items:center;

    color:#fff;
}

.hero>div{
    padding:90px 0;
}

.eyebrow,
.kicker{
    font-size:12px;

    letter-spacing:2px;

    font-weight:800;

    color:var(--gold);
}

.hero h1{
    font-size:clamp(40px,5vw,68px);

    line-height:1.1;

    max-width:850px;

    margin:10px 0 22px;
}

.hero h1 span{
    display:block;

    color:#f1c86d;
}

.hero p{
    max-width:760px;

    font-size:18px;
}

.actions{
    display:flex;

    gap:12px;

    margin-top:25px;

    flex-wrap:wrap;
}


/* ==================================================
   BUTTONS
================================================== */

.btn{
    display:inline-block;

    padding:12px 20px;

    border-radius:5px;

    font-weight:700;

    border:1px solid transparent;

    cursor:pointer;

    transition:.2s ease;
}

.btn:hover{
    transform:translateY(-1px);
}

.primary{
    background:var(--gold);

    color:#111c2c;
}

.primary:hover{
    background:#e5b962;
}

.outline{
    border-color:#fff;

    color:#fff;
}

.outline:hover{
    background:#fff;

    color:var(--navy);
}

.outline.dark{
    border-color:var(--navy);

    color:var(--navy);

    margin-left:7px;
}

.outline.dark:hover{
    background:var(--navy);

    color:#fff;
}


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

.section{
    padding:80px 0;
}

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

h1,
h2,
h3{
    color:var(--navy);
}

h2{
    font-size:38px;

    line-height:1.15;
}

.two{
    display:grid;

    grid-template-columns:1.4fr .8fr;

    gap:60px;

    align-items:center;
}

.card,
.service,
.project,
.formcard{
    background:#fff;

    border:1px solid var(--border);

    border-radius:10px;

    padding:28px;

    box-shadow:
        0 12px 35px rgba(10,31,58,.07);
}

.grid3{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.service span{
    color:var(--gold);

    font-weight:800;
}

.service h3{
    margin:8px 0;
}

.service p,
.muted{
    color:var(--muted);
}

.heading{
    display:flex;

    justify-content:space-between;

    align-items:end;

    margin-bottom:30px;
}


/* ==================================================
   STATS
================================================== */

.stats{
    background:var(--navy);

    color:#fff;

    padding:38px 0;
}

.statsgrid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    text-align:center;
}

.stats strong{
    display:block;

    font-size:38px;

    color:var(--gold);
}


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

.cta{
    background:var(--navy);

    color:#fff;

    border-radius:12px;

    padding:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;
}

.cta h2{
    color:#fff;

    margin:0;
}


/* ==================================================
   INNER PAGE HERO
================================================== */

.pagehero{
    background:
        linear-gradient(
            100deg,
            var(--navy),
            #102d50
        );

    color:#fff;

    padding:90px 0;
}

.pagehero h1{
    color:#fff;

    font-size:46px;

    margin:8px 0;
}


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

.footer{
    background:#08182c;

    color:#c8d3df;
}

.footgrid{
    display:grid;

    grid-template-columns:1.4fr .8fr .9fr 1fr;

    gap:35px;

    padding:55px 0;
}

.footgrid h4{
    color:#fff;

    margin-top:0;

    margin-bottom:15px;
}

.footgrid a{
    display:block;

    margin:7px 0;

    color:#c8d3df;

    font-size:14px;

    transition:.2s ease;
}

.footgrid a:hover{
    color:var(--gold);
}

.footbrand{
    color:#fff;

    margin-bottom:15px;
}

.footgrid p{
    font-size:14px;

    margin:7px 0;
}

.foot-social{
    display:flex !important;

    align-items:center;

    gap:9px;

    margin:10px 0 !important;

    color:#c8d3df;
}

.foot-social img{
    width:22px;

    height:22px;

    object-fit:contain;
}

.social-links{
    display:flex;

    flex-wrap:wrap;

    gap:9px;

    margin-top:15px;
}

.social-links a{
    display:flex;

    align-items:center;

    justify-content:center;

    width:38px;

    height:38px;

    border:1px solid rgba(255,255,255,.18);

    border-radius:50%;

    font-size:15px;

    margin:0;
}

.social-links a:hover{
    background:var(--gold);

    color:var(--navy);

    border-color:var(--gold);
}

.wechat-footer{
    width:22px;

    height:22px;

    object-fit:contain;
}

.footbottom{
    border-top:1px solid rgba(255,255,255,.08);

    padding:17px;

    text-align:center;

    font-size:12px;
}


/* ==================================================
   GALLERY
================================================== */

.gallerybar{
    display:flex;

    justify-content:space-between;

    gap:15px;

    align-items:center;

    background:var(--light);

    padding:16px;

    border:1px solid var(--border);

    border-radius:8px;

    margin-bottom:38px;
}

.tabs{
    display:flex;

    gap:5px;

    flex-wrap:wrap;
}

.tabs a{
    padding:9px 13px;

    border-radius:5px;

    font-size:13px;

    font-weight:700;
}

.tabs a.active,
.tabs a:hover{
    background:var(--navy);

    color:#fff;
}

.search{
    display:flex;

    gap:5px;
}

.search input{
    padding:10px;

    width:220px;

    border:1px solid var(--border);

    border-radius:5px;
}

.search button{
    background:var(--navy);

    color:#fff;

    border:0;

    border-radius:5px;

    padding:0 15px;

    cursor:pointer;
}

.cathead{
    display:flex;

    justify-content:space-between;

    align-items:end;

    margin:0 0 20px;
}


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

.products{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:60px;
}

.product{
    border:1px solid var(--border);

    border-radius:9px;

    overflow:hidden;

    transition:.2s ease;

    background:#fff;
}

.product:hover{
    transform:translateY(-4px);

    box-shadow:
        0 12px 35px rgba(10,31,58,.10);
}

.pimg{
    display:block;

    aspect-ratio:1;

    background:#f7f8fa;
}

.pimg img{
    width:100%;

    height:100%;

    object-fit:cover;
}

.pbody{
    padding:16px;
}

.pcat{
    font-size:10px;

    text-transform:uppercase;

    letter-spacing:1px;

    color:var(--gold);

    font-weight:800;
}

.pbody h3{
    font-size:16px;

    line-height:1.3;

    margin:5px 0;
}

.pbody p{
    font-size:13px;

    color:var(--muted);

    min-height:40px;
}

.price{
    font-size:18px;

    font-weight:800;

    color:var(--navy);
}

.price del{
    font-size:12px;

    color:#8994a2;

    margin-left:7px;
}


/* ==================================================
   PRODUCT DETAIL
================================================== */

.detail{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:55px;
}

.detail img{
    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    background:var(--light);

    border-radius:10px;
}

.detail h1{
    font-size:44px;

    line-height:1.15;
}

.detailprice{
    font-size:28px;

    font-weight:800;

    color:var(--navy);

    margin:25px 0;
}


/* ==================================================
   FORMS
================================================== */

.narrow{
    max-width:850px;
}

.formcard input,
.formcard textarea,
.formcard select{
    width:100%;

    padding:11px;

    border:1px solid var(--border);

    border-radius:5px;

    margin:6px 0 15px;

    font:inherit;

    background:#fff;
}

.formcard input:focus,
.formcard textarea:focus,
.formcard select:focus{
    outline:none;

    border-color:var(--gold);
}


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

.projects{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;
}

.contactgrid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;
}

.empty{
    text-align:center;

    padding:70px;
}


/* ==================================================
   ADMIN
================================================== */

.adminwrap{
    padding:45px 0;

    min-height:70vh;
}

.adminhead{
    display:flex;

    justify-content:space-between;

    align-items:end;

    margin-bottom:25px;
}

.admstats{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.admstats div{
    background:#fff;

    border:1px solid var(--border);

    padding:25px;

    border-radius:8px;
}

.admstats strong{
    display:block;

    font-size:34px;

    color:var(--navy);
}

.adm-actions{
    display:flex;

    gap:10px;

    margin-top:25px;

    flex-wrap:wrap;
}

.adm-table{
    width:100%;

    border-collapse:collapse;
}

.adm-table th,
.adm-table td{
    padding:11px;

    border-bottom:1px solid var(--border);

    text-align:left;

    font-size:13px;
}

.thumb{
    width:60px;

    height:60px;

    object-fit:cover;

    border-radius:5px;
}

.formgrid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;
}


/* ==================================================
   FLOATING SOCIAL
================================================== */

.floating-social{
    position:fixed;

    right:20px;

    bottom:25px;

    z-index:9999;

    display:flex;

    flex-direction:column;

    gap:10px;
}

.float-btn{
    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.18);

    transition:.25s ease;

    overflow:hidden;
}

.float-btn:hover{
    transform:scale(1.08);
}

.float-btn img{
    width:100%;

    height:100%;

    object-fit:cover;
}

.float-whatsapp{
    background:#25D366;

    color:#fff;

    font-size:25px;

    font-weight:bold;
}


/* ==================================================
   TABLET
================================================== */

@media(max-width:1000px){

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

    .grid3{
        grid-template-columns:repeat(2,1fr);
    }

    .footgrid{
        grid-template-columns:repeat(2,1fr);
    }

}


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

@media(max-width:900px){

    .navin{
        min-height:68px;
    }

    .site-logo{
        width:140px;

        max-height:58px;
    }

    .brand-name{
        font-size:24px;
    }

    .menubtn{
        display:flex;

        align-items:center;

        justify-content:center;
    }

    .nav{
        display:none;

        position:absolute;

        top:100%;

        left:0;

        right:0;

        background:#fff;

        padding:10px 4%;

        flex-direction:column;

        align-items:stretch;

        box-shadow:
            0 12px 25px rgba(0,0,0,.08);
    }

    .nav.open{
        display:flex;
    }

    .nav>a,
    .drop>a{
        height:auto;

        padding:13px 12px;

        font-size:16px;
    }

    .dropmenu{
        position:static;

        width:100%;

        box-shadow:none;

        border-top:0;

        border-left:3px solid var(--navy);

        padding-left:10px;

        min-width:0;
    }

    .drop:hover .dropmenu{
        display:none;
    }

    .drop.open .dropmenu{
        display:block;
    }

    .two,
    .detail,
    .contactgrid{
        grid-template-columns:1fr;
    }

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

    .statsgrid{
        grid-template-columns:repeat(2,1fr);

        gap:20px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media(max-width:620px){

    .container{
        width:92%;
    }

    .navwrap{
        border-bottom-width:4px;
    }

    .navin{
        min-height:64px;

        gap:8px;
    }

    .brand{
        gap:8px;

        min-width:0;

        max-width:calc(100% - 52px);
    }

    .site-logo{
        width:112px;

        max-height:48px;
    }

    .brand-name{
        font-size:18px;

        font-weight:900;

        line-height:1;

        white-space:nowrap;

        letter-spacing:0;
    }

    .menubtn{
        width:42px;

        height:40px;

        font-size:19px;

        flex-shrink:0;
    }

    .nav{
        top:64px;
    }

    .hero{
        min-height:590px;

        background-position:center center;
    }

    .hero>div{
        padding:70px 0;
    }

    .hero h1{
        font-size:39px;
    }

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

    .actions{
        flex-direction:column;

        align-items:flex-start;
    }

    .actions .btn{
        width:100%;

        text-align:center;
    }

    .section{
        padding:60px 0;
    }

    .grid3,
    .products,
    .projects,
    .footgrid,
    .formgrid{
        grid-template-columns:1fr;
    }

    .heading,
    .cathead{
        display:block;
    }

    .gallerybar{
        display:block;
    }

    .search{
        margin-top:12px;
    }

    .search input{
        width:100%;

        flex:1;
    }

    .pagehero{
        padding:65px 0;
    }

    .pagehero h1{
        font-size:36px;
    }

    .detail h1{
        font-size:34px;
    }

    .cta{
        display:block;

        padding:30px 25px;
    }

    .outline.dark{
        margin:10px 0 0;
    }

    .adminhead{
        align-items:flex-start;

        gap:15px;

        flex-direction:column;
    }

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

    .adm-table{
        min-width:700px;
    }

    .floating-social{
        right:12px;

        bottom:15px;
    }

    .float-btn{
        width:46px;

        height:46px;
    }

}
/* =========================================================
   MOBILE RESPONSIVE FINAL FIX
   Do not change desktop design
========================================================= */


/* ---------- TABLET ---------- */

@media (max-width: 900px){

    .container{
        width:92%;
    }

    /* Header */
    .navin{
        min-height:70px;
        gap:12px;
    }

    .brand{
        min-width:0;
        gap:10px;
    }

    .site-logo{
        width:135px;
        max-height:58px;
        object-fit:contain;
    }

    .brand-name{
        font-size:22px;
        line-height:1.05;
        white-space:nowrap;
    }

    .menubtn{
        display:flex;
        align-items:center;
        justify-content:center;
        flex-shrink:0;
    }

    .nav{
        display:none;

        position:absolute;
        top:100%;
        left:0;
        right:0;

        width:100%;

        background:#fff;

        padding:8px 4% 15px;

        flex-direction:column;
        align-items:stretch;

        box-shadow:0 12px 25px rgba(0,0,0,.10);
    }

    .nav.open{
        display:flex;
    }

    .nav>a,
    .drop>a{
        height:auto;
        min-height:48px;

        display:flex;
        align-items:center;

        padding:12px 10px;

        font-size:16px;
    }

    .drop{
        width:100%;
    }

    .dropmenu{
        position:static;

        width:100%;
        min-width:0;

        padding:4px 0 4px 12px;

        border-top:0;
        border-left:3px solid var(--navy);

        box-shadow:none;
    }

    .drop:hover .dropmenu{
        display:none;
    }

    .drop.open .dropmenu{
        display:block;
    }


    /* General layouts */

    .two{
        grid-template-columns:1fr;
        gap:35px;
    }

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

    .contactgrid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .grid3{
        grid-template-columns:repeat(2,1fr);
    }

    .projects{
        grid-template-columns:repeat(2,1fr);
    }

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

    .statsgrid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .footgrid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

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


    /* Hero */

    .hero{
        min-height:600px;
    }

    .hero>div{
        padding:75px 0;
    }

    .hero h1{
        font-size:clamp(38px,6vw,55px);
        max-width:720px;
    }

    .hero p{
        max-width:650px;
        font-size:17px;
    }


    /* Sections */

    .section{
        padding:65px 0;
    }

    h2{
        font-size:34px;
    }


    /* Product detail */

    .detail h1{
        font-size:40px;
    }


    /* CTA */

    .cta{
        padding:35px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px){

    html,
    body{
        width:100%;
        max-width:100%;
        overflow-x:hidden;
    }

    .container{
        width:92%;
        max-width:100%;
    }


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

    .navwrap{
        border-bottom-width:3px;
    }

    .navin{
        min-height:64px;
        gap:8px;
    }

    .brand{
        min-width:0;
        max-width:calc(100% - 52px);
        gap:7px;
    }

    .site-logo{
        width:105px;
        max-height:46px;
        flex-shrink:0;
    }

    .brand-name{
        font-size:18px;
        font-weight:900;
        line-height:1;

        white-space:nowrap;

        overflow:hidden;
        text-overflow:ellipsis;
    }

    .menubtn{
        width:42px;
        height:40px;

        padding:0;

        font-size:19px;
        flex-shrink:0;
    }

    .nav{
        top:64px;

        padding:7px 4% 14px;

        max-height:calc(100vh - 64px);
        overflow-y:auto;
    }

    .nav>a,
    .drop>a{
        min-height:46px;
        padding:11px 10px;

        font-size:15px;
    }

    .dropmenu{
        padding-left:10px;
    }

    .dropmenu a{
        padding:10px 12px;
        font-size:14px;
    }


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

    .hero{
        min-height:560px;

        background-position:center center;
    }

    .hero>div{
        width:100%;
        padding:65px 0;
    }

    .eyebrow,
    .kicker{
        font-size:11px;
        letter-spacing:1.6px;
    }

    .hero h1{
        font-size:38px;
        line-height:1.08;

        margin:9px 0 18px;
    }

    .hero p{
        font-size:15px;
        line-height:1.6;
    }


    /* =====================================================
       BUTTONS
    ===================================================== */

    .actions{
        width:100%;

        display:flex;
        flex-direction:column;

        gap:10px;

        margin-top:22px;
    }

    .actions .btn{
        width:100%;
        text-align:center;
    }

    .btn{
        padding:11px 17px;
    }


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

    .section{
        padding:55px 0;
    }

    h2{
        font-size:31px;
        line-height:1.18;
    }

    h3{
        line-height:1.3;
    }

    .heading{
        display:block;
        margin-bottom:25px;
    }

    .heading > .muted{
        margin-top:10px;
    }


    /* =====================================================
       ABOUT / TWO COLUMN
    ===================================================== */

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

    .card,
    .service,
    .project,
    .formcard{
        padding:22px;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

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


    /* =====================================================
       STATS
    ===================================================== */

    .stats{
        padding:30px 0;
    }

    .statsgrid{
        grid-template-columns:1fr 1fr;
        gap:25px 10px;
    }

    .stats strong{
        font-size:29px;
    }

    .stats span{
        font-size:13px;
    }


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

    .cta{
        display:block;

        padding:27px 22px;

        border-radius:9px;
    }

    .cta h2{
        font-size:27px;
    }

    .cta .btn{
        display:block;

        width:100%;

        text-align:center;

        margin-top:20px;
    }


    /* =====================================================
       INNER PAGE HERO
    ===================================================== */

    .pagehero{
        padding:55px 0;
    }

    .pagehero h1{
        font-size:34px;
        line-height:1.15;
    }


    /* =====================================================
       GALLERY
    ===================================================== */

    .gallerybar{
        display:block;

        padding:13px;

        margin-bottom:30px;
    }

    .tabs{
        display:flex;
        flex-wrap:wrap;
        gap:6px;
    }

    .tabs a{
        padding:8px 10px;
        font-size:12px;
    }

    .search{
        width:100%;
        margin-top:12px;
    }

    .search input{
        width:100%;
        min-width:0;
    }

    .search button{
        flex-shrink:0;
    }

    .cathead{
        display:block;
        margin-bottom:18px;
    }


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

    .products{
        grid-template-columns:1fr 1fr;

        gap:12px;

        margin-bottom:40px;
    }

    .product{
        border-radius:7px;
    }

    .pbody{
        padding:12px;
    }

    .pcat{
        font-size:9px;
    }

    .pbody h3{
        font-size:14px;
    }

    .pbody p{
        font-size:12px;
        min-height:auto;
    }

    .price{
        font-size:16px;
    }


    /* =====================================================
       PRODUCT DETAIL
    ===================================================== */

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

    .detail h1{
        font-size:32px;
    }

    .detailprice{
        font-size:25px;
        margin:18px 0;
    }

    .detail img{
        border-radius:8px;
    }


    /* =====================================================
       PROJECTS
    ===================================================== */

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


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

    .contactgrid{
        grid-template-columns:1fr;
        gap:20px;
    }


    /* =====================================================
       FORMS
    ===================================================== */

    .formgrid{
        grid-template-columns:1fr;
        gap:0;
    }

    .formcard{
        padding:20px;
    }


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

    .footgrid{
        grid-template-columns:1fr;

        gap:28px;

        padding:42px 0;
    }

    .footgrid h4{
        margin-bottom:10px;
    }

    .footgrid p,
    .footgrid a{
        font-size:13px;
    }

    .social-links{
        gap:8px;
    }

    .social-links a{
        width:36px;
        height:36px;
    }

    .footbottom{
        padding:15px 10px;
        font-size:11px;
    }


    /* =====================================================
       ADMIN
    ===================================================== */

    .adminwrap{
        padding:35px 0;
    }

    .adminhead{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

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

    .adm-table-wrap{
        width:100%;
        overflow-x:auto;
    }

    .adm-table{
        min-width:700px;
    }


    /* =====================================================
       FLOATING SOCIAL
    ===================================================== */

    .floating-social{
        right:10px;
        bottom:12px;
        gap:8px;
    }

    .float-btn{
        width:44px;
        height:44px;
    }

    .float-whatsapp{
        font-size:22px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width:380px){

    .site-logo{
        width:92px;
    }

    .brand-name{
        font-size:16px;
    }

    .hero h1{
        font-size:34px;
    }

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

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

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

    h2{
        font-size:28px;
    }

}
/* ==================================================
   FOOTER MOBILE FIX
================================================== */

.footer{
    width:100%;
    overflow:hidden;
}

.footgrid{
    width:100%;
}

/* Tablet */
@media(max-width:900px){

    .footgrid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:30px;
        padding:45px 0;
    }

    .footgrid > div{
        min-width:0;
    }

    .footgrid h4,
    .footgrid p,
    .footgrid a{
        overflow-wrap:anywhere;
        word-break:normal;
    }

}


/* Mobile */
@media(max-width:620px){

    .footer{
        width:100%;
        overflow:hidden;
    }

    .footgrid{
        display:grid;
        grid-template-columns:1fr;
        gap:28px;
        padding:40px 0 30px;
        width:100%;
    }

    .footgrid > div{
        width:100%;
        min-width:0;
    }

    .footgrid h4{
        font-size:16px;
        margin-bottom:12px;
    }

    .footbrand{
        font-size:20px;
        line-height:1.3;
    }

    .footgrid p{
        font-size:14px;
        line-height:1.6;
        margin:6px 0;
    }

    .footgrid a{
        font-size:14px;
        line-height:1.5;
        margin:6px 0;
    }

    .foot-social{
        display:flex !important;
        align-items:center;
        gap:8px;
        width:100%;
        margin:9px 0 !important;
    }

    .foot-social img{
        width:22px;
        height:22px;
        flex-shrink:0;
    }

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

    .social-links a{
        width:38px;
        height:38px;
        flex-shrink:0;
    }

    .wechat-footer{
        width:22px;
        height:22px;
        flex-shrink:0;
    }

    .footbottom{
        width:100%;
        padding:15px 10px;
        font-size:11px;
        line-height:1.5;
        text-align:center;
    }

}

/* ===== FINAL REFERENCE STARTING LOOK ===== */
.ref-header{background:#07366b}
.ref-nav{background:#07366b}
.ref-nav-inner{height:66px;display:flex;align-items:center;justify-content:space-between}
.ref-brand{display:flex;align-items:center;gap:10px;color:#fff;font-weight:800;font-size:18px}
.ref-brand img{width:36px;height:36px;object-fit:contain;background:#fff}
.ref-menu{display:flex;align-items:center;gap:2px}
.ref-menu>a,.ref-menu .drop>a{color:#fff;padding:23px 12px;font-size:13px;font-weight:700}
.ref-menu a:hover,.ref-menu a.active{color:#ffd400}
.ref-menu .dropmenu{background:#fff;border-top:3px solid #ffd400}
.ref-menu .dropmenu a{color:#0b1f3a;padding:10px 12px}
.ref-menu .dropmenu a:hover{color:#07366b;background:#f3f6f9}

.ref-hero{
  min-height:365px;
  background:
    linear-gradient(90deg,rgba(4,19,38,.74),rgba(4,19,38,.45),rgba(4,19,38,.28)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:#fff
}
.ref-hero-inner{padding:28px 0 38px}
.ref-hero h1{
  margin:0 0 17px;
  color:#fff;
  font-size:clamp(38px,4.25vw,58px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-1px;
  max-width:760px
}
.ref-hero h1 span{color:#fff}
.ref-hero p{
  max-width:700px;
  color:#fff;
  font-size:16px;
  line-height:1.55;
  margin:0 0 23px
}
.ref-hero .actions{margin-top:0}
.ref-yellow{
  background:#ffd400;
  color:#10233b;
  border-radius:24px;
  padding:12px 27px
}
.ref-outline{
  border:1px solid rgba(255,255,255,.8);
  color:#fff;
  border-radius:3px;
  padding:12px 24px
}
.ref-outline:hover{background:#fff;color:#0b1f3a}

@media(max-width:900px){
  .ref-nav-inner{height:64px}
  .ref-menu{
    display:none;
    position:absolute;
    top:64px;
    left:0;
    right:0;
    background:#07366b;
    padding:10px 4%;
    flex-direction:column;
    align-items:stretch;
    z-index:99
  }
  .ref-menu.open{display:flex}
  .ref-menu>a,.ref-menu .drop>a{padding:11px 8px}
  .ref-menu .dropmenu{position:static;border-top:0;box-shadow:none}
}
@media(max-width:620px){
  .ref-brand span{font-size:16px}
  .ref-hero{min-height:430px}
  .ref-hero-inner{padding:42px 0}
  .ref-hero h1{font-size:38px}
  .ref-hero p{font-size:14px}
}


/* ===== FINAL HEADER SIZE + TRANSPARENT LOGO UPDATE ===== */
.ref-nav-inner{height:82px}
.ref-brand{gap:14px;font-size:28px;line-height:1;font-weight:800}
.ref-brand img{
  width:64px;
  height:64px;
  object-fit:contain;
  background:transparent !important;
}
.ref-menu{gap:10px}
.ref-menu>a,.ref-menu .drop>a{
  padding:29px 14px;
  font-size:17px;
  font-weight:700;
}
@media(max-width:900px){
  .ref-nav-inner{height:72px}
  .ref-brand{font-size:21px}
  .ref-brand img{width:52px;height:52px}
  .ref-menu{top:72px}
  .ref-menu>a,.ref-menu .drop>a{font-size:16px;padding:12px 8px}
}
@media(max-width:620px){
  .ref-brand{font-size:18px;gap:9px}
  .ref-brand img{width:46px;height:46px}
}


/* FINAL LOGO VISIBILITY */
.ref-brand img{
  background:#ffffff !important;
  padding:3px;
  border-radius:2px;
}
