/* ROOT */
:root{
    --primary-green:#15B012;
    --dark-green:#11940F;
    --primary-gold:#FFC40A;
    --dark-gold:#D9A300;
    --light-green:#E8F9E8;
    --light-gold:#FFF8D9;
    --dark:#111111;
    --gray:#f7f7f7;
}

/* =========================================================
   GLOBAL
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#222;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* =========================================================
   HEADER
========================================================= */

.premium-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    height:92px;
    display:flex;
    align-items:center;
    border-bottom:1px solid #ececec;
}

.nav-container{
    width:92%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:92px;
    position:relative;
}

/* =========================================================
   LOGO
========================================================= */

.logo-area{
    display:flex;
    align-items:center;
    position:relative;
    z-index:10001;
}

.site-logo{
    height:82px;
    width:auto;
    object-fit:contain;
}

/* =========================================================
   DESKTOP MENU
========================================================= */

.desktop-nav ul{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.desktop-nav a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:600;
    position:relative;
    transition:.3s ease;
}

.desktop-nav a:hover{
    color:var(--primary-green);
}

.desktop-nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--primary-green);
    transition:.3s ease;
}

.desktop-nav a:hover::after{
    width:100%;
}

/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.dropdown-parent{
    position:relative;
    padding:20px 0;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#fff;
    border-radius:16px;
    padding:14px 0;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s ease;
    z-index:999;
}

.dropdown-parent:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:14px 20px;
}

.dropdown-menu a::after{
    display:none;
}

/* =========================================================
   HEADER BUTTON
========================================================= */

.header-actions{
    position:relative;
    z-index:10001;
}

.quote-btn{
    background:var(--primary-green);
    color:#fff;
    padding:12px 24px;
    border-radius:40px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
}

.quote-btn:hover{
    background:var(--primary-gold);
    color:#111;
}

/* =========================================================
   MOBILE TOGGLE
========================================================= */

.mobile-toggle{
    display:none;
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu{
    display:none;
}

/* =========================================================
   TABLET + MOBILE
========================================================= */

@media(max-width:992px){

    .premium-header{
        height:78px;
    }

    .nav-container{
        height:78px;
    }

    .site-logo{
        height:58px;
    }

    .desktop-nav{
        display:none;
    }

    .header-actions{
        display:none;
    }

    /* MOBILE TOGGLE */

    .mobile-toggle{

        display:flex;

        align-items:center;
        justify-content:center;

        position:absolute;

        right:0;
        top:50%;

        transform:translateY(-50%);

        width:46px;
        height:46px;

        font-size:26px;

        color:#111827;

        cursor:pointer;

        z-index:10002;
    }

    /* MOBILE MENU */

    .mobile-menu{

        display:none;

        position:fixed;

        top:78px;
        left:0;

        width:100%;
        max-width:100%;

        height:calc(100vh - 78px);

        background:#fff;

        padding:10px 18px 30px;

        overflow-y:auto;
        overflow-x:hidden;

        opacity:0;
        visibility:hidden;

        transform:translateY(-10px);

        transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;

        z-index:999999;
    }

    .mobile-menu *{
        max-width:100%;
    }

    .mobile-menu.active{

        display:flex !important;

        flex-direction:column;

        opacity:1;
        visibility:visible;

        transform:translateY(0);
    }

    .mobile-menu a{

        display:flex;

        align-items:center;

        min-height:58px;

        padding:0 2px;

        border-bottom:1px solid #eef2f7;

        color:#111827;

        text-decoration:none;

        font-size:15px;

        font-weight:600;

        line-height:1.5;

        transition:.3s ease;
    }

    .mobile-menu a:hover{

        color:var(--primary-green);

        padding-left:8px;
    }

    /* MOBILE DROPDOWN */

    .mobile-dropdown{
        width:100%;
        border-bottom:1px solid #eef2f7;
    }

    .mobile-dropdown-toggle{

        width:100%;

        height:58px;

        padding:0 2px;

        background:none;

        border:none;

        appearance:none;
        -webkit-appearance:none;

        display:flex !important;

        align-items:center;
        justify-content:space-between;

        color:#111827;

        font-family:'Poppins',sans-serif;

        font-size:15px;
        font-weight:600;

        text-align:left;

        cursor:pointer;

        outline:none;
    }

    .mobile-arrow{

        font-size:10px;

        margin-left:auto;

        transition:.3s ease;
    }

    .mobile-dropdown.active .mobile-arrow{

        transform:rotate(180deg);
    }

    .mobile-dropdown-menu{

        display:none;

        width:100%;

        padding-bottom:12px;
    }

    .mobile-dropdown.active .mobile-dropdown-menu{

        display:block;
    }

    .mobile-dropdown-menu a{

        display:flex;

        align-items:center;

        width:100%;

        min-height:46px;

        padding-left:14px;

        border-bottom:none !important;

        color:#64748b !important;

        font-size:14px !important;

        text-decoration:none;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:768px){

    .site-logo{
        height:54px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.premium-footer{
    background:#f3f4f6;
    color:#222;
}

.footer-top{
    padding:40px 0 50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:50px;
}

.footer-logo img{
    height:70px;
}

.footer-grid h3{
    margin-bottom:18px;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid li{
    margin-bottom:8px;
}

.footer-grid a{
    text-decoration:none;
    color:#444;
}

.footer-bottom{
    border-top:1px solid #ddd;
    background:#ebebeb;
    padding:20px 0;
    text-align:center;
}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */

#whatsappFloating{

    position:fixed;

    right:12px;

    bottom:12px;

    z-index:99999;

    pointer-events:none;

    width:auto;

    max-width:60px;
}

.whatsapp-btn{

    width:52px;
    height:52px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    pointer-events:auto;

    box-shadow:
    0 10px 30px rgba(0,0,0,.18);

    animation:whatsappPulse 2s infinite;

    transition:.3s ease;
}

.whatsapp-btn:hover{
    transform:translateY(-5px);
}

.whatsapp-btn img{

    width:26px;
    height:26px;

    display:block;

    object-fit:contain;
}

/* =========================================================
   PULSE
========================================================= */

@keyframes whatsappPulse{

    0%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,.55);
    }

    70%{
        box-shadow:
        0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }

}

/* =========================================================
   GLOBAL MOBILE OVERFLOW 
========================================================= */

@media(max-width:992px){

    body{
        width:100%;
        max-width:100%;
        overflow-x:hidden;
    }

    .premium-header,
    .mobile-menu,
    .product-section,
    .testimonial-section{

        max-width:100%;
        overflow-x:hidden;
    }

    #whatsappFloating{
        right:12px !important;
    }

}


/* =========================================================
   MODERN FLOATING HEADER
========================================================= */

.premium-header{

    position:fixed;

    top:14px;

    left:50%;

    transform:translateX(-50%);

    width:calc(100% - 34px);

    max-width:1380px;

    z-index:9999;

    background:
    rgba(255,255,255,.82);

    backdrop-filter:
    blur(16px);

    -webkit-backdrop-filter:
    blur(16px);

    border:
    1px solid rgba(255,255,255,.35);

    border-radius:22px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.08);

    transition:
    all .35s ease;
}

