/* =========================================================
   HEXAPLAST PVC SOCKETING MACHINE WEBSITE
   CLEAN / PREMIUM / INDUSTRIAL
========================================================= */

:root {

    --orange: #f58220;
    --orange-dark: #db6d12;
    --orange-light: #fff4e9;

    --black: #202020;
    --heading: #292929;
    --text: #646464;
    --muted: #888888;

    --white: #ffffff;
    --light: #f7f7f5;
    --border: #e8e8e5;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 38px;

    --shadow:
        0 15px 45px rgba(20, 20, 20, .07);

    --shadow-hover:
        0 22px 60px rgba(20, 20, 20, .12);

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    background: var(--white);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;

}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


/* =========================================================
   CONTAINER
========================================================= */

.site-container {

    width: 100%;

    max-width: 100%;

    margin: 0 auto;

    padding-left: 5%;

    padding-right: 5%;

}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {

    background: var(--black);

    color: #d6d6d6;

    font-size: 12px;

}


.topbar-inner {

    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.topbar-left span,
.topbar-right a {

    display: flex;

    align-items: center;

    gap: 8px;

}


.topbar-right {

    display: flex;

    gap: 28px;

}


.topbar i {

    color: var(--orange);

}


/* =========================================================
   HEADER
========================================================= */

.main-header {

    background:
        rgba(255, 255, 255, .96);

    backdrop-filter:
        blur(15px);

    position: sticky;

    top: 0;

    z-index: 1000;

    border-bottom:
        1px solid rgba(0, 0, 0, .07);

}


.header-inner {

    min-height: 92px;

    display: flex;

    align-items: center;

}


.logo {

    flex-shrink: 0;

}


.logo img {

    width: 230px;

    height: auto;

}


.desktop-nav {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 29px;

}


.desktop-nav>a,
.nav-dropdown>a {

    font-size: 13px;

    font-weight: 600;

    color: var(--heading);

    transition: .25s ease;

}


.desktop-nav>a:hover,
.nav-dropdown>a:hover {

    color: var(--orange);

}


.nav-dropdown {

    position: relative;

}


.nav-dropdown>a {

    display: flex;

    align-items: center;

    gap: 6px;

}


.nav-dropdown i {

    font-size: 8px;

}


.dropdown-menu {

    position: absolute;

    top: calc(100% + 24px);

    left: -20px;

    width: 285px;

    background: white;

    padding: 12px;

    border-radius: 18px;

    box-shadow: var(--shadow-hover);

    border: 1px solid var(--border);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition: .25s ease;

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dropdown-menu a {

    display: block;

    padding: 12px 14px;

    border-radius: 10px;

    font-size: 12px;

    line-height: 1.5;

    color: var(--text);

}


.dropdown-menu a:hover {

    background: var(--orange-light);

    color: var(--orange);

}


.header-button {

    margin-left: 30px;

    background: var(--orange);

    color: white;

    padding: 12px 20px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 9px;

    transition: .25s ease;

}


.header-button:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);

}


.mobile-menu-button {

    display: none;

    border: 0;

    background: none;

    font-size: 22px;

    color: var(--heading);

}


.mobile-menu {

    display: none;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    padding: 90px 0 110px;

    background:

        radial-gradient(circle at 85% 15%,
            rgba(245, 130, 32, .09),
            transparent 32%),

        linear-gradient(180deg,
            #ffffff,
            #fafaf9);

}


.hero-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 20px;

}


.eyebrow span {

    width: 32px;

    height: 2px;

    background: var(--orange);

}


.hero h1 {

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(40px, 5vw, 68px);

    line-height: 1.08;

    color: var(--heading);

    font-weight: 600;

    letter-spacing: -2px;

}


.hero h1 span {

    color: var(--orange);

}


.hero-text {

    max-width: 620px;

    margin-top: 25px;

    font-size: 16px;

    color: var(--text);

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;

}


.btn {

    min-height: 48px;

    padding:
        13px 23px;

    border-radius: 30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 700;

    transition: .25s ease;

}


.btn-primary {

    background: var(--orange);

    color: white;

}


.btn-primary:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);

}


.btn-outline {

    border: 1px solid #cfcfcd;

    color: var(--heading);

    background: white;

}


.btn-outline:hover {

    border-color: var(--orange);

    color: var(--orange);

    transform: translateY(-2px);

}


.hero-points {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 27px;

}


