/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #222222;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

/* =========================================
   COLORS
========================================= */

:root {
    --orange: #ff7900;
    --orange-dark: #e86c00;
    --white: #ffffff;
    --black: #222222;
    --gray: #666666;
    --border: #eeeeee;
}

/* =========================================
   HEADER
========================================= */

.site-header {

    position: sticky;

    top: 0;

    width: 100%;

    z-index: 1000;

    background: #ffffff;

    border-bottom: 1px solid var(--border);

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

/* =========================================
   HEADER CONTAINER
========================================= */

.header-container {

    width: 92%;

    max-width: 1400px;

    min-height: 85px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.site-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 0;
}

.site-logo-mark {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--orange);

    color: white;

    border-radius: 8px;

    font-size: 24px;

    font-weight: bold;
}

.site-logo-img {

    height: 60px;

    max-height: 60px;

    width: auto;

    max-width: 200px;

    object-fit: contain;

    flex-shrink: 0;

}

.site-logo-text {

    display: flex;

    flex-direction: column;
}

.site-logo-name {

    font-size: 25px;

    font-weight: 800;

    color: #555555;
}

.site-logo-subtitle {

    font-size: 11px;

    color: #777777;

    margin-top: 3px;
}

/* =========================================
   NAVIGATION
========================================= */

.main-navigation {

    display: flex;

    align-items: center;

    gap: 5px;
}

.nav-link {

    position: relative;

    padding: 15px;

    font-size: 14px;

    font-weight: 600;

    color: #333333;

    transition: 0.3s;
}

.nav-link:hover {

    color: var(--orange);
}

.nav-link.active {

    color: var(--orange);
}

/* =========================================
   DROPDOWN
========================================= */

.nav-dropdown {

    position: relative;
}

.nav-dropdown-button {

    border: none;

    background: none;

    cursor: pointer;

    padding: 15px;

    font-size: 14px;

    font-weight: 600;

    color: #333333;
}

.nav-dropdown-button:hover {

    color: var(--orange);
}

.dropdown-arrow {

    margin-left: 5px;
}

/* =========================================
   DROPDOWN MENU
========================================= */

.nav-dropdown-menu {

    position: absolute;

    top: 100%;

    left: 50%;

    transform: translateX(-50%);

    width: 240px;

    padding: 10px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);

    opacity: 0;

    visibility: hidden;

    transition: 0.25s;
}

.nav-dropdown:hover .nav-dropdown-menu {

    opacity: 1;

    visibility: visible;
}

.nav-dropdown-menu a {

    display: block;

    padding: 11px 14px;

    border-radius: 6px;

    font-size: 13px;

    color: #444444;
}

.nav-dropdown-menu a:hover {

    background: #fff3e8;

    color: var(--orange);
}

/* =========================================
   CONTACT BUTTON
========================================= */

.nav-contact-button {

    margin-left: 10px;

    padding: 13px 22px;

    border-radius: 25px;

    background: var(--orange);

    color: white;

    font-size: 13px;

    font-weight: bold;

    transition: 0.3s;
}

.nav-contact-button:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);
}

/* =========================================
   MOBILE BUTTON
========================================= */

.mobile-menu-button {

    display: none;

    width: 42px;

    height: 42px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    flex-shrink: 0;
}

.mobile-menu-button span {

    width: 24px;

    height: 2px;

    background: #333333;

    transition: 0.3s;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .mobile-menu-button {

        display: flex;
    }

    .main-navigation {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        padding: 15px 5% 25px;

        background: white;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: 0.3s;
    }

    .main-navigation.mobile-open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

    .nav-link {

        width: 100%;

        padding: 13px;

        border-radius: 6px;
    }

    .nav-link:hover {

        background: #fff3e8;
    }

    .nav-dropdown {

        width: 100%;
    }

    .nav-dropdown-button {

        width: 100%;

        text-align: left;

        padding: 13px;

        border-radius: 6px;
    }

    .nav-dropdown-menu {

        position: static;

        transform: none;

        width: 100%;

        border: none;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        display: none;
    }

    .nav-dropdown.mobile-dropdown-open .nav-dropdown-menu {

        display: block;
    }

    .nav-contact-button {

        margin: 10px 0 0;

        text-align: center;

        padding: 13px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .site-logo-name {

        font-size: 21px;
    }

    .site-logo-subtitle {

        font-size: 9px;
    }

    .site-logo-mark {

        width: 40px;

        height: 40px;

        font-size: 20px;
    }

    .site-logo-img {

        height: 46px;

        max-height: 46px;

        max-width: 150px;

    }

}

/* ==================================================
   HERO SECTION
================================================== */

.hero-section {

    position: relative;

    min-height: 700px;

    width: 100%;

    overflow: hidden;

    background:
        #171717;

    color: #ffffff;

}

/* =========================================================
   HERO — FULL WIDTH PAPER TESTING INDUSTRY
========================================================= */

.hero-section {

    position: relative;

    width: 100%;

    min-height: 680px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-image:
        url("IMAG/factory.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}

/* =========================================================
   HERO DARK OVERLAY
========================================================= */

.hero-background-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.72) 42%,
            rgba(0, 0, 0, 0.42) 75%,
            rgba(0, 0, 0, 0.25) 100%);
}

/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 1250px;

    margin: 0 auto;

    min-height: 680px;

    display: flex;

    align-items: center;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    width: 680px;

    max-width: 100%;

    padding: 80px 0;
}

/* =========================================================
   HERO LABEL
========================================================= */

