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

:root {

    --primary: #5b5b5b;
    --primary-dark: #414141;

    --accent: #c4d923;
    --accent-dark: #aebe16;

    --dark: #151515;
    --dark-2: #202020;

    --text: #444444;
    --text-light: #777777;

    --white: #ffffff;
    --off-white: #f7f8f8;
    --border: #e6e6e6;

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

    --container: 1220px;

}


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

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

html {
    scroll-behavior: smooth;
}

body {

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

    background: var(--white);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}


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

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

}


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

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0,0,0,0.06);

}

.nav-container {

    min-height: 86px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* Logo */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 250px;

}

.logo img {

    width: 58px;

    height: 58px;

    object-fit: contain;

}

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.15;

}

.logo-text span {

    font-weight: 800;

    color: var(--dark);

    font-size: 14px;

    letter-spacing: -0.3px;

}

.logo-text small {

    color: var(--primary);

    font-size: 11px;

    margin-top: 4px;

}


/* Navigation */

.navbar {

    display: flex;

    align-items: center;

    gap: 25px;

}

.navbar a {

    position: relative;

    color: #444;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;

}

.navbar a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--accent);

    transition: 0.3s;

}

.navbar a:hover {

    color: var(--primary);

}

.navbar a:hover::after {

    width: 100%;

}


/* Header Button */

.nav-button {

    background: var(--accent);

    color: var(--dark);

    padding: 12px 20px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 800;

    transition: 0.3s;

}

.nav-button:hover {

    background: var(--accent-dark);

    transform: translateY(-2px);

}


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

.hero {

    min-height: 740px;

    position: relative;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(20,20,20,0.95),
            rgba(30,30,30,0.82),
            rgba(45,45,45,0.50)
        ),
        url("images/image-1.jpg");

    background-size: cover;

    background-position: center;

    overflow: hidden;

}

.hero::before {

    content: "";

    position: absolute;

    top: -200px;
    right: -150px;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    border: 80px solid rgba(196,217,35,0.08);

}

.hero-content {

    position: relative;

    z-index: 2;

}

.hero-text {

    max-width: 800px;

    color: white;

}

.hero-label {

    display: inline-block;

    padding: 7px 13px;

    background: rgba(196,217,35,0.12);

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

    color: var(--accent);

    letter-spacing: 2px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 22px;

}

.hero h1 {

    font-size: clamp(42px, 6vw, 76px);

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 800;

    margin-bottom: 20px;

}

.hero h1 span {

    display: block;

    color: var(--accent);

}

.hero h2 {

    font-size: clamp(18px, 2vw, 26px);

    font-weight: 600;

    margin-bottom: 10px;

}

.hero p {

    font-size: 18px;

}

.hero-description {

    max-width: 680px;

    color: #d7d7d7;

    margin-top: 15px;

    font-size: 16px !important;

}

.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 35px;

    flex-wrap: wrap;

}


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

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 25px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 800;

    transition: 0.3s;

}

.btn-primary {

    background: var(--accent);

    color: var(--dark);

}

.btn-primary:hover {

    transform: translateY(-3px);

    background: var(--accent-dark);

}

.btn-outline {

    border: 1px solid rgba(255,255,255,0.5);

    color: white;

}

.btn-outline:hover {

    border-color: var(--accent);

    color: var(--accent);

}


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

.stats {

    background: var(--primary);

    color: white;

}

.stats-grid {

    display: grid;

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

}

.stat {

    padding: 28px 20px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,0.12);

}

.stat:last-child {

    border-right: 0;

}

.stat strong {

    display: block;

    font-size: 25px;

    color: var(--accent);

}

.stat span {

    color: #ddd;

    font-size: 13px;

}


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

.section {

    padding: 110px 0;

}

.section-label {

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    display: inline-block;

    margin-bottom: 15px;

}

.section-heading {

    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;

}

.section-heading h2 {

    color: var(--dark);

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

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 18px;

}

.section-heading h2 span {

    color: var(--primary);

}

.section-heading p {

    color: var(--text-light);

    font-size: 16px;

}


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

.about {

    background: var(--off-white);

}

.about-grid {

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 80px;

    align-items: center;

}