.hero-points div {

    font-size: 11px;

    font-weight: 600;

    color: var(--muted);

}


.hero-points i {

    color: var(--orange);

    margin-right: 5px;

}


.hero-visual {

    position: relative;

}


.hero-image-wrap {

    padding: 18px;

    background: #f3f3f1;

    border-radius: var(--radius-xl);

    overflow: hidden;

}


.hero-image-wrap img {

    width: 100%;

    height: 530px;

    object-fit: contain;

    background: white;

    border-radius: 28px;

}











/* =========================================================
   TRUST
========================================================= */

.trust-strip {

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    background: #fcfcfb;

}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.trust-item {

    padding: 26px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-right: 1px solid var(--border);

}


.trust-item:last-child {

    border-right: 0;

}


.trust-icon {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    border-radius: 13px;

    background: var(--orange-light);

    color: var(--orange);

    display: grid;

    place-items: center;

}


.trust-item strong,
.trust-item span {

    display: block;

}


.trust-item strong {

    color: var(--heading);

    font-size: 17px;

}


.trust-item span {

    color: var(--muted);

    font-size: 10px;

}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {

    padding: 105px 0;

}


.section-label {

    color: var(--orange);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;

}


.section-heading {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: end;

    gap: 50px;

    margin-bottom: 50px;

}


.section-heading h2,
.center-heading h2,
.about-content h2,
.technology-content h2 {

    font-family:
        "Montserrat",
        sans-serif;

    color: var(--heading);

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.18;

    font-weight: 600;

    letter-spacing: -1.3px;

}


.section-heading h2 span,
.center-heading h2 span,
.about-content h2 span,
.technology-content h2 span {

    color: var(--orange);

}


.section-heading>p {

    max-width: 500px;

    font-size: 14px;

    color: var(--text);

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    padding: 110px 0;

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 85px;

    align-items: center;

}


.about-image {

    position: relative;

    padding-right: 35px;

}


.image-frame {

    padding: 20px;

    background: var(--light);

    border-radius: var(--radius-xl);

}


.image-frame img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 23px;

}


.experience-card {

    position: absolute;

    right: 0;

    bottom: 30px;

    background: var(--black);

    color: white;

    padding: 19px 23px;

    border-radius: 17px;

    box-shadow: var(--shadow-hover);

    max-width: 250px;

}


.experience-card span,
.experience-card strong,
.experience-card small {

    display: block;

}


.experience-card span {

    color: var(--orange);

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 800;

}


.experience-card strong {

    font-family: Montserrat;

    font-size: 15px;

    margin-top: 3px;

}


.experience-card small {

    color: #aaa;

    font-size: 10px;

    margin-top: 3px;

}


.about-content p {

    font-size: 14px;

    line-height: 1.9;

    margin-top: 22px;

}


.about-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px;

    margin-top: 25px;

}


.about-list div {

    font-size: 12px;

    font-weight: 600;

    color: var(--heading);

}


.about-list i {

    color: var(--orange);

    margin-right: 7px;

}


.text-button {

    display: inline-flex;

    gap: 9px;

    align-items: center;

    margin-top: 28px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    background: #fafaf9;

}


.product-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;

}


.product-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    overflow: hidden;

    transition: .3s ease;

}


.product-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow-hover);

}


.product-image {

    position: relative;

    padding: 15px;

    background: #f5f5f3;

}


.product-image img {

    width: 100%;

    height: 330px;

    object-fit: contain;

    background: white;

    border-radius: 21px;

}


.product-tag {

    position: absolute;

    top: 29px;

    left: 29px;

    background: var(--orange);

    color: white;

    padding: 7px 12px;

    border-radius: 20px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.product-content {

    padding: 30px;

    position: relative;

}


.product-number {

    position: absolute;

    right: 27px;

    top: 25px;

    font-family: Montserrat;

    font-size: 25px;

    font-weight: 700;

    color: #ededeb;

}


.product-content h3 {

    font-family: Montserrat;

    color: var(--heading);

    font-size: 22px;

    line-height: 1.3;

    max-width: 390px;

    padding-right: 35px;

}


.product-content p {

    margin-top: 13px;

    font-size: 13px;

    line-height: 1.75;

}


.product-features {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;

}


.product-features span {

    font-size: 10px;

    font-weight: 600;

    color: var(--muted);

}


.product-features i {

    color: var(--orange);

    margin-right: 4px;

}


.product-link {

    border: 0;

    background: none;

    color: var(--orange);

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 24px;

    font-size: 11px;

    font-weight: 800;

}


.product-link:hover {

    gap: 13px;

}


/* =========================================================
   CENTER HEADING
========================================================= */

.center-heading {

    max-width: 750px;

    text-align: center;

    margin: 0 auto 55px;

}


.center-heading p {

    margin-top: 15px;

    font-size: 14px;

}


/* =========================================================
   WHY
========================================================= */

.why-section {

    padding: 105px 0;

}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

}