.hero-label {

    display: inline-block;

    margin-bottom: 22px;

    padding: 9px 16px;

    border-left:
        3px solid var(--orange);

    background:
        rgba(255, 255, 255, 0.10);

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {

    margin: 0;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size:
        clamp(45px, 5.2vw, 76px);

    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 800;

    color: #ffffff;
}

.hero-content h1 span {

    display: block;

    color: #ffffff;
}

.hero-content h1 strong {

    display: block;

    color: var(--orange);

    font-weight: 800;
}

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-content>p {

    max-width: 650px;

    margin-top: 27px;

    color:
        rgba(255, 255, 255, 0.84);

    font-size: 15px;

    line-height: 1.8;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 34px;

    flex-wrap: wrap;
}

.hero-btn {

    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all 0.3s ease;
}

/* PRIMARY BUTTON */

.hero-btn-primary {

    background:
        var(--orange);

    color:
        #ffffff;

    box-shadow:
        0 10px 25px rgba(245, 130, 32, 0.25);
}

.hero-btn-primary:hover {

    background:
        var(--orange-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 30px rgba(245, 130, 32, 0.35);
}

/* SECONDARY BUTTON */

.hero-btn-secondary {

    border:
        1px solid rgba(255, 255, 255, 0.45);

    background:
        rgba(255, 255, 255, 0.04);

    color:
        #ffffff;
}

.hero-btn-secondary:hover {

    background:
        #ffffff;

    border-color:
        #ffffff;

    color:
        var(--heading);

    transform:
        translateY(-2px);
}

/* =========================================================
   HERO RESPONSIVE — TABLET
========================================================= */

@media (max-width: 850px) {

    .hero-section {

        min-height: 620px;
    }

    .hero-container {

        min-height: 620px;

        width: 88%;
    }

    .hero-content {

        width: 620px;
    }

    .hero-content h1 {

        font-size:
            clamp(42px, 8vw, 64px);
    }
}

/* =========================================================
   HERO RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero-section {

        min-height: 650px;

        background-position:
            center center;
    }

    .hero-background-overlay {

        background:
            linear-gradient(90deg,
                rgba(0, 0, 0, 0.90) 0%,
                rgba(0, 0, 0, 0.70) 100%);
    }

    .hero-container {

        width: 88%;

        min-height: 650px;
    }

    .hero-content {

        padding: 70px 0;
    }

    .hero-label {

        font-size: 9px;

        letter-spacing: 1.5px;
    }

    .hero-content h1 {

        font-size: 42px;

        line-height: 1.05;

        letter-spacing: -1.2px;
    }

    .hero-content>p {

        margin-top: 22px;

        font-size: 13px;

        line-height: 1.7;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 28px;
    }

    .hero-btn {

        min-height: 49px;
    }
}

/* ==================================================
   ABOUT SECTION
================================================== */

.about-section {

    position: relative;

    width: 100%;

    padding:
        110px 0;

    background:
        #ffffff;

    overflow: hidden;
}

/* ==================================================
   ABOUT CONTAINER
================================================== */

.about-container {

    width:
        92%;

    max-width:
        1400px;

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items:
        center;

    gap:
        90px;
}

/* ==================================================
   ABOUT IMAGE AREA
================================================== */

.about-image-area {

    position:
        relative;

    padding:
        25px;
}

/* ==================================================
   ABOUT IMAGE
================================================== */

.about-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    background: #f5f5f5;
    width: 100%;
    min-height: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {

    transform:
        scale(1.03);
}

/* ==================================================
   ABOUT CONTENT
================================================== */

.about-content {

    max-width:
        680px;
}

/* ==================================================
   ABOUT LABEL
================================================== */

.about-label {

    display:
        inline-block;

    margin-bottom:
        14px;

    color:
        var(--orange);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        1.8px;
}

/* ==================================================
   ABOUT TITLE
================================================== */

.about-content h2 {

    margin:
        0;

    color:
        #222222;

    font-size:
        clamp(35px, 4vw, 52px);

    line-height:
        1.12;

    letter-spacing:
        -1.5px;

    font-weight:
        800;
}

.about-content h2 span {

    display:
        block;

    color:
        var(--orange);
}

/* ==================================================
   ABOUT TEXT
================================================== */

.about-content p {

    margin-top:
        18px;

    color:
        #666666;

    font-size:
        15px;

    line-height:
        1.8;
}

.about-content .about-intro {

    margin-top:
        25px;

    color:
        #444444;

    font-size:
        17px;

    line-height:
        1.75;

    font-weight:
        500;
}

/* ==================================================
   ABOUT FEATURES
================================================== */

.about-features {

    margin-top:
        30px;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        18px 25px;
}

/* ==================================================
   ABOUT FEATURE
================================================== */

.about-feature {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        12px;
}

/* ==================================================
   FEATURE ICON
================================================== */

.about-feature-icon {

    flex-shrink:
        0;

    width:
        28px;

    height:
        28px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        #fff1e5;

    color:
        var(--orange);

    font-size:
        14px;

    font-weight:
        800;
}

/* ==================================================
   FEATURE TEXT
================================================== */

.about-feature strong {

    display:
        block;

    margin-bottom:
        3px;

    color:
        #333333;

    font-size:
        13px;

    font-weight:
        700;
}

.about-feature span {

    display:
        block;

    color:
        #777777;

    font-size:
        11px;

    line-height:
        1.5;
}

/* ==================================================
   ABOUT BUTTON
================================================== */

.about-button {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    margin-top:
        35px;

    padding:
        14px 22px;

    border-radius:
        8px;

    background:
        var(--orange);

    color:
        #ffffff;

    font-size:
        13px;

    font-weight:
        700;

    transition:
        all 0.3s ease;
}

.about-button span {

    font-size:
        18px;

    line-height:
        1;

    transition:
        transform 0.3s ease;
}

.about-button:hover {

    background:
        var(--orange-dark);

    color:
        #ffffff;

    transform:
        translateY(-2px);
}

.about-button:hover span {

    transform:
        translateX(4px);
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .about-section {

        padding:
            80px 0;
    }

    .about-container {

        grid-template-columns:
            1fr;

        gap:
            60px;

        max-width:
            800px;
    }

    .about-image-area {

        max-width:
            650px;

        width:
            100%;

        margin:
            0 auto;
    }

    .about-content {

        max-width:
            800px;

        text-align:
            center;
    }

    .about-features {

        text-align:
            left;
    }

    .about-button {

        margin-top:
            30px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .about-section {

        padding:
            70px 0;
    }

    .about-container {

        width:
            90%;

        gap:
            45px;
    }

    .about-image {

        min-height: 320px;

        border-radius: 15px;
    }

    .about-image img {

        height: 320px;
    }

    .about-content {

        text-align:
            left;
    }

    .about-label {

        font-size:
            10px;

        letter-spacing:
            1.3px;
    }

    .about-content h2 {

        font-size:
            34px;

        letter-spacing:
            -1px;
    }

    .about-content p {

        font-size:
            14px;
    }

    .about-content .about-intro {

        font-size:
            15px;
    }

    .about-features {

        grid-template-columns:
            1fr;

        gap:
            18px;
    }

    .about-button {

        width:
            100%;

        justify-content:
            center;
    }

}

/* ==================================================
   PRODUCTS SECTION
================================================== */

.products-section {

    position: relative;

    padding:
        110px 0;

    background:
        #f7f7f7;

    overflow: hidden;
}

/* ==================================================
   PRODUCTS CONTAINER
================================================== */

.products-container {

    width:
        92%;

    max-width:
        1400px;

    margin:
        0 auto;
}

/* ==================================================
   PRODUCTS HEADING
================================================== */

.products-heading {

    max-width:
        760px;

    margin:
        0 auto 55px;

    text-align:
        center;
}

.products-label {

    margin-bottom:
        14px;

    color:
        var(--orange);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        1.8px;
}

.products-heading h2 {

    margin:
        0;

    color:
        #222222;

    font-size:
        clamp(34px, 4vw, 52px);

    line-height:
        1.15;

    letter-spacing:
        -1.5px;

    font-weight:
        800;
}

.products-heading h2 span {

    display:
        block;

    color:
        var(--orange);
}

.products-heading p {

    max-width:
        650px;

    margin:
        20px auto 0;

    color:
        #6d6d6d;

    font-size:
        15px;

    line-height:
        1.8;
}

/* ==================================================
   PRODUCT GRID
================================================== */

.products-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        25px;
}

/* ==================================================
   PRODUCT CARD
================================================== */

.product-card {

    position:
        relative;

    background:
        #ffffff;

    border:
        1px solid #eeeeee;

    border-radius:
        16px;

    overflow:
        hidden;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.product-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.11);
}

/* ==================================================
   PRODUCT IMAGE
================================================== */

.product-image {

    position:
        relative;

    width:
        100%;

    height:
        235px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        20px;

    background:
        #ffffff;

    overflow:
        hidden;
}

.product-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

    transition:
        transform 0.4s ease;
}

