/*====================================================
    UP GAS - HOME.CSS
    PART 1A
    Variables • Reset • Global Styles
=====================================================*/

/*==============================
    GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

:root{

    --primary:#f97316;
    --primary-dark:#ea580c;
    --secondary:#111827;

    --light:#f8fafc;
    --white:#ffffff;

    --text:#6b7280;
    --border:#e5e7eb;

    --success:#22c55e;
    --danger:#ef4444;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

    --shadow-hover:
        0 20px 45px rgba(0,0,0,.15);

    --radius:22px;

    --transition:.35s ease;

    --container:1280px;

}

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

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

*::before,
*::after{

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Poppins",sans-serif;

    background:var(--white);

    color:var(--secondary);

    overflow-x:hidden;

    line-height:1.7;

}

/*==============================
    COMMON ELEMENTS
==============================*/

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

}

section{

    padding:100px 8%;

}

::selection{

    background:var(--primary);

    color:#fff;

}

/*==============================
    SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==============================
    CONTAINER
==============================*/

.container{

    width:100%;

    max-width:var(--container);

    margin:auto;

}

/*==============================
    TYPOGRAPHY
==============================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--secondary);

    font-weight:700;

    line-height:1.2;

}

p{

    color:var(--text);

    font-size:16px;

    line-height:1.8;

}

/*==============================
    SECTION TITLE
==============================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:18px;

}

.section-title p{

    max-width:720px;

    margin:auto;

}

/*==============================
    PRIMARY BUTTON
==============================*/

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:16px 38px;

    border:none;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary),
        #fb923c
    );

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

    box-shadow:
        0 15px 35px rgba(249,115,22,.35);

}

.btn:hover{

    transform:translateY(-6px);

    box-shadow:
        0 22px 45px rgba(249,115,22,.45);

}

/*==============================
    OUTLINE BUTTON
==============================*/

.btn-outline{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 38px;

    border:2px solid #fff;

    border-radius:50px;

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.btn-outline:hover{

    background:#fff;

    color:var(--secondary);

    transform:translateY(-6px);

}

/*====================================================
    PART 1B
    HEADER • LOGO • DESKTOP NAVIGATION
    MOBILE NAVIGATION • STICKY HEADER
=====================================================*/

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

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:18px 8%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    z-index:1000;

    background:transparent;

    transition:all .35s ease;

}

header.sticky{

    background:rgba(17,24,39,.97);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    box-shadow:0 12px 35px rgba(0,0,0,.18);

    padding:14px 8%;

}

/*==============================
    LOGO
==============================*/

.logo a{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:58px;

    height:58px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid var(--primary);

    box-shadow:
        0 10px 25px rgba(249,115,22,.35);

}

.logo h2{

    color:#fff;

    font-size:30px;

    font-weight:800;

    letter-spacing:1px;

}

.logo h2 span{

    color:var(--primary);

}

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

#navbar ul{

    display:flex;

    align-items:center;

    gap:38px;

}

#navbar ul li{

    position:relative;

}

#navbar ul li a{

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.3s;

    position:relative;

}

#navbar ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:20px;

    background:var(--primary);

    transition:.35s;

}

#navbar ul li a:hover::after,

#navbar ul li a.active::after{

    width:100%;

}

#navbar ul li a:hover,

#navbar ul li a.active{

    color:var(--primary);

}

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

.nav-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary),
        #fb923c
    );

    color:#fff;

    font-weight:600;

    transition:.35s;

    box-shadow:
        0 15px 30px rgba(249,115,22,.35);

}

.nav-btn:hover{

    transform:translateY(-4px);

    box-shadow:
        0 18px 38px rgba(249,115,22,.45);

}

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

#menu-btn{

    display:none;

    border:none;

    background:transparent;

    color:#fff;

    font-size:30px;

    cursor:pointer;

    transition:.3s;

    z-index:1101;

}