.why-item {

    padding: 32px 25px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 22px;

    transition: .3s ease;

}


.why-item:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}


.why-icon {

    width: 50px;

    height: 50px;

    border-radius: 15px;

    display: grid;

    place-items: center;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 19px;

}


.why-item h3 {

    font-family: Montserrat;

    color: var(--heading);

    font-size: 16px;

    margin-top: 20px;

}


.why-item p {

    font-size: 12px;

    margin-top: 8px;

}


/* =========================================================
   TECHNOLOGY
========================================================= */

.technology-section {

    padding: 110px 0;

    background: var(--light);

}


.technology-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.technology-content>p {

    font-size: 14px;

    margin-top: 22px;

}


.technology-points {

    margin-top: 30px;

}


.technology-points>div {

    display: flex;

    gap: 18px;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);

}


.technology-points strong {

    color: var(--orange);

    font-family: Montserrat;

}


.technology-points h4 {

    color: var(--heading);

    font-size: 13px;

}


.technology-points p {

    font-size: 11px;

    margin-top: 2px;

}


.technology-image {

    padding: 15px;

    background: white;

    border-radius: var(--radius-xl);

}


.technology-image img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 27px;

}


/* =========================================================
   NUMBERS
========================================================= */

.numbers-section {

    padding: 0;

    background: var(--black);

}


.numbers-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.number-box {

    padding: 42px 20px;

    text-align: center;

    border-right: 1px solid #363636;

}


.number-box:last-child {

    border-right: 0;

}


.number-box strong {

    display: block;

    font-family: Montserrat;

    font-size: 37px;

    color: var(--orange);

}


.number-box span {

    color: #bdbdbd;

    font-size: 11px;

}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {

    padding: 110px 0;

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        1.4fr 1fr;

    grid-template-rows:
        1fr 1fr;

    gap: 18px;

}


.gallery-large {

    grid-row:
        span 2;

}


.gallery-grid>div {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    min-height: 250px;

}


.gallery-grid img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}


.gallery-grid>div:hover img {

    transform: scale(1.04);

}


.gallery-caption {

    position: absolute;

    left: 20px;

    bottom: 18px;

    background: rgba(253, 252, 252, 0);

    color: rgb(255, 255, 255);

    padding: 9px 14px;

    border-radius: 20px;

    font-size: 10px;

    backdrop-filter: blur(8px);

}


/* =========================================================
   EXHIBITIONS & EVENTS
========================================================= */

.exhibition-section {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}


.exhibition-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.exhibition-section .section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}