.product-card:hover .product-image img {

    transform:
        scale(1.05);
}

/* ==================================================
   PRODUCT NUMBER
================================================== */

.product-number {

    position:
        absolute;

    top:
        14px;

    left:
        14px;

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        var(--orange);

    color:
        #ffffff;

    font-size:
        11px;

    font-weight:
        800;
}

/* ==================================================
   PRODUCT CONTENT
================================================== */

.product-content {

    padding:
        24px 22px 25px;
}

.product-content h3 {

    min-height:
        48px;

    margin:
        0;

    color:
        #252525;

    font-size:
        17px;

    line-height:
        1.4;

    font-weight:
        750;
}

.product-content p {

    min-height:
        84px;

    margin:
        12px 0 20px;

    color:
        #777777;

    font-size:
        12px;

    line-height:
        1.7;
}

/* ==================================================
   PRODUCT DETAILS BUTTON
================================================== */

.product-details-btn {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    color:
        var(--orange);

    font-size:
        12px;

    font-weight:
        800;

    transition:
        all 0.3s ease;
}

.product-details-btn span {

    font-size:
        17px;

    transition:
        transform 0.3s ease;
}

.product-details-btn:hover {

    color:
        var(--orange-dark);
}

.product-details-btn:hover span {

    transform:
        translateX(5px);
}

/* ==================================================
   VIEW ALL MACHINES
================================================== */

.products-view-all {

    display:
        flex;

    justify-content:
        center;

    margin-top:
        50px;
}

.view-all-machines-btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    min-width:
        190px;

    padding:
        15px 25px;

    border-radius:
        30px;

    background:
        var(--orange);

    color:
        #ffffff;

    font-size:
        13px;

    font-weight:
        750;

    box-shadow:
        0 10px 25px rgba(255, 121, 0, 0.20);

    transition:
        all 0.3s ease;
}

.view-all-machines-btn span {

    font-size:
        18px;

    transition:
        transform 0.3s ease;
}

.view-all-machines-btn:hover {

    background:
        var(--orange-dark);

    color:
        #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px rgba(255, 121, 0, 0.30);
}

.view-all-machines-btn:hover span {

    transform:
        translateX(5px);
}

/* ==================================================
   FULL PRODUCT RANGE (EXPANDED)
================================================== */

.full-range {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #eaeaea;
}

.range-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.range-top-heading .products-label {
    display: block;
    margin-bottom: 8px;
}

.range-top-heading h3 {
    margin: 0;
    color: #222222;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter {
    padding: 10px 18px;
    border: 1px solid #e2e2e2;
    border-radius: 30px;
    background: #ffffff;
    color: #555555;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.filter.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #ffffff;
}

/* FALLBACK FOR MISSING PRODUCT IMAGES */

.product-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    background: #f3f3f3;
    border-radius: 10px;
    color: #999999;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

@media (max-width: 600px) {

    .full-range {
        margin-top: 45px;
        padding-top: 35px;
    }

    .range-top {
        align-items: flex-start;
    }

    .range-top-heading h3 {
        font-size: 22px;
    }

    .filters {
        gap: 8px;
    }

    .filter {
        padding: 8px 14px;
        font-size: 11px;
    }

}

/* ==================================================
   LARGE TABLET
================================================== */

@media (max-width: 1150px) {

    .products-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 850px) {

    .products-section {

        padding:
            85px 0;
    }

    .products-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            20px;
    }

    .product-image {

        height:
            220px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .products-section {

        padding:
            70px 0;
    }

    .products-container {

        width:
            90%;
    }

    .products-heading {

        margin-bottom:
            40px;
    }

    .products-heading h2 {

        font-size:
            34px;

        letter-spacing:
            -1px;
    }

    .products-heading p {

        font-size:
            14px;
    }

    .products-grid {

        grid-template-columns:
            1fr;

        gap:
            20px;
    }

    .product-image {

        height:
            250px;
    }

    .product-content h3 {

        min-height:
            auto;
    }

    .product-content p {

        min-height:
            auto;
    }

}