/* =========================================================
   BODY OFFSET
========================================================= */

body{

    padding-top:110px;
}

/* =========================================================
   NAV CONTAINER
========================================================= */

.nav-container{

    min-height:78px;

    padding:
    0 26px;
}

/* =========================================================
   LOGO
========================================================= */

.site-logo{

    max-height:52px;

    width:auto;
}

/* =========================================================
   LINKS
========================================================= */

.desktop-nav ul li a{

    font-weight:500;

    transition:.25s ease;
}

.desktop-nav ul li a:hover{

    color:#15B012;
}

/* =========================================================
   BUTTON
========================================================= */

.quote-btn{

    border-radius:14px;

    padding:
    13px 22px;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .premium-header{

        top:10px;

        width:calc(100% - 16px);

        border-radius:18px;
    }

    body{

        padding-top:92px;
    }

    .nav-container{

        min-height:70px;

        padding:0 18px;
    }

    .site-logo{

        max-height:44px;
    }

}


/* =========================================================
   SCROLL TO TOP BUTTON
========================================================= */

#scrollTopBtn{

    position:fixed;

    right:16px;
bottom:84px;

    width:52px;
    height:52px;

    border:none;

    border-radius:16px;

    background:#15B012;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    z-index:9999;

    display:flex;

    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transform:
    translateY(20px);

    transition:
    all .3s ease;

    box-shadow:
    0 10px 24px rgba(21,176,18,.28);
}

#scrollTopBtn.show{

    opacity:1;
    visibility:visible;

    transform:
    translateY(0);
}

#scrollTopBtn:hover{

    transform:
    translateY(-4px);

    background:#111;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    #scrollTopBtn{

        width:48px;
        height:48px;

        right:16px;
        bottom:84px;

        border-radius:14px;
    }

}

/* =========================================================
   MOBILE NAV
========================================================= */

@media(max-width:768px){

    .premium-header{

        overflow:visible !important;
    }

    .mobile-menu{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#fff;

        border-radius:18px;

        margin-top:12px;

        z-index:99999;

        box-shadow:
        0 12px 30px rgba(0,0,0,.12);
    }

    .mobile-toggle{

        display:flex !important;

        align-items:center;
        justify-content:center;

        z-index:999999;

        position:relative;
    }

}

/* =========================================================
   PREMIUM HEADER 
========================================================= */

.premium-header{

    position:fixed;

    top:14px;

    left:50%;

    transform:translateX(-50%);

    width:calc(100% - 34px);

    max-width:1380px;

    z-index:9999;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:22px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.08);

    transition:
    background .3s ease,
    box-shadow .3s ease,
    top .3s ease;
}

/* =========================================================
   BODY OFFSET
========================================================= */

body{

    padding-top:105px;
}

/* =========================================================
   NAV CONTAINER
========================================================= */

.nav-container{

    min-height:76px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 24px;
}

/* =========================================================
   LOGO
========================================================= */

.site-logo{

    height:48px;

    width:auto;

    display:block;

    object-fit:contain;
}

/* =========================================================
   MOBILE TOGGLE
========================================================= */

.mobile-toggle{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0;

    padding:0;

    line-height:1;

    position:relative;

    top:0;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .premium-header{

        top:10px;

        width:calc(100% - 16px);

        border-radius:18px;
    }

    body{

        padding-top:92px;
    }

    .nav-container{

        min-height:68px;

        padding:0 18px;
    }

    .site-logo{

        height:40px;
    }

    .mobile-toggle{

        width:42px;

        height:0px;
    }

}

/* =========================================================
   MOBILE TOGGLE
========================================================= */

.mobile-toggle{

    display:none;
}

/* =========================================================
   MOBILE TOGGLE
========================================================= */

@media(max-width:992px){

    .mobile-toggle{

        display:flex;
    }

}