.exhibition-section .section-heading > span {
    display: block;
    color: #f58220;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}


.exhibition-section .section-heading h2 {
    margin: 0;
    color: #202020;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 600;
}


.exhibition-section .section-heading h2 strong {
    color: #f58220;
    font-weight: 600;
}


.exhibition-section .section-heading p {
    margin: 22px auto 0;
    max-width: 760px;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   EXHIBITION GRID
========================================================= */

.exhibition-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   EXHIBITION CARD
========================================================= */

.exhibition-card {

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 24px;

    overflow: hidden;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.exhibition-card:hover {

    transform: translateY(-6px);

    border-color: #eeeeee;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .10);
}


/* =========================================================
   EXHIBITION IMAGE
========================================================= */

.exhibition-image {

    width: 100%;

    height: 270px;

    background: #f7f7f7;

    overflow: hidden;
}


.exhibition-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease;
}


.exhibition-card:hover
.exhibition-image img {

    transform: scale(1.025);
}


/* =========================================================
   EXHIBITION CONTENT
========================================================= */

.exhibition-content {

    padding: 22px 24px 25px;

    background: #ffffff;
}


.exhibition-content span {

    display: block;

    color: #f58220;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.6px;

    margin-bottom: 7px;
}


.exhibition-content h3 {

    margin: 0;

    color: #222222;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 600;
}


.exhibition-content p {

    margin: 8px 0 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .88);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 35px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;

    z-index: 99999;
}


/* OPEN STATE */

.lightbox.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   LIGHTBOX CONTENT
========================================================= */

.lightbox-content {

    width: auto;

    max-width: 92vw;

    max-height: 90vh;

    display: flex;

    align-items: center;

    justify-content: center;
}


.lightbox-content img {

    display: block;

    max-width: 92vw;

    max-height: 88vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, .35);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.lightbox-close {

    position: fixed;

    top: 25px;

    right: 30px;

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #222222;

    font-size: 30px;

    line-height: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 100000;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .2);

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.lightbox-close:hover {

    background: #f58220;

    color: #ffffff;

    transform: scale(1.05);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .exhibition-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .exhibition-section {

        padding: 75px 0;

    }


    .exhibition-section .container {

        padding: 0 20px;

    }


    .exhibition-grid {

        grid-template-columns: 1fr;

        gap: 22px;

    }


    .exhibition-image {

        height: 260px;

    }


    .exhibition-section .section-heading h2 {

        font-size: 34px;

    }


    .exhibition-section .section-heading p {

        font-size: 14px;

    }


    .lightbox {

        padding: 20px;

    }


    .lightbox-content {

        max-width: 96vw;

        max-height: 88vh;

    }


    .lightbox-content img {

        max-width: 96vw;

        max-height: 82vh;

        border-radius: 7px;

    }


    .lightbox-close {

        top: 15px;

        right: 15px;

        width: 42px;

        height: 42px;

        font-size: 26px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .exhibition-section {

        padding: 60px 0;

    }


    .exhibition-section .container {

        padding: 0 15px;

    }


    .exhibition-section .section-heading h2 {

        font-size: 30px;

    }


    .exhibition-image {

        height: 230px;

    }


    .exhibition-content {

        padding: 20px;

    }

}

/* =========================================================
   CUSTOMERS
========================================================= */

.customers-section {

    padding: 95px 0;

}


.customer-names {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;

}


.customer-names span {

    border: 1px solid var(--border);

    padding: 13px 21px;

    border-radius: 30px;

    color: var(--heading);

    font-size: 11px;

    font-weight: 600;

    background: white;

    transition: .25s ease;

}


.customer-names span:hover {

    border-color: var(--orange);

    color: var(--orange);

}


/* =========================================================
   CATALOG
========================================================= */

.catalog-section {

    padding: 100px 0;

    background: var(--orange-light);

}


.catalog-inner {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 75px;

}


.catalog-image {

    padding: 18px;

    background: white;

    border-radius: 30px;

    box-shadow: var(--shadow);

}


.catalog-image img {

    width: 100%;

    height: 430px;

    object-fit: contain;

    border-radius: 20px;

}


.catalog-content h2 {

    font-family: Montserrat;

    color: var(--heading);

    font-size:
        clamp(34px, 4vw, 50px);

    line-height: 1.15;

}


.catalog-content h2 span {

    color: var(--orange);

}


.catalog-content p {

    font-size: 14px;

    max-width: 580px;

    margin-top: 18px;

}


.catalog-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 28px;

}


/* =========================================================
   CERTIFICATES
========================================================= */

.certificates-section {

    padding: 105px 0;

}


.certificate-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.certificate-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 22px;

    overflow: hidden;

    cursor: pointer;

    transition: .3s ease;

}


.certificate-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}


.certificate-card img {

    width: 100%;

    height: 330px;

    object-fit: contain;

    padding: 15px;

    background: #f7f7f6;

}


.certificate-card h3 {

    padding: 18px 20px;

    font-family: Montserrat;

    font-size: 14px;

    color: var(--heading);

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    background: var(--black);

    color: white;

    padding: 70px 0;

}


.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.light-label {

    color: var(--orange);

}


.cta-inner h2 {

    font-family: Montserrat;

    font-size:
        clamp(28px, 4vw, 45px);

    line-height: 1.2;

}


.cta-inner p {

    color: #aaa;

    font-size: 13px;

    margin-top: 8px;

}


.btn-white {

    background: white;

    color: var(--heading);

    white-space: nowrap;

}


.btn-white:hover {

    background: var(--orange);

    color: white;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    padding: 110px 0;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 65px;

}