/* ==================================================
   INDUSTRIES SECTION
================================================== */

.industries-section {

    position:
        relative;

    padding:
        110px 0;

    background:
        #ffffff;

    overflow:
        hidden;
}

/* ==================================================
   INDUSTRIES CONTAINER
================================================== */

.industries-container {

    width:
        92%;

    max-width:
        1400px;

    margin:
        0 auto;
}

/* ==================================================
   INDUSTRIES HEADING
================================================== */

.industries-heading {

    max-width:
        780px;

    margin:
        0 auto 55px;

    text-align:
        center;
}

.industries-label {

    margin-bottom:
        14px;

    color:
        var(--orange);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        1.8px;
}

.industries-heading h2 {

    margin:
        0;

    color:
        #222222;

    font-size:
        clamp(34px, 4vw, 52px);

    line-height:
        1.15;

    letter-spacing:
        -1.5px;

    font-weight:
        800;
}

.industries-heading h2 span {

    display:
        block;

    color:
        var(--orange);
}

.industries-heading p {

    max-width:
        680px;

    margin:
        20px auto 0;

    color:
        #6d6d6d;

    font-size:
        15px;

    line-height:
        1.8;
}

/* ==================================================
   INDUSTRIES GRID
================================================== */

.industries-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        20px;
}

/* ==================================================
   INDUSTRY CARD
================================================== */

.industry-card {

    position:
        relative;

    display:
        flex;

    align-items:
        flex-start;

    gap:
        17px;

    min-height:
        175px;

    padding:
        25px;

    border:
        1px solid #eeeeee;

    border-radius:
        15px;

    background:
        #ffffff;

    color:
        inherit;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.045);

    overflow:
        hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.industry-card::before {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        0;

    width:
        100%;

    height:
        3px;

    background:
        var(--orange);

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform 0.3s ease;
}

.industry-card:hover {

    color:
        inherit;

    transform:
        translateY(-6px);

    border-color:
        #ffd8b8;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.09);
}

.industry-card:hover::before {

    transform:
        scaleX(1);
}

/* ==================================================
   INDUSTRY ICON
================================================== */

.industry-icon {

    flex-shrink:
        0;

    width:
        52px;

    height:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        12px;

    background:
        #fff2e7;

    color:
        var(--orange);

    font-size:
        24px;

    font-weight:
        700;

    transition:
        all 0.3s ease;
}

.industry-card:hover .industry-icon {

    background:
        var(--orange);

    color:
        #ffffff;

    transform:
        rotate(-4deg);
}

/* ==================================================
   INDUSTRY CONTENT
================================================== */

.industry-content {

    flex:
        1;
}

.industry-content h3 {

    margin:
        2px 0 8px;

    color:
        #252525;

    font-size:
        17px;

    line-height:
        1.3;

    font-weight:
        750;
}

.industry-content p {

    margin:
        0;

    color:
        #777777;

    font-size:
        11.5px;

    line-height:
        1.65;
}

/* ==================================================
   INDUSTRY LINK
================================================== */

.industry-link {

    display:
        inline-block;

    margin-top:
        12px;

    color:
        var(--orange);

    font-size:
        11px;

    font-weight:
        800;

    transition:
        transform 0.3s ease;
}

.industry-card:hover .industry-link {

    transform:
        translateX(4px);
}

/* ==================================================
   CURRENT INDUSTRY
================================================== */

.industry-active {

    border:
        1px solid #ffd2ae;

    background:
        linear-gradient(145deg,
            #fffaf6,
            #ffffff);
}

.industry-active .industry-link {

    font-weight:
        800;
}

/* ==================================================
   MORE INDUSTRIES
================================================== */

.industry-more {

    background:
        #fafafa;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .industries-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }

}

/* ==================================================
   SMALL TABLET
================================================== */

@media (max-width: 800px) {

    .industries-section {

        padding:
            85px 0;
    }

    .industries-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .industries-section {

        padding:
            70px 0;
    }

    .industries-container {

        width:
            90%;
    }

    .industries-heading {

        margin-bottom:
            40px;
    }

    .industries-heading h2 {

        font-size:
            34px;

        letter-spacing:
            -1px;
    }

    .industries-heading p {

        font-size:
            14px;
    }

    .industries-grid {

        grid-template-columns:
            1fr;

        gap:
            15px;
    }

    .industry-card {

        min-height:
            auto;

        padding:
            22px;
    }

}

/* ==================================================
   EXHIBITIONS SECTION
================================================== */

.exhibitions-section {

    position:
        relative;

    padding:
        110px 0;

    background:
        #f7f7f7;

    overflow:
        hidden;
}

/* ==================================================
   EXHIBITIONS CONTAINER
================================================== */

.exhibitions-container {

    width:
        92%;

    max-width:
        1400px;

    margin:
        0 auto;
}

/* ==================================================
   EXHIBITIONS HEADING
================================================== */

.exhibitions-heading {

    max-width:
        760px;

    margin:
        0 auto 55px;

    text-align:
        center;
}

.exhibitions-label {

    margin-bottom:
        14px;

    color:
        var(--orange);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        1.8px;
}

.exhibitions-heading h2 {

    margin:
        0;

    color:
        #222222;

    font-size:
        clamp(34px, 4vw, 52px);

    line-height:
        1.15;

    letter-spacing:
        -1.5px;

    font-weight:
        800;
}

.exhibitions-heading h2 span {

    display:
        block;

    color:
        var(--orange);
}

.exhibitions-heading p {

    max-width:
        670px;

    margin:
        20px auto 0;

    color:
        #6d6d6d;

    font-size:
        15px;

    line-height:
        1.8;
}

/* ==================================================
   EXHIBITION GRID
================================================== */

.exhibitions-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        22px;
}

/* ==================================================
   EXHIBITION CARD
================================================== */

.exhibition-card {

    background:
        #ffffff;

    border:
        1px solid #eeeeee;

    border-radius:
        16px;

    overflow:
        hidden;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.exhibition-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.11);
}