#menu-btn:hover{

    color:var(--primary);

}

/*==============================
    MENU OVERLAY
==============================*/

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

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

@media (max-width:992px){

    #menu-btn{

        display:block;

    }

    .nav-btn{

        display:none;

    }

    #navbar{

        position:fixed;

        top:0;

        right:-100%;

        width:300px;

        height:100vh;

        background:#111827;

        padding:110px 35px;

        transition:.4s ease;

        z-index:1000;

        box-shadow:
            -15px 0 40px rgba(0,0,0,.25);

    }

    #navbar.active{

        right:0;

    }

    #navbar ul{

        flex-direction:column;

        align-items:flex-start;

        gap:28px;

    }

    #navbar ul li{

        width:100%;

    }

    #navbar ul li a{

        display:block;

        width:100%;

        font-size:19px;

        color:#fff;

    }

    #navbar ul li a::after{

        display:none;

    }

    body.menu-open{

        overflow:hidden;

    }

}

/*==============================
    SMALL DEVICES
==============================*/

@media (max-width:576px){

    header{

        padding:16px 5%;

    }

    header.sticky{

        padding:12px 5%;

    }

    .logo img{

        width:48px;

        height:48px;

    }

    .logo h2{

        font-size:24px;

    }

    #navbar{

        width:260px;

    }

}

/*====================================================
    PART 1C
    HERO SECTION
=====================================================*/

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

.hero{
    min-height:100vh;
    display:block;
    padding:140px 8% 90px;

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(17,24,39,.88),
            rgba(17,24,39,.88)
        ),
        url("../images/Hero.jpeg");

    background-position:center;

    background-size:cover;

    background-repeat:no-repeat;

}

/* Decorative Glow */

.hero::before{

    content:"";

    position:absolute;

    width:900px;

    height:450px;

    top:-180px;

    right:-180px;

    border-radius:50%;

    background:rgba(249,115,22,.18);

    filter:blur(100px);

    pointer-events:none;

}

.hero::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    left:-220px;

    bottom:-250px;

    border-radius:50%;

    background:rgba(249,115,22,.10);

    filter:blur(120px);

    pointer-events:none;

}

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

.hero > .hero-wrapper{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

.hero-content{
    min-width:0;
    position:relative;
    z-index:2;
}

.hero-image{
    width:100%;
    min-width:0;
    min-height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}

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

.hero-content{

    position:relative;

    z-index:2;

}

.tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    margin-bottom:28px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

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

    backdrop-filter:blur(12px);

    color:#fff;

    font-weight:600;

    animation:fadeDown .8s ease forwards;

}

.tag i{

    color:var(--primary);

}

.hero-content h1{

    color:#fff;

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

    animation:fadeUp .8s ease forwards;

}

.hero-content h1 span{

    display:block;

    color:var(--primary);

}

.hero-content p{

    max-width:650px;

    color:#f3f4f6;

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

    animation:fadeUp 1s ease forwards;

}

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

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:40px;

    animation:fadeUp 1.2s ease forwards;

}

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

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:28px;

    animation:fadeUp 1.4s ease forwards;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:500;

}

.hero-features i{

    color:var(--success);

    font-size:18px;

}

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

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;

}

.hero-image img{

    width:100%;

    max-width:620px;

    object-fit:contain;

    filter:drop-shadow(
        0 35px 45px rgba(0,0,0,.40)
    );

    animation:float 4s ease-in-out infinite;

    transition:.35s;

}