.contact-information {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.contact-box {

    display: flex;

    gap: 15px;

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: white;

}


.contact-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    border-radius: 12px;

    background: var(--orange-light);

    color: var(--orange);

    display: grid;

    place-items: center;

}


.contact-box span {

    color: var(--heading);

    font-size: 11px;

    font-weight: 800;

}


.contact-box p {

    font-size: 11px;

    line-height: 1.65;

    margin-top: 4px;

}


.contact-box a:hover {

    color: var(--orange);

}


/* =========================================================
   FORM
========================================================= */

.inquiry-card {

    background: var(--light);

    border-radius: 30px;

    padding: 38px;

}


.form-heading span {

    color: var(--orange);

    font-size: 9px;

    letter-spacing: 1.7px;

    font-weight: 800;

}


.form-heading h3 {

    font-family: Montserrat;

    color: var(--heading);

    font-size: 28px;

    line-height: 1.25;

    margin-top: 5px;

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

}


.form-group {

    margin-top: 18px;

}


.form-group label {

    display: block;

    color: var(--heading);

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 7px;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #ddd;

    outline: none;

    background: white;

    border-radius: 13px;

    padding: 13px 15px;

    color: var(--heading);

    font-size: 11px;

    transition: .2s ease;

}


.form-group textarea {

    resize: vertical;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(245, 130, 32, .08);

}


.form-submit {

    width: 100%;

    margin-top: 22px;

    border: 0;

    background: var(--orange);

    color: white;

    padding: 15px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 800;

    transition: .25s ease;

}


.form-submit:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);

}


.form-submit i {

    margin-left: 7px;

    font-size: 16px;

}


.form-note {

    display: block;

    text-align: center;

    color: var(--muted);

    font-size: 9px;

    margin-top: 10px;

}


/* =========================================================
   MAP
========================================================= */

.map-section {

    height: 430px;

}


.map-section iframe {

    width: 100%;

    height: 100%;

    border: 0;

    filter: grayscale(25%);

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: var(--black);

    color: #aaa;

    padding-top: 70px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr .75fr 1fr 1.15fr;

    gap: 50px;

    padding-bottom: 55px;

}


.footer-logo {

    width: 220px;

    margin-bottom: 18px;

}


.footer-company p {

    max-width: 400px;

    font-size: 11px;

    line-height: 1.8;

}


.social-links {

    display: flex;

    gap: 8px;

    margin-top: 22px;

}


.social-links a {

    width: 35px;

    height: 35px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #2d2d2d;

    color: white;

    font-size: 12px;

    transition: .25s ease;

}


.social-links a:hover {

    background: var(--orange);

}


.footer-column h3 {

    color: white;

    font-family: Montserrat;

    font-size: 13px;

    margin-bottom: 18px;

}


.footer-column>a {

    display: block;

    color: #999;

    font-size: 10px;

    margin-bottom: 10px;

    transition: .2s ease;

}


.footer-column>a:hover {

    color: var(--orange);

}


.footer-contact>div {

    display: flex;

    gap: 9px;

    margin-bottom: 14px;

    font-size: 10px;

}


.footer-contact i {

    color: var(--orange);

    margin-top: 4px;

}


.footer-contact a:hover {

    color: var(--orange);

}


.footer-bottom {

    border-top: 1px solid #303030;

}


.footer-bottom-inner {

    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #707070;

    font-size: 9px;

}