/* ==================================================
   EXHIBITION IMAGE BUTTON
================================================== */

.exhibition-image-btn {

    position:
        relative;

    display:
        block;

    width:
        100%;

    height:
        250px;

    padding:
        0;

    border:
        0;

    background:
        #eeeeee;

    cursor:
        pointer;

    overflow:
        hidden;
}

.exhibition-image-btn img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    display:
        block;

    transition:
        transform 0.5s ease;
}

.exhibition-card:hover .exhibition-image-btn img {

    transform:
        scale(1.06);
}

/* ==================================================
   IMAGE OVERLAY
================================================== */

.exhibition-overlay {

    position:
        absolute;

    inset:
        0;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    background:
        rgba(20, 20, 20, 0.55);

    color:
        #ffffff;

    opacity:
        0;

    transition:
        opacity 0.3s ease;
}

.exhibition-image-btn:hover .exhibition-overlay {

    opacity:
        1;
}

.exhibition-zoom {

    width:
        45px;

    height:
        45px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(255, 255, 255, 0.8);

    border-radius:
        50%;

    font-size:
        28px;

    line-height:
        1;

    font-weight:
        300;
}

.exhibition-overlay>span:last-child {

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        0.5px;
}

/* ==================================================
   EXHIBITION CAPTION
================================================== */

.exhibition-caption {

    padding:
        18px 20px 20px;
}

.exhibition-caption strong {

    display:
        block;

    color:
        #282828;

    font-size:
        15px;

    font-weight:
        750;
}

.exhibition-caption span {

    display:
        block;

    margin-top:
        5px;

    color:
        #888888;

    font-size:
        11px;
}

/* ==================================================
   EXHIBITION NOTE
================================================== */

.exhibitions-note {

    max-width:
        650px;

    margin:
        45px auto 0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    text-align:
        center;
}

.exhibitions-note-icon {

    flex-shrink:
        0;

    width:
        28px;

    height:
        28px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        #fff0e3;

    color:
        var(--orange);

    font-weight:
        800;
}

.exhibitions-note p {

    margin:
        0;

    color:
        #777777;

    font-size:
        12px;

    line-height:
        1.6;
}

/* ==================================================
   EXHIBITION LIGHTBOX
================================================== */

.exhibition-lightbox {

    position:
        fixed;

    inset:
        0;

    z-index:
        99999;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        30px;

    background:
        rgba(0, 0, 0, 0.88);

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.exhibition-lightbox.active {

    opacity:
        1;

    visibility:
        visible;

    pointer-events:
        auto;
}

/* ==================================================
   LIGHTBOX CONTENT
================================================== */

.lightbox-content {

    position:
        relative;

    max-width:
        1100px;

    width:
        100%;

    max-height:
        90vh;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;
}

.lightbox-content img {

    display:
        block;

    max-width:
        100%;

    max-height:
        78vh;

    object-fit:
        contain;

    border-radius:
        8px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.45);
}

/* ==================================================
   LIGHTBOX TITLE
================================================== */

.lightbox-title {

    margin-top:
        15px;

    color:
        #ffffff;

    font-size:
        14px;

    font-weight:
        600;

    text-align:
        center;
}

/* ==================================================
   LIGHTBOX CLOSE
================================================== */

.lightbox-close {

    position:
        fixed;

    top:
        25px;

    right:
        30px;

    z-index:
        100000;

    width:
        45px;

    height:
        45px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        0;

    border:
        1px solid rgba(255, 255, 255, 0.5);

    border-radius:
        50%;

    background:
        rgba(0, 0, 0, 0.35);

    color:
        #ffffff;

    font-size:
        30px;

    font-weight:
        300;

    line-height:
        1;

    cursor:
        pointer;

    transition:
        all 0.25s ease;
}