.image-box {

    position: relative;

    overflow: hidden;

    border-radius: 6px;

}

.image-box img {

    height: 100%;

    min-height: 500px;

    object-fit: cover;

    transition: transform 0.7s;

}

.image-box:hover img {

    transform: scale(1.05);

}

.image-label {

    position: absolute;

    bottom: 20px;

    left: 20px;

    padding: 13px 16px;

    background: rgba(20,20,20,0.85);

    color: white;

    font-size: 13px;

    font-weight: 700;

    display: flex;

    gap: 10px;

    align-items: center;

}

.image-label span {

    color: var(--accent);

}

.about-content h2 {

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

    line-height: 1.1;

    color: var(--dark);

    margin-bottom: 25px;

    letter-spacing: -2px;

}

.about-content h2 span {

    display: block;

    color: var(--primary);

}

.about-content p {

    margin-bottom: 18px;

    color: #5d5d5d;

}

.about-highlight {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 18px;

}

.about-highlight span {

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--accent);

    border-radius: 50%;

    color: var(--dark);

    font-size: 12px;

    font-weight: 800;

}

.about-highlight p {

    margin: 0;

}


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

.products-section {

    background: white;

}

.products-grid {

    display: grid;

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

    gap: 24px;

}

.product-card {

    background: white;

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

    transition: 0.35s;

    overflow: hidden;

}

.product-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.product-image {

    height: 225px;

    position: relative;

    overflow: hidden;

    background: #eee;

}

.product-image img {

    height: 100%;

    object-fit: cover;

    transition: 0.5s;

}

.product-card:hover .product-image img {

    transform: scale(1.06);

}

.product-image span {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--accent);

    color: var(--dark);

    font-size: 11px;

    font-weight: 800;

}

.product-content {

    padding: 25px;

}

.product-content h3 {

    color: var(--dark);

    font-size: 25px;

    margin-bottom: 2px;

}

.product-content h4 {

    color: var(--primary);

    font-size: 12px;

    margin-bottom: 15px;

}

.product-content p {

    color: #6a6a6a;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================
   PRODUCT BANNER
========================================= */

.product-banner {

    background:

        linear-gradient(
            90deg,
            var(--primary-dark),
            var(--primary)
        );

    color: white;

    padding: 65px 0;

}

.product-banner-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}

.product-banner h2 {

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.1;

    letter-spacing: -1px;

}

.product-banner h2 span {

    display: block;

    color: var(--accent);

}


/* =========================================
   INDUSTRIES
========================================= */

.industries {

    background: var(--off-white);

}

.industries-list {

    display: grid;

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

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

}

.industries-list div {

    padding: 18px 22px;

    background: white;

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

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

    font-size: 14px;

    font-weight: 600;

    position: relative;

    transition: 0.3s;

}

.industries-list div::before {

    content: "";

    width: 7px;
    height: 7px;

    background: var(--accent);

    display: inline-block;

    margin-right: 10px;

}

.industries-list div:hover {

    color: var(--primary);

    background: #fafafa;

}


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

.features-grid {

    display: grid;

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

    gap: 25px;

}

.feature-card {

    padding: 38px 30px;

    background: var(--off-white);

    border-top: 3px solid var(--accent);

    transition: 0.35s;

}

.feature-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}

.feature-number {

    color: var(--accent-dark);

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 18px;

}

.feature-card h3 {

    font-size: 20px;

    color: var(--dark);

    margin-bottom: 12px;

}

.feature-card p {

    font-size: 14px;

    color: var(--text-light);

}


/* =========================================
   SUPPLY
========================================= */

.supply {

    background: var(--dark);

    color: white;

}

.supply-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.supply-content .section-label {

    color: var(--accent);

}

