/* ===========================
   GLOBAL
=========================== */

:root {

    --primary: #F26A21;

    --primary-dark: #D95A17;

    --black: #111111;

    --dark: #222222;

    --gray: #666666;

    --light: #F7F7F7;
    --border: #EAEAEA;

    --white: #ffffff;

    --radius-small: 12px;

    --radius: 20px;

    --radius-large: 32px;

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

    --container: 1200px;
    --h1: 72px;

    --h2: 52px;

    --h3: 34px;

    --body: 18px;

    --small: 15px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    animation: fadeIn .8s ease;
}

::selection {

    background: #f26a21;

    color: white;

}

::-webkit-scrollbar {

    width: 12px;

}

::-webkit-scrollbar-track {

    background: #f4f4f4;

}

::-webkit-scrollbar-thumb {

    background: #f26a21;

    border-radius: 20px;

}

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

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

a {
    text-decoration: none;
}

.container {

    width: min(var(--container), 90%);

    margin: auto;

}


/* ===========================
   NAVBAR
=========================== */

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

h1 {

    font-size: clamp(52px, 7vw, 76px);

}

h2 {

    font-size: clamp(34px, 4vw, 52px);

}

h3 {

    font-size: 28px;

}


.navbar {

    position: fixed;

    top: 5px;

    left: 50%;

    transform: translateX(-50%);

    width: 92%;

    max-width: 1300px;

    padding: 18px 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-radius: 20px;

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

    backdrop-filter: blur(18px);

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

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

    z-index: 999;

}

/* section {

    scroll-margin-top: 120px;

} */

.navbar {

    transition: all .35s ease;

}

.navbar.scrolled {

    background: white;

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

    padding: 14px 40px;

}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 42px;
}

.menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.menu a {
    color: #333;
    font-weight: 500;
    transition: .3s;
    position: relative;
}

.menu a:hover {
    color: #f26a21;
}

.menu a.active {
    color: #f26a21;
    font-weight: 700;
}

.menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 2px;

    background: #f26a21;

    transition: .3s;

}

.menu a:hover::after,
.menu a.active::after {

    width: 100%;

}

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

button,
.btn,
a {

    cursor: pointer;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 34px;

    border-radius: 999px;

    font-weight: 600;

    text-decoration: none;

    transition: all .35s ease;

}

.btn-primary {

    background: var(--primary);

    color: white;

}

.btn-primary:hover {

    background: #e25f1d;

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(242, 106, 33, .35);

}

.btn-secondary {

    background: white;

    color: #222;

    border: 2px solid #ddd;

}

.btn-secondary:hover {

    border-color: var(--primary);

    color: var(--primary);

}

.btn-outline {
    border: 2px solid #f26a21;
    color: #f26a21;
}

.btn-outline:hover {
    background: #f26a21;
    color: white;
}


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

.footer {

    background: #111111;
    color: #ffffff;
    padding: 80px 20px 30px;
    margin-top:0;

}

.footer-grid {

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;

}

.footer-logo {

    width: 220px;
    margin-bottom: 25px;

}

.footer p {

    color: #bdbdbd;
    line-height: 1.8;

}

.footer h4 {

    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;

}

.footer ul {

    list-style: none;
    padding: 0;
    margin: 0;

}

.footer ul li {

    margin-bottom: 14px;

}

.footer ul li a {

    color: #bdbdbd;
    text-decoration: none;
    transition: .3s;

}

.footer ul li a:hover {

    color: #f26a21;

}

.copyright {

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

    margin-top: 60px;

    padding-top: 25px;

    text-align: center;

    color: #888888;

    font-size: 15px;

}

.footer p i {

    color: #f26a21;
    width: 24px;
    margin-right: 10px;

}

.floating-whatsapp {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 64px;

    height: 64px;

    background: #25D366;

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    text-decoration: none;

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

    z-index: 1000;

    transition: .3s;

}

.floating-whatsapp:hover {

    transform: scale(1.1);

}

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

@media(max-width:992px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        margin: auto;
        margin-bottom: 30px;
    }

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

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

}

@media(max-width:768px) {

    .navbar {
        height: auto;
        padding: 20px 0;
    }

    .navbar .container {
        flex-direction: column;
    }

    .menu {
        margin-top: 20px;
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-text p {
        font-size: 16px;
    }

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

    section {
        padding: 70px 0;
    }

    section h2 {
        font-size: 30px;
    }

}

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

.about {

    background: white;

}

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.about-image img {

    width: 100%;

    border-radius: 20px;

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

}

.section-tag {

    color: #f26a21;

    font-weight: 700;

    letter-spacing: 2px;

}

.about h2 {

    text-align: left;

    margin: 20px 0;

}

.about p {

    color: #666;

    margin-bottom: 20px;

}

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


.gallery {

    width: 1200px;

    margin: auto;

    display: grid;

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

    gap: 18px;

}

.gallery img {

    width: 100%;

    height: 330px;

    object-fit: cover;

    border-radius: 18px;

    transition: .4s;

    cursor: pointer;

}

.gallery img:hover {

    transform: scale(1.04);

}

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

}

.gallery-overlay {

    position: absolute;

    inset: 0;

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

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    transition: .35s;

}

.gallery-item:hover .gallery-overlay {

    opacity: 1;

}

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

.contact {

    padding: 120px 20px;

    background: #fff;

}

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;

}

.contact-cards {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.contact-card {

    display: flex;

    align-items: center;

    gap: 20px;

    text-decoration: none;

    color: #222;

    background: #fafafa;

    padding: 25px;

    border-radius: 18px;

    transition: .3s;

    border: 1px solid #eee;

}

.contact-card:hover {

    transform: translateY(-5px);

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

}

.contact-card i {

    font-size: 32px;

    color: #f26a21;

    width: 40px;

}

/* =========================
RESELLER
========================= */

.reseller {

    background: #f26a21;

    color: white;

    text-align: center;

}

.reseller h2 {

    color: white;

}

.benefits {

    display: grid;

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

    gap: 20px;

    margin: 50px auto;

    max-width: 700px;

}

.benefits div {

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

    padding: 25px;

    border-radius: 15px;

    font-weight: 600;

}

.contact-btn {

    background: #f26a21;

    color: white !important;

    padding: 12px 24px;

    border-radius: 50px;

    transition: .3s;

}

.contact-btn:hover {

    background: #e55f00;

}

.fade-up {

    opacity: 0;

    transform: translateY(60px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.fade-up.show {

    opacity: 1;

    transform: translateY(0);

}

.menu a.active {

    color: #f26a21;

}

.product-card {

    overflow: hidden;

}

.product-card img {

    transition: .5s;

}

.product-card:hover img {

    transform: scale(1.08);

}

.product-large img,
.product-small img {

    transition:

        transform .6s,

        filter .6s;

}

.product-large:hover img,
.product-small:hover img {

    transform: scale(1.08);

    filter: brightness(.88);

}

.progress-bar {

    position: fixed;

    top: 0;

    left: 0;

    height: 4px;

    width: 0;

    background: #f26a21;

    z-index: 99999;

}

#topBtn {

    position: fixed;

    left: 30px;
    right: auto;

    bottom: 30px;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: #111;
    color: white;

    cursor: pointer;

    display: none;

    z-index: 999;

    transition: .3s;

}