/*==============================
    ANIMATIONS
==============================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

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

@media (max-width:992px){

    .hero{

        text-align:center;

        padding-top:130px;

    }

    .hero > .hero-wrapper{

        grid-template-columns:1fr;

        gap:50px;

    }

    .hero-content p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        justify-content:center;

    }

    .hero-content h1{

        font-size:56px;

    }

    .hero-image{

        order:-1;

    }

    .hero-image img{

        max-width:480px;

    }

}

@media (max-width:768px){

    .hero{

        min-height:auto;

        padding:120px 6% 80px;

    }

    .hero-content h1{

        font-size:44px;

    }

    .hero-content p{

        font-size:17px;

    }

    .hero-features{

        gap:18px;

    }

}

@media (max-width:576px){

    .hero{

        padding:110px 5% 70px;

    }

    .hero-content h1{

        font-size:36px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:stretch;

    }

    .btn,

    .btn-outline{

        width:100%;

        justify-content:center;

    }

    .hero-features{

        flex-direction:column;

        align-items:flex-start;

    }

    .hero-image img{

        max-width:320px;

    }

}
/*====================================================
    PART 2A
    BUSINESS HIGHLIGHTS (STATS)
    SERVICES SECTION
=====================================================*/

/*==============================
    BUSINESS HIGHLIGHTS
==============================*/

.stats{
    display:block;
    background:#fff;
    padding-top:0;
    position:relative;
    z-index:10;
}

.stats > .container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:30px;
    align-items:stretch;
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.stat-card{

    background:#fff;

    padding:45px 30px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.stat-card h2{

    color:var(--primary);

    font-size:40px;

    font-weight:800;

    margin-bottom:10px;

}

.stat-card p{

    color:var(--text);

    font-size:17px;

    font-weight:500;

}

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

.services{

    background:var(--light);

}

.services-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.service-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    padding:45px 35px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:6px;

    background:linear-gradient(
        90deg,
        var(--primary),
        #fdba74
    );

    transition:.4s;

}

.service-card:hover::before{

    left:0;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.service-card .icon{

    width:90px;

    height:90px;

    margin:0 auto 28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        #fb923c
    );

    color:#fff;

    font-size:36px;

    box-shadow:
        0 15px 30px rgba(249,115,22,.35);

}

.service-card h3{

    color:var(--secondary);

    font-size:28px;

    margin-bottom:18px;

}

.service-card p{

    color:var(--text);

    line-height:1.8;

}

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

@media (max-width:992px){

    .stats{

        padding-top:50px;

    }

    .stats-grid{

        margin-top:0;

        grid-template-columns:repeat(2,minmax(0,1fr));

    }

}

@media (max-width:768px){

    .stats-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media (max-width:576px){

    .stats-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        padding:35px 25px;

    }

    .service-card .icon{

        width:75px;

        height:75px;

        font-size:30px;

    }

    .service-card h3{

        font-size:24px;

    }

}
/*====================================================
    PART 2B
    WHY CHOOSE US
    FEATURES GRID
=====================================================*/

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

.why-us{
    display:block;
    background:#fff;
}

.why-us > .container.why-wrapper{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    align-items:center;
    gap:70px;
}

.why-image{

    position:relative;

}

.why-image img{

    display:block;

    width:100%;

    max-width:700px;

    margin:auto;

    border-radius:25px;

    filter:drop-shadow(
        0 35px 45px rgba(0,0,0,.18)
    );

    transition:.4s;

}

.why-image img:hover{

    transform:scale(1.03);

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.why-content h2{

    margin-bottom:20px;

    font-size:48px;

    color:var(--secondary);

    line-height:1.2;

}

.why-content>p{

    margin-bottom:40px;

    color:var(--text);

    line-height:1.9;

    font-size:17px;

}

/*==============================
    FEATURES GRID
==============================*/

.features-grid{

    display:grid;

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

    gap:25px;

}

.feature{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:25px;

    background:#fff;

    border-radius:18px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.08);

    transition:.35s;

}

.feature:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 35px rgba(0,0,0,.12);

}

.feature i{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        #fb923c
    );

    color:#fff;

    font-size:24px;

    box-shadow:
        0 10px 20px rgba(249,115,22,.35);

}

.feature h3{

    margin:0 0 10px;

    color:var(--secondary);

    font-size:21px;

}