.supply-content h2 {

    font-size: clamp(35px,4vw,55px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 25px;

}

.supply-content h2 span {

    display: block;

    color: var(--accent);

}

.supply-content p {

    color: #c9c9c9;

    margin-bottom: 18px;

}

.check-list {

    display: grid;

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

    gap: 10px;

    margin: 25px 0;

}

.check-list div {

    font-size: 13px;

    color: #e4e4e4;

}

.check-list div::before {

    content: "✓";

    color: var(--accent);

    font-weight: 800;

    margin-right: 8px;

}


/* SUPPLY IMAGE */

.supply-image {

    position: relative;

    width: 100%;

    border-radius: 6px;

    overflow: hidden;

}

.supply-image img {

    width: 100%;

    height: auto;

    aspect-ratio: 900 / 507;

    object-fit: contain;

    display: block;

}


/* LOCATION CARD */

.location-card {

    position: absolute;

    bottom: 20px;

    left: 20px;

    right: 20px;

    padding: 18px;

    background: rgba(20,20,20,0.90);

    display: flex;

    flex-direction: column;

}

.location-card strong {

    color: white;

}

.location-card span {

    color: var(--accent);

    font-size: 12px;

}

/* =========================================
   DOCUMENTATION
========================================= */

.documentation {

    background: var(--off-white);

}

.documentation-grid {

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 75px;

    align-items: center;

}

.documentation-image img {

    min-height: 500px;

    object-fit: cover;

}

.documentation-content h2 {

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

    line-height: 1.1;

    letter-spacing: -2px;

    color: var(--dark);

    margin-bottom: 22px;

}

.documentation-content h2 span {

    display: block;

    color: var(--primary);

}

.documentation-content p {

    margin-bottom: 20px;

}

.documents-grid {

    display: grid;

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

    gap: 12px;

    margin-top: 25px;

}

.documents-grid div {

    background: white;

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

    padding: 14px;

    font-size: 12px;

    font-weight: 700;

}

.documentation-note {

    margin-top: 20px;

    font-size: 13px;

    color: var(--text-light);

}


/* =========================================
   QUOTE
========================================= */

.quote-section {

    background: white;

}

.quote-grid {

    display: grid;

    grid-template-columns: 1fr 0.75fr;

    gap: 75px;

    align-items: center;

}

.quote-content h2 {

    font-size: clamp(36px,4vw,54px);

    line-height: 1.1;

    letter-spacing: -2px;

    color: var(--dark);

    margin-bottom: 20px;

}

.quote-content h2 span {

    display: block;

    color: var(--primary);

}

.quote-content h3 {

    margin-top: 30px;

    margin-bottom: 12px;

}

.quote-checklist {

    display: grid;

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

    gap: 9px;

}

.quote-checklist div {

    font-size: 13px;

    color: #555;

}

.quote-checklist div::before {

    content: "✓";

    color: var(--accent-dark);

    font-weight: 800;

    margin-right: 7px;

}

.quote-final {

    margin-top: 25px;

    font-weight: 700;

    color: var(--primary);

}

.quote-card {

    background: var(--dark);

    color: white;

    padding: 45px;

    border-top: 5px solid var(--accent);

    box-shadow: var(--shadow);

}

.quote-card h3 {

    font-size: 27px;

    margin-bottom: 12px;

}

.quote-card p {

    color: #bbb;

    margin-bottom: 28px;

}

.quote-button,
.whatsapp-button {

    width: 100%;

    display: flex;

    justify-content: center;

    padding: 14px;

    margin-bottom: 12px;

    font-weight: 800;

    font-size: 13px;

}

.quote-button {

    background: var(--accent);

    color: var(--dark);

}

.whatsapp-button {

    border: 1px solid #555;

}

.quote-contact {

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #3b3b3b;

    display: flex;

    justify-content: space-between;

    gap: 10px;

    font-size: 12px;

}

.quote-contact span {

    color: var(--accent);

}


/* =========================================
   COMMITMENT
========================================= */

.commitment {

    background: var(--primary);

    color: white;

    padding: 85px 0;

}

.commitment-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.commitment .section-label {

    color: var(--accent);

}

.commitment h2 {

    font-size: clamp(36px,4vw,54px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 20px;

}

.commitment h2 span {

    display: block;

    color: var(--accent);

}

.commitment p {

    color: #ddd;

}

.commitment-items {

    display: grid;

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

    gap: 12px;

}

.commitment-items div {

    padding: 20px;

    background: rgba(0,0,0,0.13);

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

}

.commitment-items strong {

    font-size: 13px;

}


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

.contact {

    background: var(--off-white);

}

.contact-heading {

    max-width: 800px;

    margin-bottom: 55px;

}

.contact-heading h2 {

    font-size: clamp(38px,5vw,58px);

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--dark);

    margin-bottom: 20px;

}

.contact-heading h2 span {

    display: block;

    color: var(--primary);

}

.contact-heading p {

    color: var(--text-light);

}

.contact-grid {

    display: grid;

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

    gap: 18px;

}

.contact-card {

    padding: 30px;

    background: white;

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

    min-height: 200px;

    transition: 0.3s;

}

.contact-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

}