/* =========================================================
   WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: grid;

    place-items: center;

    font-size: 27px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .2);

    z-index: 1500;

    transition: .3s ease;

}


.floating-whatsapp:hover {

    transform: scale(1.08);

}


.whatsapp-popup {

    position: fixed;

    right: 25px;

    bottom: 95px;

    width: 330px;

    padding: 20px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .16);

    z-index: 1499;

    display: flex;

    gap: 13px;

    animation: whatsappIn .45s ease;

}


@keyframes whatsappIn {

    from {

        opacity: 0;

        transform:
            translateY(15px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.popup-close {

    position: absolute;

    top: 8px;

    right: 10px;

    border: 0;

    background: none;

    color: #999;

}


.popup-whatsapp-icon {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    background: #25d366;

    color: white;

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 21px;

}


.whatsapp-popup strong {

    color: var(--heading);

    font-size: 12px;

}


.whatsapp-popup p {

    color: var(--muted);

    font-size: 10px;

    margin-top: 2px;

}


.whatsapp-popup a {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #1aa951;

    font-size: 10px;

    font-weight: 800;

    margin-top: 9px;

}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-modal {

    position: fixed;

    inset: 0;

    background:
        rgba(20, 20, 20, .7);

    backdrop-filter:
        blur(8px);

    display: none;

    align-items: center;

    justify-content: center;

    padding: 25px;

    z-index: 3000;

}


.product-modal.active {

    display: flex;

}


.product-modal-box {

    width: 100%;

    max-width: 1000px;

    max-height: 90vh;

    overflow: auto;

    background: white;

    border-radius: 30px;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    position: relative;

}


.modal-close {

    position: absolute;

    right: 17px;

    top: 17px;

    width: 38px;

    height: 38px;

    border-radius: 50%;

    border: 0;

    background: white;

    box-shadow: var(--shadow);

    z-index: 2;

}


.modal-image {

    padding: 25px;

    background: #f5f5f3;

    border-radius: 30px 0 0 30px;

}


.modal-image img {

    width: 100%;

    height: 500px;

    object-fit: contain;

    background: white;

    border-radius: 20px;

}


.modal-content {

    padding: 55px 40px;

}


.modal-content>span {

    color: var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.modal-content h2 {

    font-family: Montserrat;

    color: var(--heading);

    font-size: 31px;

    line-height: 1.2;

    margin-top: 8px;

}


.modal-content>p {

    font-size: 13px;

    line-height: 1.8;

    margin-top: 15px;

}


.modal-features {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px;

    margin-top: 22px;

}


.modal-feature {

    background: var(--orange-light);

    padding: 10px;

    border-radius: 10px;

    font-size: 10px;

    color: var(--heading);

}


.modal-feature i {

    color: var(--orange);

    margin-right: 4px;

}


.modal-specs {

    margin-top: 22px;

    padding: 18px;

    background: var(--light);

    border-radius: 15px;

}


.modal-specs h4 {

    font-family: Montserrat;

    color: var(--heading);

    font-size: 12px;

    margin-bottom: 8px;

}


.spec-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 6px 0;

    border-bottom: 1px solid var(--border);

    font-size: 10px;

}


.spec-row:last-child {

    border-bottom: 0;

}


.spec-row strong {

    color: var(--heading);

}


/* =========================================================
   CERTIFICATE MODAL
========================================================= */

.certificate-modal {

    position: fixed;

    inset: 0;

    background:
        rgba(0, 0, 0, .75);

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    z-index: 4000;

}


.certificate-modal.active {

    display: flex;

}


.certificate-modal-box {

    position: relative;

    background: white;

    border-radius: 20px;

    padding: 15px;

    max-width: 900px;

    max-height: 90vh;

}


.certificate-modal-box button {

    position: absolute;

    right: -10px;

    top: -10px;

    width: 38px;

    height: 38px;

    border-radius: 50%;

    border: 0;

    background: white;

    box-shadow: var(--shadow);

}


.certificate-modal-box img {

    max-width: 100%;

    max-height: 80vh;

    object-fit: contain;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .desktop-nav {

        gap: 18px;

    }

    .header-button {

        margin-left: 18px;

    }

    .hero-grid {

        gap: 45px;

    }

}


@media (max-width: 1000px) {

    .desktop-nav,
    .header-button {

        display: none;

    }

    .mobile-menu-button {

        display: block;

        margin-left: auto;

    }

    .mobile-menu {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        background: white;

        border-top: 1px solid var(--border);

        padding: 15px 5% 25px;

        box-shadow: var(--shadow);

    }

    .mobile-menu.active {

        display: block;

    }

    .mobile-menu a {

        display: block;

        padding: 12px 0;

        color: var(--heading);

        font-size: 13px;

        font-weight: 600;

        border-bottom: 1px solid #eee;

    }

    .mobile-menu .mobile-quote {

        background: var(--orange);

        color: white;

        text-align: center;

        border-radius: 25px;

        margin-top: 15px;

        border: 0;

    }

    .hero-grid,
    .about-grid,
    .technology-grid,
    .contact-grid,
    .catalog-inner {

        grid-template-columns: 1fr;

    }

    .hero-content {

        text-align: center;

    }

    .eyebrow,
    .hero-points,
    .hero-buttons {

        justify-content: center;

    }

    .hero-text {

        margin-left: auto;

        margin-right: auto;

    }

    .hero-floating-card {

        left: 20px;

    }

    .trust-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .trust-item:nth-child(2) {

        border-right: 0;

    }

    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .section-heading {

        grid-template-columns: 1fr;

        gap: 15px;

    }

}