.lightbox-close:hover {

    background:
        var(--orange);

    border-color:
        var(--orange);

    transform:
        rotate(90deg);
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {

    .exhibitions-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .exhibitions-section {

        padding:
            70px 0;
    }

    .exhibitions-container {

        width:
            90%;
    }

    .exhibitions-heading {

        margin-bottom:
            40px;
    }

    .exhibitions-heading h2 {

        font-size:
            34px;

        letter-spacing:
            -1px;
    }

    .exhibitions-heading p {

        font-size:
            14px;
    }

    .exhibitions-grid {

        grid-template-columns:
            1fr;

        gap:
            18px;
    }

    .exhibition-image-btn {

        height:
            240px;
    }

    .exhibition-lightbox {

        padding:
            20px;
    }

    .lightbox-content img {

        max-height:
            75vh;
    }

    .lightbox-close {

        top:
            15px;

        right:
            15px;

        width:
            40px;

        height:
            40px;
    }

}

/* ==================================================
   CUSTOMERS / GROWTH PARTNERS SECTION
================================================== */

.customers-section {

    position: relative;

    padding: 105px 0 90px;

    background: #ffffff;

    overflow: hidden;
}

/* ==================================================
   CONTAINER
================================================== */

.customers-container {

    width: 92%;

    max-width: 1500px;

    margin: 0 auto;
}

/* ==================================================
   HEADING
================================================== */

.customers-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.customers-label {

    margin-bottom: 14px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.customers-heading h2 {

    margin: 0;

    color: #222222;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.customers-heading h2 span {

    display: block;

    color: var(--orange);
}

.customers-heading p {

    max-width: 680px;

    margin: 20px auto 0;

    color: #707070;

    font-size: 15px;

    line-height: 1.8;
}

/* ==================================================
   MARQUEE OUTER AREA
================================================== */

.customers-marquee {

    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 15px 0 25px;
}

/* ==================================================
   LEFT / RIGHT FADE
================================================== */

.customers-marquee::before,
.customers-marquee::after {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    width: 130px;

    z-index: 3;

    pointer-events: none;
}

.customers-marquee::before {

    left: 0;

    background:
        linear-gradient(to right,
            #ffffff,
            rgba(255, 255, 255, 0));
}

.customers-marquee::after {

    right: 0;

    background:
        linear-gradient(to left,
            #ffffff,
            rgba(255, 255, 255, 0));
}

/* ==================================================
   MOVING TRACK
================================================== */

.customers-track {

    display: flex;

    align-items: center;

    width: max-content;

    animation:
        customersScroll 55s linear infinite;
}

/* ==================================================
   CUSTOMER ITEM
================================================== */

.customer-item {

    flex-shrink: 0;

    min-width: 190px;

    height: 105px;

    margin-right: 20px;

    padding: 20px 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.customer-item:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.09);
}

/* ==================================================
   CUSTOMER NAME
================================================== */

.customer-item span {

    color: #3c3c3c;

    font-size: 19px;

    font-weight: 750;

    text-align: center;

    white-space: nowrap;
}

/* ==================================================
   MARQUEE ANIMATION
================================================== */

@keyframes customersScroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

/* ==================================================
   TRUST STATISTICS
================================================== */

.customer-statistics {

    max-width: 850px;

    margin: 45px auto 0;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fffaf6;

    border: 1px solid #ffe0c6;

    border-radius: 15px;
}

.customer-stat {

    flex: 1;

    text-align: center;
}

.customer-stat strong {

    display: block;

    color: var(--orange);

    font-size: 30px;

    line-height: 1;

    font-weight: 800;
}

.customer-stat span {

    display: block;

    margin-top: 8px;

    color: #666666;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.4px;
}

/* ==================================================
   STAT DIVIDERS
================================================== */

.customer-stat-divider {

    width: 1px;

    height: 45px;

    background: #eadfd7;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .customer-item {

        min-width: 170px;

        height: 95px;
    }

    .customer-item span {

        font-size: 17px;
    }

    .customers-marquee::before,
    .customers-marquee::after {

        width: 80px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .customers-section {

        padding: 75px 0;
    }

    .customers-container {

        width: 90%;
    }

    .customers-heading {

        margin-bottom: 35px;
    }

    .customers-heading h2 {

        font-size: 34px;

        letter-spacing: -1px;
    }

    .customers-heading p {

        font-size: 14px;
    }

    .customer-item {

        min-width: 150px;

        height: 85px;

        margin-right: 14px;

        padding: 15px 20px;
    }

    .customer-item span {

        font-size: 15px;
    }

    .customers-track {

        animation-duration: 45s;
    }

    .customers-marquee::before,
    .customers-marquee::after {

        width: 45px;
    }

    .customer-statistics {

        flex-direction: column;

        gap: 20px;

        padding: 25px 20px;
    }

    .customer-stat {

        width: 100%;
    }

    .customer-stat-divider {

        width: 60px;

        height: 1px;
    }

}

/* ==================================================
   INQUIRY / CONTACT SECTION
================================================== */

.inquiry-section {

    position: relative;

    padding: 110px 0;

    background:
        #f8f8f8;

    overflow: hidden;
}

/* ==================================================
   CONTAINER
================================================== */

.inquiry-container {

    width: 92%;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 75px;

    align-items: center;
}

/* ==================================================
   LEFT CONTENT
================================================== */

.inquiry-content {

    max-width: 520px;
}

.inquiry-label {

    margin-bottom: 15px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.inquiry-content h2 {

    margin: 0;

    color: #242424;

    font-size:
        clamp(36px, 4vw, 52px);

    line-height: 1.12;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.inquiry-content h2 span {

    display: block;

    color: var(--orange);
}

.inquiry-content>p {

    margin: 22px 0 35px;

    color: #6d6d6d;

    font-size: 15px;

    line-height: 1.8;
}

/* ==================================================
   CONTACT DETAILS
================================================== */

.inquiry-contact-list {

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.inquiry-contact-item {

    display: flex;

    align-items: center;

    gap: 15px;
}

.inquiry-contact-icon {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #ffffff;

    color: var(--orange);

    border: 1px solid #eeeeee;

    font-size: 20px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.04);
}

.inquiry-contact-item small {

    display: block;

    margin-bottom: 4px;

    color: #999999;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.inquiry-contact-item strong {

    display: block;

    color: #333333;

    font-size: 14px;

    font-weight: 700;
}

/* ==================================================
   FORM BOX
================================================== */

.inquiry-form-box {

    padding: 42px;

    background: #ffffff;

    border-radius: 20px;

    border: 1px solid #eeeeee;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.07);
}

/* ==================================================
   FORM HEADING
================================================== */

.inquiry-form-heading {

    margin-bottom: 28px;
}

.inquiry-form-heading h3 {

    margin: 0 0 7px;

    color: #252525;

    font-size: 25px;

    font-weight: 800;
}

.inquiry-form-heading p {

    margin: 0;

    color: #888888;

    font-size: 13px;
}

/* ==================================================
   FORM ROW
================================================== */

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;
}

/* ==================================================
   FORM GROUP
================================================== */

.form-group {

    margin-bottom: 18px;
}

.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #444444;

    font-size: 12px;

    font-weight: 700;
}

/* ==================================================
   INPUTS
================================================== */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 13px 14px;

    color: #333333;

    background: #fafafa;

    border: 1px solid #e5e5e5;

    border-radius: 8px;

    outline: none;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    background: #ffffff;

    border-color:
        var(--orange);

    box-shadow:
        0 0 0 3px rgba(255, 126, 0, 0.09);
}

.form-group textarea {

    resize: vertical;

    min-height: 120px;
}

/* ==================================================
   SUBMIT BUTTON
================================================== */