.feature p{

    margin:0;

    color:var(--text);

    font-size:15px;

    line-height:1.7;

}

/*==============================
    IMAGE DECORATION
==============================*/

.why-image::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(249,115,22,.12);

    border-radius:50%;

    top:-40px;

    left:-40px;

    filter:blur(40px);

    z-index:-1;

}

.why-image::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(34,197,94,.12);

    border-radius:50%;

    right:-30px;

    bottom:-30px;

    filter:blur(35px);

    z-index:-1;

}

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

@media(max-width:992px){

    .why-us > .container.why-wrapper{

        grid-template-columns:1fr;

        gap:60px;

    }

    .why-content{

        text-align:center;

    }

    .why-content>p{

        max-width:750px;

        margin:0 auto 40px;

    }

}

@media(max-width:768px){

    .features-grid{

        grid-template-columns:1fr;

    }

    .why-content h2{

        font-size:38px;

    }

}

@media(max-width:576px){

    .why-content h2{

        font-size:32px;

    }

    .feature{

        padding:20px;

    }

    .feature i{

        width:52px;

        height:52px;

        font-size:20px;

    }

    .feature h3{

        font-size:18px;

    }

}
/*====================================================
    FEATURED PRODUCTS
====================================================*/

.products-preview{
    background:var(--light);
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.product{
    background:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
    overflow:hidden;
    position:relative;
}

.product:hover{
    transform:translateY(-12px);
    box-shadow:var(--shadow-hover);
}

.product img{
    width:220px;
    height:260px;
    object-fit:contain;
    margin:0 auto 25px;
    transition:.4s;
}

.product:hover img{
    transform:scale(1.08) rotate(-3deg);
}

.product h3{
    color:var(--secondary);
    margin-bottom:12px;
    font-size:28px;
}

.product p{
    color:var(--text);
    margin-bottom:25px;
    line-height:1.7;
}

.btn-small{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 30px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--primary),#fb923c);
    color:#fff;
    font-weight:600;
    transition:.35s;
    box-shadow:0 12px 25px rgba(249,115,22,.25);
}

.btn-small:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 30px rgba(249,115,22,.35);
}

/*====================================================
    TESTIMONIALS
====================================================*/

.testimonials{
    background:#fff;
}

.testimonial-slider{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
}

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:var(--shadow);
    border-top:6px solid var(--primary);
    transition:.4s;
}

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

.stars{
    color:#fbbf24;
    margin-bottom:20px;
    font-size:22px;
}

.testimonial-card p{
    color:var(--text);
    font-style:italic;
    line-height:1.8;
    margin-bottom:25px;
}

.testimonial-card h2{
    color:var(--secondary);
    font-size:20px;
}

/*====================================================
    FAQ
====================================================*/

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

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    margin-bottom:20px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:var(--secondary);
    transition:.3s;
}

.faq-question:hover{
    color:var(--primary);
}

.faq-question i{
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fafafa;
}

.faq-answer p{
    padding:0 25px 25px;
    line-height:1.8;
    color:var(--text);
}

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

.cta-section{
    margin:100px 8%;
    border-radius:30px;
    padding:90px 40px;
    text-align:center;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-180px;
    right:-100px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-content p{
    max-width:700px;
    margin:auto auto 35px;
    line-height:1.8;
    font-size:20px;
}

.cta-section .btn{
    background:#fff;
    color:var(--primary);
}

.cta-section .btn:hover{
    background:#f3f4f6;
}

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

footer{
    background:#111827;
    color:#fff;
    padding:90px 8% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:45px;
}

.footer-box h3{
    color:var(--primary);
    margin-bottom:25px;
    font-size:24px;
}

.footer-box p{
    color:#d1d5db;
    margin-bottom:14px;
    line-height:1.8;
}

.footer-box a{
    display:block;
    color:#d1d5db;
    margin-bottom:12px;
    transition:.3s;
}

.footer-box a:hover{
    color:var(--primary);
    padding-left:8px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1f2937;
    color:#fff;
    font-size:20px;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--primary);
    transform:translateY(-5px);
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#9ca3af;
}

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

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25d366;
    color:#fff;
    font-size:34px;
    z-index:999;
    box-shadow:0 15px 35px rgba(37,211,102,.35);
    animation:pulse 2s infinite;
}

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

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.7);}
    70%{box-shadow:0 0 0 20px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/*====================================================
    BACK TO TOP
====================================================*/

#topBtn{
    position:fixed;
    right:25px;
    bottom:105px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    display:none;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    z-index:998;
    box-shadow:var(--shadow);
    transition:.3s;
}