@media (max-width: 750px) {

    .topbar-left {

        display: none;

    }

    .topbar-inner {

        justify-content: center;

    }

    .topbar-right {

        gap: 15px;

    }

    .topbar-right a {

        font-size: 10px;

    }

    .logo img {

        width: 190px;

    }

    .hero {

        padding: 60px 0 75px;

    }

    .hero h1 {

        font-size: 40px;

    }

    .hero-image-wrap img {

        height: 360px;

    }

    .hero-floating-card {

        left: 10px;

        bottom: 15px;

    }

    .product-grid {

        grid-template-columns: 1fr;

    }

    .product-image img {

        height: 300px;

    }

    .why-grid {

        grid-template-columns: 1fr;

    }

    .numbers-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .number-box {

        border-bottom: 1px solid #363636;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-template-rows: auto;

    }

    .gallery-large {

        grid-row: auto;

    }

    .gallery-grid>div {

        min-height: 270px;

    }

    .exhibition-grid,
    .certificate-grid {

        grid-template-columns: 1fr;

    }

    .catalog-image img {

        height: 350px;

    }

    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

    .form-row {

        grid-template-columns: 1fr;

    }

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-bottom-inner {

        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 15px 5%;

    }

    .product-modal-box {

        grid-template-columns: 1fr;

    }

    .modal-image {

        border-radius: 30px 30px 0 0;

    }

    .modal-image img {

        height: 300px;

    }

    .modal-content {

        padding: 30px 25px;

    }

}


@media (max-width: 480px) {

    .site-container {

        padding-left: 6%;

        padding-right: 6%;

    }

    .topbar-right a:last-child {

        display: none;

    }

    .hero h1 {

        font-size: 34px;

        letter-spacing: -1px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons .btn {

        width: 100%;

    }

    .hero-points {

        flex-direction: column;

        gap: 7px;

    }

    .hero-image-wrap {

        padding: 10px;

    }

    .hero-image-wrap img {

        height: 300px;

    }

    .hero-floating-card {

        position: relative;

        left: auto;

        bottom: auto;

        margin-top: -25px;

        margin-left: 15px;

        margin-right: 15px;

    }

    .trust-grid {

        grid-template-columns: 1fr;

    }

    .trust-item {

        border-right: 0;

        border-bottom: 1px solid var(--border);

    }

    .trust-item:last-child {

        border-bottom: 0;

    }

    .about-list {

        grid-template-columns: 1fr;

    }

    .about-image {

        padding-right: 0;

    }

    .experience-card {

        position: relative;

        right: auto;

        bottom: auto;

        margin: -25px 15px 0;

    }

    .product-content {

        padding: 23px;

    }

    .number-box strong {

        font-size: 29px;

    }

    .whatsapp-popup {

        right: 12px;

        bottom: 90px;

        width: calc(100% - 24px);

    }

    .floating-whatsapp {

        right: 17px;

        bottom: 17px;

    }

    .inquiry-card {

        padding: 25px 18px;

    }

    .modal-features {

        grid-template-columns: 1fr;

    }

}
/* =========================================
   PREMIUM HEXAPLAST IMAGE HOVER EFFECT
   ========================================= */

img {
    display: block;
    cursor: pointer;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
}

/* Smooth premium movement */
img:hover {
    transform: translateY(-7px) scale(1.035);
    filter: brightness(1.04) contrast(1.02);
}


/* =========================================
   IMAGE CONTAINER EFFECT
   ========================================= */

.image-container,
.exhibition-card,
.product-card,
.machine-card {
    overflow: hidden;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}

.image-container:hover,
.exhibition-card:hover,
.product-card:hover,
.machine-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}


/* =========================================
   IMAGE SHINE EFFECT
   ========================================= */

.image-container::after,
.exhibition-card::after,
.product-card::after,
.machine-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.28),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.image-container:hover::after,
.exhibition-card:hover::after,
.product-card:hover::after,
.machine-card:hover::after {
    left: 140%;
}

/* =========================================================
   HEXAPLAST GLOBAL IMAGE HOVER EFFECT
   ========================================================= */

img {
    cursor: pointer;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
}

img:hover {
    transform: translateY(-7px) scale(1.035);
    filter: brightness(1.04) contrast(1.02);
}