.inquiry-submit-btn {

    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-top: 4px;

    padding: 14px 22px;

    border: none;

    border-radius: 9px;

    background:
        var(--orange);

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(255, 126, 0, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.inquiry-submit-btn:hover {

    background:
        #e96f00;

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px rgba(255, 126, 0, 0.30);
}

.inquiry-submit-arrow {

    font-size: 18px;

    line-height: 1;
}

/* ==================================================
   FORM NOTE
================================================== */

.inquiry-form-note {

    margin: 13px 0 0;

    color: #999999;

    text-align: center;

    font-size: 10px;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {

    .inquiry-container {

        grid-template-columns:
            1fr;

        gap: 50px;
    }

    .inquiry-content {

        max-width: 700px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .inquiry-section {

        padding: 75px 0;
    }

    .inquiry-container {

        width: 90%;

        gap: 38px;
    }

    .inquiry-content h2 {

        font-size: 35px;

        letter-spacing: -1px;
    }

    .inquiry-form-box {

        padding: 25px 20px;

        border-radius: 15px;
    }

    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;
    }

    .inquiry-form-heading h3 {

        font-size: 22px;
    }

}

/* ==================================================
   LOCATION / MAP SECTION
================================================== */

.location-info {

    width: 92%;

    max-width: 1400px;

    margin: 0 auto;

    padding: 45px 0 30px;

    display: flex;

    align-items: flex-start;

    gap: 20px;

}

.location-info-icon {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #fff1e5;

    color: var(--orange);

    font-size: 22px;

}

.location-info h3 {

    margin: 0 0 8px;

    color: #222222;

    font-size: 20px;

    font-weight: 800;

}

.location-info p {

    margin: 0 0 15px;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;

}

.location-map-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 20px;

    border-radius: 8px;

    background: var(--orange);

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.3s ease;

}

.location-map-btn:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);

}

.location-map {

    width: 92%;

    max-width: 1400px;

    margin: 0 auto 60px;

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

}

.location-map iframe {

    display: block;

    width: 100%;

    height: 420px;

    border: 0;

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .location-info {

        width: 90%;

        padding: 35px 0 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

    .location-map {

        width: 90%;

        margin-bottom: 45px;

    }

    .location-map iframe {

        height: 300px;

    }

}

/* ==================================================
   FOOTER SECTION
================================================== */

.site-footer {

    position: relative;

    background: #171717;

    color: #ffffff;

    overflow: hidden;
}

/* ==================================================
   ORANGE TOP LINE
================================================== */

.site-footer::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: var(--orange);
}

/* ==================================================
   FOOTER CONTAINER
================================================== */

.footer-container {

    width: 92%;

    max-width: 1250px;

    margin: 0 auto;

    padding: 75px 0 65px;

    display: grid;

    grid-template-columns:
        1.45fr 0.8fr 1fr 1.25fr;

    gap: 50px;
}

/* ==================================================
   COMPANY
================================================== */

.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #ffffff;

    text-decoration: none;
}

.footer-logo-mark {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: var(--orange);

    color: #ffffff;

    font-size: 24px;

    font-weight: 900;
}

.footer-logo-img {

    height: 60px;

    max-height: 60px;

    width: auto;

    max-width: 200px;

    object-fit: contain;

}

.footer-logo strong {

    display: block;

    font-size: 23px;

    line-height: 1;
}

.footer-logo small {

    display: block;

    margin-top: 5px;

    color: #a9a9a9;

    font-size: 11px;

    letter-spacing: 0.4px;
}

.footer-company>p {

    max-width: 350px;

    margin: 0;

    color: #a9a9a9;

    font-size: 13px;

    line-height: 1.8;
}

/* ==================================================
   FOOTER HEADINGS
================================================== */

.footer-column h3 {

    position: relative;

    margin: 0 0 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 750;
}

.footer-column h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 32px;

    height: 2px;

    background: var(--orange);
}

/* ==================================================
   FOOTER LINKS
================================================== */

.footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;
}

.footer-column li {

    margin-bottom: 12px;
}

.footer-column li a {

    color: #a9a9a9;

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-column li a:hover {

    color: var(--orange);

    padding-left: 5px;
}

/* ==================================================
   SOCIAL ICONS
================================================== */

.footer-social {

    display: flex;

    gap: 9px;

    margin-top: 25px;
}

.footer-social a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #3c3c3c;

    border-radius: 8px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.footer-social a:hover {

    background: var(--orange);

    border-color: var(--orange);

    transform:
        translateY(-3px);
}

/* ==================================================
   CONTACT
================================================== */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;
}

.footer-contact-item>span {

    flex-shrink: 0;

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);

    font-size: 17px;
}

.footer-contact-item p {

    margin: 0;

    color: #a9a9a9;

    font-size: 13px;

    line-height: 1.7;
}

.footer-contact-item a {

    padding-top: 4px;

    color: #a9a9a9;

    text-decoration: none;

    font-size: 13px;

    transition: color 0.25s ease;
}

.footer-contact-item a:hover {

    color: var(--orange);
}

/* ==================================================
   FOOTER BOTTOM
================================================== */

.footer-bottom {

    border-top:
        1px solid #303030;
}

.footer-bottom-container {

    width: 92%;

    max-width: 1250px;

    min-height: 65px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

    margin: 0;

    color: #777777;

    font-size: 11px;

    line-height: 1.6;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .footer-container {

        grid-template-columns:
            1.3fr 1fr 1fr;

        gap: 45px;
    }

    .footer-company {

        grid-column: 1 / -1;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .footer-container {

        width: 88%;

        padding: 60px 0 45px;

        grid-template-columns: 1fr;

        gap: 38px;
    }

    .footer-company {

        grid-column: auto;
    }

    .footer-company>p {

        max-width: 100%;
    }

    .footer-bottom-container {

        width: 88%;

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

    .footer-logo-img {

        height: 50px;

        max-height: 50px;

        max-width: 170px;

    }

}

/* ==================================================
   WHATSAPP FLOATING WIDGET
================================================== */

.whatsapp-widget {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 9999;
}

/* ==================================================
   FLOATING BUTTON
================================================== */

.whatsapp-float-btn {

    position: relative;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.whatsapp-float-btn:hover {

    transform:
        scale(1.08);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.25);
}

/* ==================================================
   WHATSAPP ICON
================================================== */

.whatsapp-icon {

    position: relative;

    z-index: 2;

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 3px solid #ffffff;

    border-radius: 50%;

    font-size: 15px;

    font-weight: 900;
}

/* ==================================================
   PULSE
================================================== */

.whatsapp-pulse {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border: 2px solid #25d366;

    animation:
        whatsappPulse 2s infinite;

}

@keyframes whatsappPulse {

    0% {

        transform: scale(1);

        opacity: 0.8;

    }

    70% {

        transform: scale(1.35);

        opacity: 0;

    }

    100% {

        transform: scale(1.35);

        opacity: 0;

    }

}

/* ==================================================
   POPUP
================================================== */

.whatsapp-popup {

    position: absolute;

    right: 0;

    bottom: 75px;

    width: 310px;

    padding: 22px;

    display: flex;

    align-items: flex-start;

    gap: 14px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 15px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.16);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(12px) scale(0.96);

    transform-origin:
        bottom right;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

/* ==================================================
   POPUP ACTIVE
================================================== */

.whatsapp-popup.active {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0) scale(1);
}

/* ==================================================
   POPUP CLOSE
================================================== */

.whatsapp-popup-close {

    position: absolute;

    top: 8px;

    right: 10px;

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    background: transparent;

    color: #999999;

    font-size: 20px;

    cursor: pointer;

    line-height: 1;
}

.whatsapp-popup-close:hover {

    color: #333333;
}

/* ==================================================
   POPUP ICON
================================================== */

.whatsapp-popup-icon {

    flex-shrink: 0;

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    font-size: 18px;

    font-weight: 900;
}

/* ==================================================
   POPUP CONTENT
================================================== */

.whatsapp-popup-content {

    padding-right: 10px;
}

.whatsapp-popup-content strong {

    display: block;

    margin-bottom: 5px;

    color: #292929;

    font-size: 15px;

    font-weight: 800;
}

.whatsapp-popup-content p {

    margin: 0 0 13px;

    color: #777777;

    font-size: 12px;

    line-height: 1.6;
}

/* ==================================================
   POPUP LINK
================================================== */

.whatsapp-popup-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border-radius: 7px;

    background: #25d366;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 750;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.whatsapp-popup-content a:hover {

    background: #1fba59;

    transform:
        translateY(-1px);
}