#topBtn.show{
    display:flex;
}

#topBtn:hover{
    background:var(--primary-dark);
    transform:translateY(-5px);
}

/*====================================================
    RIPPLE EFFECT
====================================================*/

.ripple{
    position:absolute;
    border-radius:50%;
    transform:scale(0);
    animation:ripple .6s linear;
    background:rgba(255,255,255,.4);
    pointer-events:none;
}

@keyframes ripple{
    to{
        transform:scale(4);
        opacity:0;
    }
}

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

@media(max-width:992px){

.hero{
grid-template-columns:1fr;
text-align:center;
padding-top:140px;
}

.hero-content{
order:2;
}

.hero-image{
order:1;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

.hero-features{
justify-content:center;
}

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

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

.cta-content h2{
font-size:38px;
}

.section-title h2{
font-size:38px;
}

}

@media(max-width:768px){

.hero-content h1{
font-size:48px;
}

.hero-content p{
font-size:18px;
}

.hero-image img{
max-width:350px;
}

.products-grid,
.services-grid,
.process-grid,
.testimonial-slider{
grid-template-columns:1fr;
}

.cta-section{
margin:60px 5%;
padding:70px 25px;
}

.cta-content h2{
font-size:34px;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.social-icons{
justify-content:center;
}

.whatsapp{
width:60px;
height:60px;
font-size:30px;
}

#topBtn{
width:50px;
height:50px;
}

}

/* =========================================================
   FINAL DESKTOP LAYOUT FIXES
   Keep mobile navigation/card layout unchanged.
========================================================= */

/* The header contains one .container. Make that container the
   desktop flex row so logo, navigation and Order button sit
   horizontally instead of stacking. */
@media (min-width: 993px){

    #header > .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:30px;
    }

    #navbar{
        display:block;
        margin-left:auto;
    }

    #navbar ul{
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:center;
        gap:38px;
    }

    .nav-btn{
        flex:0 0 auto;
    }

    /* HOW IT WORKS: four cards in one horizontal row on desktop. */
    .process-grid{
        display:grid;
        grid-template-columns:repeat(4,minmax(0,1fr));
        gap:28px;
        align-items:stretch;
    }

    .step{
        position:relative;
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        min-height:280px;
        padding:38px 24px 30px;
        border:1px solid var(--border);
        border-radius:25px;
        background:#fff;
        box-shadow:var(--shadow);
        overflow:hidden;
        transition:.35s ease;
    }

    .step:hover{
        transform:translateY(-10px);
        box-shadow:var(--shadow-hover);
    }

    .step .number{
        position:absolute;
        top:16px;
        left:16px;
        display:flex;
        align-items:center;
        justify-content:center;
        width:38px;
        height:38px;
        border-radius:50%;
        background:var(--primary);
        color:#fff;
        font-weight:700;
    }

    .step > i{
        display:flex;
        align-items:center;
        justify-content:center;
        width:72px;
        height:72px;
        margin:5px auto 22px;
        border-radius:50%;
        background:rgba(249,115,22,.12);
        color:var(--primary);
        font-size:30px;
    }

    .step h3{
        margin-bottom:12px;
        font-size:20px;
    }

    .step p{
        margin:0;
        line-height:1.7;
    }

    /* FEATURED PRODUCTS: keep the cards in a clean horizontal row
       on normal laptop/desktop widths. */
    .products-preview .products-grid{
        display:grid;
        grid-template-columns:repeat(5,minmax(0,1fr));
        gap:24px;
        align-items:stretch;
    }

    .products-preview .product{
        min-width:0;
        padding:28px 18px;
    }

    .products-preview .product img{
        width:100%;
        max-width:180px;
        height:220px;
    }

    .products-preview .product h3{
        font-size:22px;
    }
}