.contact-icon {

    display: block;

    color: var(--accent-dark);

    font-size: 25px;

    margin-bottom: 18px;

}

.contact-card h3 {

    color: var(--dark);

    font-size: 17px;

    margin-bottom: 10px;

}

.contact-card a,
.contact-card p {

    font-size: 13px;

    color: #666;

}

.contact-card a:hover {

    color: var(--primary);

}

.contact-actions {

    margin-top: 30px;

    display: flex;

    gap: 12px;

}


/* WhatsApp */

.btn-whatsapp {

    background: #2f2f2f;

    color: white;

}

.btn-whatsapp:hover {

    background: #1d1d1d;

}


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

.footer {

    background: var(--dark);

    color: white;

    padding-top: 75px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 60px;

}

.footer-brand img {

    width: 75px;

    height: 75px;

    object-fit: contain;

    margin-bottom: 18px;

}

.footer-brand h3 {

    max-width: 300px;

    font-size: 18px;

    margin-bottom: 8px;

}

.footer-brand p {

    color: var(--accent);

    font-size: 12px;

}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.footer-column h4 {

    color: white;

    font-size: 14px;

    margin-bottom: 10px;

}

.footer-column a,
.footer-column span {

    color: #999;

    font-size: 12px;

}

.footer-column a:hover {

    color: var(--accent);

}

.footer-bottom {

    border-top: 1px solid #303030;

    padding: 20px 0;

}

.footer-bottom .container {

    display: flex;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p {

    color: #777;

    font-size: 11px;

}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1100px) {

    .navbar {

        display: none;

    }

    .products-grid {

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

    }

    .features-grid {

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

    }

    .contact-grid {

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

    }

    .footer-grid {

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

    }

}


/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 750px) {

    .container {

        width: min(
            calc(100% - 28px),
            var(--container)
        );

    }

    .nav-container {

        min-height: 75px;

    }

    .logo {

        min-width: auto;

    }

    .logo img {

        width: 50px;

        height: 50px;

    }

    .logo-text span {

        font-size: 12px;

    }

    .logo-text small {

        font-size: 9px;

    }

    .nav-button {

        display: none;

    }

    .hero {

        min-height: 700px;

    }

    .hero h1 {

        letter-spacing: -2px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .btn {

        width: 100%;

    }

    .stats-grid {

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

    }

    .stat:nth-child(2) {

        border-right: 0;

    }

    .stat:nth-child(1),
    .stat:nth-child(2) {

        border-bottom: 1px solid rgba(255,255,255,0.12);

    }

    .section {

        padding: 80px 0;

    }

    .about-grid,
    .supply-grid,
    .documentation-grid,
    .quote-grid,
    .commitment-content {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .products-grid,
    .features-grid {

        grid-template-columns: 1fr;

    }

    .product-banner-content {

        flex-direction: column;

        align-items: flex-start;

    }

    .industries-list {

        grid-template-columns: 1fr;

    }

    .industries-list div {

        border-right: 0;

    }

    .check-list,
    .documents-grid,
    .quote-checklist,
    .commitment-items {

        grid-template-columns: 1fr;

    }

    .contact-grid {

        grid-template-columns: 1fr;

    }

    .contact-actions {

        flex-direction: column;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .footer-bottom .container {

        flex-direction: column;

    }

}


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

@media (max-width: 450px) {

    .hero {

        min-height: 650px;

    }

    .hero h1 {

        font-size: 39px;

    }

    .hero h2 {

        font-size: 18px;

    }

    .hero-description {

        font-size: 14px !important;

    }

    .product-content {

        padding: 20px;

    }

    .quote-card {

        padding: 28px 22px;

    }

}