.whatsapp-popup-content a span {

    font-size: 15px;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .whatsapp-widget {

        right: 17px;

        bottom: 17px;
    }

    .whatsapp-float-btn {

        width: 55px;

        height: 55px;
    }

    .whatsapp-icon {

        width: 29px;

        height: 29px;

        font-size: 13px;
    }

    .whatsapp-popup {

        right: -2px;

        bottom: 68px;

        width: 285px;

        padding: 20px;
    }

}

/* =========================================================
   PRODUCT DETAILS MODAL
========================================================= */

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.72);

    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.product-modal.active {
    display: flex;
}

/* =========================================================
   MODAL BOX
========================================================= */

.product-modal-box {
    position: relative;

    width: min(1100px, 100%);

    /* Keep modal inside the screen */
    max-height: 90vh;

    /* Allow the modal itself to scroll */
    overflow-y: auto;
    overflow-x: hidden;

    display: grid;
    grid-template-columns: 42% 58%;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   CLOSE BUTTON
========================================================= */

.product-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 10;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: #222222;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: 0.25s ease;
}

.product-modal-close:hover {
    background: #ff6b00;
    color: #ffffff;
    transform: rotate(90deg);
}

/* =========================================================
   MODAL IMAGE
========================================================= */

.modal-image {
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 45px;
    background: #f7f7f7;
}

.modal-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;

    object-fit: contain;
    display: block;
}

.modal-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    border-radius: 15px;
    background: #eeeeee;
    color: #555555;
}

.modal-image-placeholder span {
    font-size: 28px;
    font-weight: 800;
}

.modal-image-placeholder small {
    margin-top: 8px;
    font-size: 13px;
}

/* =========================================================
   MODAL CONTENT
========================================================= */

.modal-content {
    min-height: 0;
    padding: 55px 55px 45px;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-category {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 13px;

    background: #fff1e6;
    color: #ff6b00;
    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-content h2 {
    margin: 0 45px 25px 0;
    color: #151515;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.modal-description h3,
.modal-section h3 {
    margin: 0 0 12px;
    color: #151515;
    font-size: 18px;
    font-weight: 700;
}

.modal-description p {
    margin: 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   MODAL SECTIONS
========================================================= */

.modal-section {
    margin-top: 28px;
}

/* =========================================================
   APPLICATIONS
========================================================= */

.modal-applications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-applications span {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #444444;
    font-size: 13px;
}

/* =========================================================
   SPECIFICATIONS
========================================================= */

.modal-specs {
    border: 1px solid #eeeeee;
    border-radius: 10px;
    overflow: hidden;
}

.modal-spec-row {
    display: grid;
    grid-template-columns: 42% 58%;
    border-bottom: 1px solid #eeeeee;
}

.modal-spec-row:last-child {
    border-bottom: none;
}

.modal-spec-label {
    padding: 11px 14px;
    background: #f8f8f8;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
}

.modal-spec-value {
    padding: 11px 14px;
    color: #555555;
    font-size: 13px;
    line-height: 1.5;
}

/* =========================================================
   ACTION BUTTONS
========================================================= */

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.modal-quote-btn,
.modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 13px 22px;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.modal-quote-btn {
    background: #ff6b00;
    color: #ffffff;
}

.modal-quote-btn:hover {
    background: #e85f00;
    transform: translateY(-2px);
}

.modal-whatsapp-btn {
    background: #eeeeee;
    color: #222222;
}

.modal-whatsapp-btn:hover {
    background: #dddddd;
    transform: translateY(-2px);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {
    .product-modal {
        padding: 15px;
    }

    .product-modal-box {
        grid-template-columns: 1fr;
        max-height: 94vh;
    }

    .modal-image {
        min-height: 300px;
        padding: 30px;
    }

    .modal-image-placeholder {
        min-height: 250px;
    }

    .modal-content {
        padding: 35px 25px 30px;
    }

    .modal-content h2 {
        font-size: 28px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {
    .product-modal {
        padding: 8px;
    }

    .product-modal-box {
        border-radius: 14px;
    }

    .modal-image {
        min-height: 240px;
        padding: 20px;
    }

    .modal-content {
        padding: 30px 18px 25px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-spec-row {
        grid-template-columns: 1fr;
    }

    .modal-spec-label {
        padding-bottom: 5px;
    }

    .modal-spec-value {
        padding-top: 5px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-quote-btn,
    .modal-whatsapp-btn {
        width: 100%;
    }
}