/* Medium desktop/tablet landscape: avoid squeezing five product cards. */
@media (min-width: 993px) and (max-width: 1199px){

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

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

/* Mobile remains a vertical layout. */
@media (max-width: 992px){

    .process-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:24px;
    }

    .products-preview .products-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:24px;
    }
}


/* =========================================================
   HOMEPAGE DESKTOP STRUCTURE
   Desktop: horizontal layouts.
   Mobile/tablet: existing responsive rules remain vertical.
========================================================= */

@media (min-width: 993px){

    /* HERO: text LEFT, image RIGHT */
    .hero > .hero-wrapper{
        width:100%;
        max-width:1280px;
        margin:0 auto;
        display:grid;
        grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
        align-items:center;
        gap:70px;
    }

    .hero > .hero-wrapper > .hero-content{
        order:1;
    }

    .hero > .hero-wrapper > .hero-image{
        order:2;
        min-width:0;
    }

    /* BUSINESS HIGHLIGHTS: one horizontal row */
    .stats > .container > .stats-grid{
        display:grid;
        grid-template-columns:repeat(4,minmax(0,1fr));
        gap:30px;
        align-items:stretch;
    }

    /* WHY CHOOSE US: image LEFT, text RIGHT */
    .why-us > .container.why-wrapper{
        width:100%;
        max-width:1280px;
        margin:0 auto;
        display:grid;
        grid-template-columns:minmax(0,1fr) minmax(0,1fr);
        align-items:center;
        gap:70px;
    }

    /* HOW IT WORKS: cards in a horizontal row */
    .process-grid{
        grid-template-columns:repeat(4,minmax(0,1fr));
    }

    /* Make the homepage process cards match the feature-card style. */
    .step{
        position:relative;
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        min-height:280px;
        padding:42px 24px 30px;
        border:1px solid var(--border);
        border-radius:22px;
        background:#fff;
        box-shadow:var(--shadow);
        overflow:hidden;
        transition:.35s ease;
    }

    .step:hover{
        transform:translateY(-10px);
        box-shadow:var(--shadow-hover);
    }

    .step .number{
        position:absolute;
        top:15px;
        left:15px;
        display:flex;
        align-items:center;
        justify-content:center;
        width:36px;
        height:36px;
        border-radius:50%;
        background:var(--primary);
        color:#fff;
        font-weight:700;
    }

    .step > i{
        display:flex;
        align-items:center;
        justify-content:center;
        width:72px;
        height:72px;
        margin:4px auto 20px;
        border-radius:50%;
        background:linear-gradient(135deg,var(--primary),#fb923c);
        color:#fff;
        font-size:29px;
        box-shadow:0 12px 25px rgba(249,115,22,.28);
    }

    .step h3{
        margin-bottom:10px;
        color:var(--secondary);
        font-size:20px;
    }

    .step p{
        margin:0;
        color:var(--text);
        line-height:1.7;
    }

    /* FEATURE CARDS: keep them horizontal on desktop */
    .features-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    /* PRODUCTS: cards in rows across the page */
    .products-preview .products-grid{
        grid-template-columns:repeat(5,minmax(0,1fr));
    }
}

/* Tablet landscape: avoid squeezing cards. */
@media (min-width: 993px) and (max-width: 1199px){

    .hero > .hero-wrapper{
        gap:40px;
    }

    .stats > .container > .stats-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

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

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

/* =========================================================
   MOBILE/TABLET: cards stay cards, but stack vertically.
========================================================= */

@media (max-width: 992px){

    .hero > .hero-wrapper{
        display:grid;
        grid-template-columns:1fr;
        gap:34px;
    }

    .hero > .hero-wrapper > .hero-content{
        order:1;
    }

    .hero > .hero-wrapper > .hero-image{
        order:2;
    }

    .stats > .container > .stats-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:24px;
    }

    .why-us > .container.why-wrapper{
        display:grid;
        grid-template-columns:1fr;
        gap:50px;
    }

    .process-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:24px;
    }

    .step{
        position:relative;
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        min-height:240px;
        padding:42px 25px 30px;
        border:1px solid var(--border);
        border-radius:22px;
        background:#fff;
        box-shadow:var(--shadow);
        overflow:hidden;
    }

    .step .number{
        position:absolute;
        top:14px;
        left:14px;
        display:flex;
        align-items:center;
        justify-content:center;
        width:34px;
        height:34px;
        border-radius:50%;
        background:var(--primary);
        color:#fff;
        font-weight:700;
    }

    .step > i{
        display:flex;
        align-items:center;
        justify-content:center;
        width:66px;
        height:66px;
        margin:4px auto 18px;
        border-radius:50%;
        background:linear-gradient(135deg,var(--primary),#fb923c);
        color:#fff;
        font-size:27px;
    }

    .step h3{
        margin-bottom:10px;
        color:var(--secondary);
    }

    .step p{
        color:var(--text);
        line-height:1.7;
    }

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

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


/* FAQ accordion fallback: active questions always reveal their answers. */
.faq-item.active .faq-answer{
    max-height:500px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}


/* =========================================================
   FINAL HOMEPAGE DESKTOP HERO FIX
   The hero wrapper must span the full hero width. Previously
   the parent .hero grid treated the wrapper as one grid item,
   squeezing the entire two-column hero into half the screen.
   This keeps desktop text on the LEFT and the hero image on
   the RIGHT, matching the Products hero. Mobile is unchanged.
========================================================= */
@media (min-width: 993px){
    .hero{
        display:block;
        min-height:100vh;
    }

    .hero > .hero-wrapper{
        width:100%;
        max-width:1280px;
        margin:0 auto;
        display:grid;
        grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
        align-items:center;
        gap:70px;
    }

    .hero > .hero-wrapper > .hero-content{
        min-width:0;
        order:1;
    }

    .hero > .hero-wrapper > .hero-image{
        min-width:0;
        width:100%;
        min-height:450px;
        order:2;
    }

    .hero > .hero-wrapper > .hero-image img{
        width:min(100%,620px);
        max-width:620px;
        height:auto;
        max-height:560px;
        object-fit:contain;
    }
}

@media (min-width: 993px) and (max-width: 1199px){
    .hero > .hero-wrapper{
        gap:40px;
    }

    .hero > .hero-wrapper > .hero-image img{
        max-width:520px;
    }
}


/*====================================================
    DESKTOP LAYOUT INTEGRITY
    Prevents shared/global grid rules from squeezing
    homepage wrappers into a single grid column.
=====================================================*/

.hero > .hero-wrapper,
.stats > .container,
.why-us > .container.why-wrapper{
    min-width:0;
}

.hero-content,
.hero-image,
.why-image,
.why-content,
.stats-grid,
.features-grid,
.feature{
    min-width:0;
}

.why-content h2{
    max-width:700px;
    overflow-wrap:normal;
    word-break:normal;
    white-space:normal;
}

.why-content > p{
    max-width:700px;
}

.feature h3{
    margin:0 0 10px;
    color:var(--secondary);
    font-size:21px;
    line-height:1.3;
}

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

