/* =========================================================
   PREMIUM PACKAGING THEME
   BLACK + WHITE + GOLD + TOUCH OF RED
========================================================= */

:root {

    /* =========================
       BRAND COLORS
    ========================== */

    --black: #050505;
    --black-soft: #0d0d0d;
    --black-light: #171717;

    --white: #ffffff;
    --white-soft: #f7f7f5;
    --white-dark: #eeeeeb;

    --gold: #c9a227;
    --gold-light: #e0c15a;
    --gold-dark: #9f7d12;

    --red: #a4161a;
    --red-light: #c62828;
    --red-dark: #7f1013;


    /* =========================
       TEXT
    ========================== */

    --text: #242424;
    --text-light: #666666;

    --text-white: #ffffff;
    --text-muted: #a5a5a5;


    /* =========================
       BACKGROUNDS
    ========================== */

    --bg: #ffffff;
    --bg-light: #f7f7f5;
    --bg-dark: #050505;


    /* =========================
       BORDERS
    ========================== */

    --border: #deded8;
    --border-dark: rgba(255, 255, 255, 0.12);

    --gold-border: rgba(201, 162, 39, 0.45);


    /* =========================
       RADIUS
    ========================== */

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 22px;


    /* =========================
       SHADOWS
    ========================== */

    --shadow-sm:
        0 5px 20px rgba(0, 0, 0, 0.06);

    --shadow-md:
        0 15px 45px rgba(0, 0, 0, 0.12);

    --shadow-lg:
        0 25px 80px rgba(0, 0, 0, 0.20);


    /* =========================
       TRANSITION
    ========================== */

    --transition: all 0.35s ease;


    /* =========================
       CONTAINER
    ========================== */

    --container: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

    position: relative;
    z-index: 2;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {

    color: var(--black);

    line-height: 1.2;

    font-weight: 750;

    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(
        3rem,
        6vw,
        5.8rem
    );
}

h2 {
    font-size: clamp(
        2.2rem,
        4vw,
        4rem
    );
}

h3 {
    font-size: 1.35rem;
}

p {
    color: var(--text-light);
}


/* =========================================================
   SECTIONS
========================================================= */

section {
    padding: 110px 0;
}

.section-heading {

    max-width: 750px;

    margin:
        0 auto 60px;

    text-align: center;
}

.section-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold-dark);

    font-size: 0.76rem;

    font-weight: 800;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 20px;
}

.section-heading p {

    max-width: 650px;

    margin: auto;

    font-size: 1.05rem;
}


/* =========================================================
   GOLD DECORATIVE LINE
========================================================= */

.section-heading::after {

    content: "";

    display: block;

    width: 55px;

    height: 2px;

    margin: 25px auto 0;

    background:
        linear-gradient(
            90deg,
            var(--gold-dark),
            var(--gold-light)
        );
}


/* =========================================================
   BUTTONS
========================================================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 54px;

    padding: 0 30px;

    border-radius: 4px;

    font-size: 0.9rem;

    font-weight: 750;

    letter-spacing: 0.02em;

    transition: var(--transition);

    cursor: pointer;
}


/* GOLD BUTTON */

.primary-button {

    color: var(--black);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 10px 30px
        rgba(201, 162, 39, 0.22);
}

.primary-button:hover {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--black-light),
            var(--black)
        );

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.25);
}


/* WHITE BUTTON */

.secondary-button {

    color: var(--black);

    background: var(--white);

    border: 1px solid var(--black);
}

.secondary-button:hover {

    color: var(--white);

    background: var(--black);

    border-color: var(--gold);

    transform: translateY(-3px);
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    color: var(--white);

    background: var(--black);

    font-size: 0.78rem;

    border-bottom:
        1px solid
        rgba(201, 162, 39, 0.3);
}

.top-bar .container {

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.top-bar p {
    color: #cccccc;
}

.top-contact {

    display: flex;

    gap: 25px;
}

.top-contact a {

    color: #dddddd;

    transition: var(--transition);
}

.top-contact a:hover {
    color: var(--gold-light);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid var(--border);
}

.main-header .container {

    min-height: 86px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.logo img {

    width: 170px;

    max-height: 55px;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation > ul {

    display: flex;

    align-items: center;

    gap: 30px;
}

.main-navigation > ul > li {
    position: relative;
}

.main-navigation a {

    display: block;

    color: var(--black);

    font-size: 0.88rem;

    font-weight: 650;

    transition: var(--transition);
}

.main-navigation > ul > li > a {

    position: relative;

    padding: 30px 0;
}


/* GOLD UNDERLINE */

.main-navigation > ul > li > a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 20px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: var(--transition);
}

.main-navigation > ul > li > a:hover::after {

    width: 100%;
}

.main-navigation a:hover {
    color: var(--gold-dark);
}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown {

    position: absolute;

    top: calc(100% - 5px);

    left: 50%;

    width: 240px;

    padding: 12px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-top:
        3px solid var(--gold);

    box-shadow: var(--shadow-lg);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, 10px);

    transition: var(--transition);
}

.has-dropdown:hover .dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);
}

.dropdown li a {

    padding: 12px 14px;

    color: var(--black);

    border-radius: 4px;
}

.dropdown li a:hover {

    color: var(--white);

    background: var(--black);
}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-button {

    padding: 13px 23px;

    color: var(--black);

    background: var(--gold);

    border-radius: 3px;

    font-size: 0.83rem;

    font-weight: 750;

    transition: var(--transition);
}

.header-button:hover {

    color: var(--white);

    background: var(--black);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.18);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    padding: 90px 0;

    color: var(--white);

    background:
        linear-gradient(
            110deg,
            #030303 0%,
            #101010 55%,
            #050505 100%
        );

    overflow: hidden;
}

.hero-section::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    right: -300px;

    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 39, 0.16),
            transparent 65%
        );
}

.hero-section::after {

    content: "";

    position: absolute;

    width: 3px;

    height: 240px;

    left: 0;

    top: 25%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--red),
            transparent
        );
}

.hero-section .container {

    display: grid;

    grid-template-columns:
        1fr 0.95fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    max-width: 700px;
}

.hero-subtitle {

    display: inline-flex;

    padding: 8px 15px;

    margin-bottom: 25px;

    color: var(--gold-light);

    background:
        rgba(201, 162, 39, 0.08);

    border:
        1px solid
        rgba(201, 162, 39, 0.35);

    border-radius: 3px;

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 0.14em;
}

.hero-content h1 {

    margin-bottom: 25px;

    color: var(--white);
}

.hero-content h1 span {

    display: block;

    color: var(--gold-light);
}

.hero-content > p {

    max-width: 600px;

    margin-bottom: 35px;

    color: #bdbdbd;

    font-size: 1.1rem;

    line-height: 1.8;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;
}

.hero-image {
    position: relative;
}

.hero-image::after {

    content: "";

    position: absolute;

    inset: 18px -18px -18px 18px;

    border:
        1px solid
        var(--gold);

    border-radius: var(--radius-lg);

    z-index: -1;
}

.hero-image img {

    height: 570px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.55);

    filter:
        saturate(0.9)
        contrast(1.05);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    padding: 35px 0;

    background: var(--black);
}

.stats-section .container {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.stat-item {

    padding: 15px 25px;

    text-align: center;

    border-right:
        1px solid
        rgba(201, 162, 39, 0.2);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {

    display: block;

    margin-bottom: 4px;

    color: var(--gold-light);

    font-size: 2.3rem;

    line-height: 1;
}

.stat-item span {

    color: #a7a7a7;

    font-size: 0.8rem;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-section .container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 90px;
}

.about-image {
    position: relative;
}

.about-image::before {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    left: -30px;

    bottom: -30px;

    border-left:
        3px solid var(--red);

    border-bottom:
        3px solid var(--red);

    z-index: 0;
}

.about-image::after {

    content: "";

    position: absolute;

    width: 80px;

    height: 80px;

    right: -20px;

    top: -20px;

    border-top:
        2px solid var(--gold);

    border-right:
        2px solid var(--gold);

    z-index: 0;
}

.about-image img {

    position: relative;

    z-index: 1;

    height: 600px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 18px;
}

.about-content .button {
    margin-top: 15px;
}


/* =========================================================
   PRODUCTS
========================================================= */


.products-section {
    background: var(--black-soft);
}

.products-section .section-heading h2 {
    color: var(--white);
}

.products-section .section-heading p {
    color: #999999;
}

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.product-card {

    overflow: hidden;

    background: #111111;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-lg);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.25);

    transition: var(--transition);
}

.product-card:hover {

    transform:
        translateY(-10px);

    border-color:
        var(--gold);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.4);
}

.product-image {
    overflow: hidden;
}

.product-image img {

    height: 270px;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.product-card:hover
.product-image img {

    transform:
        scale(1.08);
}

.product-content {

    padding: 28px;

    border-top:
        1px solid
        rgba(201, 162, 39, 0.15);
}

.product-content h3 {

    margin-bottom: 12px;

    color: var(--white);
}

.product-content p {

    margin-bottom: 18px;

    color: #999999;

    font-size: 0.9rem;
}

.product-content a {

    color: var(--gold-light);

    font-size: 0.84rem;

    font-weight: 750;
}

.product-content a:hover {
    color: var(--red-light);
}

.section-button {

    margin-top: 50px;

    text-align: center;
}


/* =========================================================
   WHY US
========================================================= */

.why-us-section {
    background: var(--white);
}

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.feature {

    position: relative;

    padding: 35px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);
}

.feature:hover {

    transform:
        translateY(-7px);

    border-color:
        var(--gold);

    box-shadow:
        var(--shadow-md);
}

.feature-icon {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    margin-bottom: 25px;

    color: var(--black);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border-radius: 50%;

    font-weight: 800;
}

.feature h3 {
    margin-bottom: 12px;
}

.feature p {
    font-size: 0.9rem;
}


/* =========================================================
   MANUFACTURING
========================================================= */

.manufacturing-section {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            #050505,
            #111111
        );
}

.manufacturing-section .container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;
}

.manufacturing-section h2 {

    color: var(--white);

    margin-bottom: 25px;
}

.manufacturing-section .section-label {
    color: var(--gold-light);
}

.manufacturing-section p {
    color: #999999;
}

.process-list {
    margin-top: 35px;
}

.process-item {

    display: grid;

    grid-template-columns:
        55px 1fr;

    gap: 20px;

    padding: 20px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);
}

.process-item > span {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    color: var(--black);

    background: var(--gold);

    border-radius: 50%;

    font-size: 0.8rem;

    font-weight: 800;
}

.process-item h3 {

    margin-bottom: 5px;

    color: var(--white);

    font-size: 1.05rem;
}

.process-item p {
    font-size: 0.86rem;
}

.manufacturing-image {
    position: relative;
}

.manufacturing-image::before {

    content: "";

    position: absolute;

    left: -15px;

    top: -15px;

    width: 100px;

    height: 100px;

    border-top:
        2px solid var(--red);

    border-left:
        2px solid var(--red);
}

.manufacturing-image img {

    position: relative;

    height: 600px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, 0.45);
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
    background: var(--white);
}

.industry-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.industry-card {

    position: relative;

    min-height: 260px;

    overflow: hidden;

    border-radius: var(--radius-md);

    cursor: pointer;

    border:
        1px solid
        rgba(0, 0, 0, 0.08);
}

.industry-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.05)
        );
}

.industry-card img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card h3 {

    position: absolute;

    left: 25px;

    bottom: 22px;

    z-index: 2;

    color: var(--white);

    font-size: 1.25rem;
}

.industry-card h3::before {

    content: "";

    display: inline-block;

    width: 25px;

    height: 2px;

    margin-right: 10px;

    vertical-align: middle;

    background: var(--gold);
}


/* =========================================================
   CUSTOMIZATION
========================================================= */

.customization-section {
    background: var(--white);
}

.customization-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    overflow: hidden;

    background: var(--gold-border);

    border:
        1px solid var(--gold-border);

    border-radius: var(--radius-lg);
}

.customization-item {

    position: relative;

    padding: 35px;

    background: var(--white);

    transition: var(--transition);
}

.customization-item:hover {

    color: var(--white);

    background: var(--black);
}

.customization-item:hover h3 {
    color: var(--gold-light);
}

.customization-item:hover p {
    color: #999999;
}

.customization-item h3 {

    margin-bottom: 10px;

    transition: var(--transition);
}

.customization-item p {
    font-size: 0.9rem;
}


/* =========================================================
   SHOWCASE / CATALOGUE
========================================================= */

.showcase-section {

    position: relative;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(212, 175, 55, 0.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #0b0b0b 55%,
            #030303 100%
        );

    color: #f5f5f5;

    overflow: hidden;
}

.showcase-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    right: -200px;

    top: -200px;

    background:
        rgba(212, 175, 55, 0.08);

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


/* CATALOGUE BOX */

.catalogue-box {

    position: relative;

    display: grid;

    grid-template-columns:
        1fr 280px;

    gap: 70px;

    padding: 70px;

    border:
        1px solid
        rgba(212, 175, 55, 0.35);

    border-radius: 4px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        );

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.7),

        inset 0 0 50px
        rgba(212, 175, 55, 0.025);

    transition:
        border-color 0.35s ease,
        transform 0.35s ease;
}

.catalogue-box:hover {

    border-color:
        rgba(212, 175, 55, 0.65);

    transform:
        translateY(-4px);
}


/* GOLD TOP ACCENT */

.catalogue-box::before {

    content: "";

    position: absolute;

    top: -1px;

    left: 50px;

    width: 120px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #8f6b18,
            #d4af37,
            #f5d76e,
            #d4af37,
            #8f6b18
        );
}


/* CATALOGUE CONTENT */

.catalogue-content {
    max-width: 750px;
}

.catalogue-content .section-label {

    margin-bottom: 18px;

    color: #d4af37;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.catalogue-content h2 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size:
        clamp(
            38px,
            5vw,
            64px
        );

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -1.5px;
}

.catalogue-content h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #b8860b,
            #d4af37,
            #f8e38b,
            #d4af37,
            #a67c00
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}

.catalogue-content p {

    max-width: 680px;

    margin:
        0 0 18px;

    color: #b8b8b8;

    font-size: 16px;

    line-height: 1.8;
}


/* CATALOGUE ACTION */

.catalogue-actions {
    margin-top: 35px;
}

.catalogue-button {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    min-width: 230px;

    padding: 16px 24px;

    color: #050505;

    background:
        linear-gradient(
            135deg,
            #a67c00,
            #d4af37,
            #f5d76e,
            #d4af37
        );

    border:
        1px solid #d4af37;

    border-radius: 2px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    box-shadow:
        0 8px 25px
        rgba(212, 175, 55, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.catalogue-button strong {

    font-size: 22px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}

.catalogue-button:hover {

    color: #000;

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 35px
        rgba(212, 175, 55, 0.35);

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f8e38b,
            #d4af37
        );
}

.catalogue-button:hover strong {
    transform: translateX(6px);
}


/* CATALOGUE NOTE */

.catalogue-note {

    margin-top: 18px;

    color: #777;

    font-size: 12px;

    line-height: 1.6;
}


/* CATALOGUE SIDE */

.catalogue-side {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-left: 40px;

    border-left:
        1px solid
        rgba(212, 175, 55, 0.25);
}

.catalogue-number {
    margin-bottom: 25px;
}

.catalogue-number span {

    display: block;

    color: #d4af37;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 5px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);
}

.catalogue-side-line {

    width: 45px;

    height: 2px;

    margin-bottom: 25px;

    background:
        linear-gradient(
            90deg,
            #d4af37,
            transparent
        );
}

.catalogue-side p {

    margin: 0;

    color: #999;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

/* =========================================================
   CUSTOMER REVIEWS
========================================================= */

.testimonials-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            var(--white) 0%,
            var(--white-soft) 100%
        );
}


/* =========================================================
   SLIDER
========================================================= */

.testimonial-slider {

    position: relative;

    width: 100%;

    overflow: hidden;

    /*
       Fades the cards slightly at the edges.
       Gives the slider a premium look.
    */

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
}


/* =========================================================
   MOVING TRACK
========================================================= */

.testimonial-track {

    display: flex;

    width: max-content;

    gap: 25px;

    animation:
        testimonialScroll
        90s
        linear
        infinite;
}


/*
   Very slow continuous movement.
*/

@keyframes testimonialScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial {

    position: relative;

    flex: 0 0 390px;

    min-height: 275px;

    padding: 32px;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius: var(--radius-md);

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.06);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   GOLD TOP LINE
========================================================= */

.testimonial::before {

    content: "";

    position: absolute;

    left: 32px;

    top: 0;

    width: 45px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--gold-dark),
            var(--gold-light)
        );

    border-radius:
        0 0 5px 5px;
}


/* =========================================================
   QUOTE MARK
========================================================= */

.testimonial::after {

    content: "“";

    position: absolute;

    right: 25px;

    top: 15px;

    color:
        rgba(201, 162, 39, 0.14);

    font-family:
        Georgia,
        serif;

    font-size: 5rem;

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   STARS
========================================================= */

.testimonial-stars {

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 0.9rem;

    letter-spacing: 3px;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.testimonial > p {

    position: relative;

    z-index: 2;

    min-height: 100px;

    margin-bottom: 25px;

    color: var(--text);

    font-size: 0.92rem;

    line-height: 1.75;
}


/* =========================================================
   CUSTOMER INFO
========================================================= */

.testimonial-author {

    display: flex;

    align-items: center;

    gap: 13px;

    padding-top: 18px;

    border-top:
        1px solid
        rgba(0, 0, 0, 0.07);
}


/* =========================================================
   CUSTOMER AVATAR
========================================================= */

.testimonial-avatar {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--black);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border-radius: 50%;

    font-size: 0.9rem;

    font-weight: 800;
}


/* =========================================================
   CUSTOMER NAME
========================================================= */

.testimonial-author h3 {

    margin-bottom: 2px;

    color: var(--black);

    font-size: 0.92rem;

    font-weight: 750;
}


.testimonial-author span {

    color: var(--gold-dark);

    font-size: 0.72rem;

    font-weight: 600;
}


/* =========================================================
   HOVER
========================================================= */

.testimonial:hover {

    transform:
        translateY(-7px);

    border-color:
        var(--gold);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.12);
}


/*
   Pause the movement when the visitor
   wants to read a review.
*/

.testimonial-slider:hover
.testimonial-track {

    animation-play-state: paused;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .testimonial-slider {

        -webkit-mask-image:
            linear-gradient(
                to right,
                transparent,
                black 3%,
                black 97%,
                transparent
            );

        mask-image:
            linear-gradient(
                to right,
                transparent,
                black 3%,
                black 97%,
                transparent
            );
    }


    .testimonial-track {

        gap: 18px;

        animation-duration: 75s;
    }


    .testimonial {

        flex: 0 0 330px;

        min-height: 275px;

        padding: 28px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .testimonial {

        flex: 0 0 285px;

        min-height: 290px;

        padding: 25px;
    }

    .testimonial > p {

        font-size: 0.88rem;

        min-height: 110px;
    }

    .testimonial::before {

        left: 25px;
    }

}
/* =========================================================
   QUOTE CTA
========================================================= */

.quote-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #050505,
            #161616
        );
}

.quote-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    right: -250px;

    top: -300px;

    border:
        100px solid
        rgba(201, 162, 39, 0.08);

    border-radius: 50%;
}

.quote-section::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    left: -180px;

    bottom: -160px;

    border:
        60px solid
        rgba(164, 22, 26, 0.10);

    border-radius: 50%;
}

.quote-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: auto;

    text-align: center;
}

.quote-content .section-label {
    color: var(--gold-light);
}

.quote-content h2 {

    color: var(--white);

    margin-bottom: 20px;
}

.quote-content p {

    max-width: 650px;

    margin:
        0 auto 30px;

    color: #aaaaaa;

    font-size: 1.05rem;
}

.quote-content .primary-button {

    color: var(--black);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 10px 30px
        rgba(201, 162, 39, 0.25);
}

.quote-content .primary-button:hover {

    color: var(--white);

    background: var(--red);

    box-shadow:
        0 10px 30px
        rgba(164, 22, 26, 0.3);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--white-soft);
}

.faq-list {

    max-width: 900px;

    margin: auto;
}

.faq-item {

    margin-bottom: 12px;

    padding: 0 25px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item summary {

    position: relative;

    padding:
        23px 35px 23px 0;

    color: var(--black);

    font-weight: 700;

    cursor: pointer;

    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {

    content: "+";

    position: absolute;

    right: 0;

    top: 20px;

    color: var(--gold-dark);

    font-size: 1.5rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {

    padding-bottom: 22px;

    font-size: 0.92rem;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--white);
}

.contact-section .container {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 80px;

    align-items: start;
}

.contact-content h2 {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 35px;
}

.contact-details > div {
    margin-bottom: 25px;
}

.contact-details strong {

    display: block;

    margin-bottom: 5px;

    color: var(--black);

    font-size: 0.85rem;
}

.contact-details a {

    color: var(--gold-dark);

    font-weight: 650;
}

.contact-details a:hover {
    color: var(--red);
}

.contact-details p {
    font-size: 0.9rem;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {

    padding: 40px;

    background: var(--black);

    border:
        1px solid
        rgba(201, 162, 39, 0.25);

    border-radius: var(--radius-lg);

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {

    display: block;

    margin-bottom: 7px;

    color: var(--white);

    font-size: 0.82rem;

    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 14px 16px;

    color: var(--white);

    background: #111111;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 6px;

    outline: none;

    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(201, 162, 39, 0.10);
}

.form-group textarea {

    resize: vertical;

    min-height: 130px;
}

.contact-form-wrapper button {
    border: 0;
}
/* =========================================================
   CONTACT DETAILS ICONS
========================================================= */

.contact-details > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-details > div > i,
.contact-details > div > svg,
.contact-details > div .contact-icon {
    width: 22px;
    height: 22px;

    min-width: 22px;
    min-height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    color: var(--gold);

    font-size: 18px;
    line-height: 1;

    flex-shrink: 0;
}

.contact-details > div > svg {
    stroke: currentColor;
}

.contact-details > div > div {
    flex: 1;
}

.contact-details strong {
    margin-bottom: 3px;
}

.contact-details p,
.contact-details a {
    line-height: 1.6;
}

/* =========================================================
   WHATSAPP CONTACT
========================================================= */

.contact-whatsapp {
    margin-top: 35px;
}

.whatsapp-contact-button {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    min-height: 62px;

    padding:
        8px 12px 8px 10px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #25D366,
            #128C7E
        );

    border-radius: 100px;

    font-size: 0.88rem;

    font-weight: 750;

    box-shadow:
        0 12px 30px
        rgba(37, 211, 102, 0.22);

    transition:
        all 0.35s ease;
}

.whatsapp-contact-icon {

    width: 46px;

    height: 46px;

    display: grid;

    place-items: center;

    color: #25D366;

    background: #ffffff;

    border-radius: 50%;

    flex-shrink: 0;
}

.whatsapp-contact-icon svg {

    width: 28px;

    height: 28px;
}

.whatsapp-arrow {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    margin-left: 5px;

    color: #ffffff;

    background:
        rgba(0, 0, 0, 0.22);

    border-radius: 50%;

    font-size: 1.1rem;

    transition:
        all 0.35s ease;
}

.whatsapp-contact-button:hover {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #111111,
            #050505
        );

    transform:
        translateY(-5px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.25);
}

.whatsapp-contact-button:hover
.whatsapp-contact-icon {

    color: #ffffff;

    background: #25D366;
}

.whatsapp-contact-button:hover
.whatsapp-arrow {

    background: var(--red);

    transform:
        translateX(4px);
}

.whatsapp-caption {

    margin-top: 10px;

    color: #888888;

    font-size: 0.75rem;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    color: #cccccc;

    background: #030303;

    border-top:
        2px solid var(--gold);
}

.site-footer > .container {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 60px;

    padding-top: 80px;

    padding-bottom: 60px;
}

.footer-logo img {

    width: 170px;

    margin-bottom: 20px;
}

.footer-company > p {

    max-width: 350px;

    color: #888888;

    font-size: 0.88rem;
}

.social-links {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 25px;
}

.social-links a {

    padding: 7px 12px;

    color: #aaaaaa;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 3px;

    font-size: 0.75rem;

    transition: var(--transition);
}

.social-links a:hover {

    color: var(--black);

    background: var(--gold);

    border-color: var(--gold);
}

.footer-column h3 {

    margin-bottom: 20px;

    color: var(--gold-light);

    font-size: 1rem;
}

.footer-column li {

    margin-bottom: 10px;

    font-size: 0.85rem;
}

.footer-column a {

    color: #888888;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

    color: #666666;

    font-size: 0.78rem;
}

.footer-bottom div {

    display: flex;

    gap: 20px;
}

.footer-bottom a {

    color: #666666;

    font-size: 0.78rem;
}

.footer-bottom a:hover {
    color: var(--gold);
}


/* =========================================================
   GOLD SELECTION
========================================================= */

::selection {

    color: var(--black);

    background: var(--gold);
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            var(--gold),
            var(--gold-dark)
        );

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-navigation > ul {
        gap: 18px;
    }

    .main-header .container {
        gap: 20px;
    }

    .hero-section .container {
        gap: 40px;
    }

    .about-section .container,
    .manufacturing-section .container {
        gap: 50px;
    }

    .product-grid,
    .features-grid,
    .industry-grid,
    .customization-grid,
    .testimonial-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .site-footer > .container {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .catalogue-box {

        grid-template-columns:
            1fr 230px;

        gap: 45px;

        padding: 55px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    section {
        padding: 75px 0;
    }

    .container {

        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }


    /* TOP BAR */

    .top-bar {
        display: none;
    }


    /* HEADER */

    .main-header .container {
        min-height: 72px;
    }

    .logo img {
        width: 135px;
    }

    .main-navigation {
        display: none;
    }

    .header-button {

        padding: 11px 17px;

        font-size: 0.75rem;
    }


    /* HERO */

    .hero-section {

        min-height: auto;

        padding: 70px 0;
    }

    .hero-section .container {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        height: 420px;
    }

    .hero-image::after {
        inset:
            10px -10px -10px 10px;
    }


    /* STATS */

    .stats-section .container {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat-item {

        padding: 20px 10px;

        border-bottom:
            1px solid
            rgba(201, 162, 39, 0.15);
    }


    /* ABOUT */

    .about-section .container,
    .manufacturing-section .container,
    .contact-section .container {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image img {
        height: 400px;
    }


    /* PRODUCTS */

    .product-grid,
    .features-grid,
    .industry-grid,
    .customization-grid,
    .testimonial-grid,
    .showcase-grid {

        grid-template-columns: 1fr;
    }

    .product-image img {
        height: 250px;
    }


    /* MANUFACTURING */

    .manufacturing-image {
        order: -1;
    }

    .manufacturing-image img {
        height: 400px;
    }


    /* INDUSTRIES */

    .industry-card {
        min-height: 240px;
    }


    /* SHOWCASE / CATALOGUE */

    .showcase-section {
        padding: 70px 0;
    }

    .catalogue-box {

        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            45px 35px;
    }

    .catalogue-side {

        padding-left: 0;

        padding-top: 30px;

        border-left: none;

        border-top:
            1px solid
            rgba(212, 175, 55, 0.25);
    }

    .catalogue-number span {

        writing-mode: initial;

        transform: none;
    }


    /* CONTACT */

    .contact-form-wrapper {
        padding: 25px;
    }


    /* WHATSAPP */

    .contact-whatsapp {
        margin-top: 30px;
    }

    .whatsapp-contact-button {

        width: 100%;

        justify-content: space-between;

        font-size: 0.78rem;
    }


    /* FOOTER */

    .site-footer > .container {

        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 60px;
    }

    .footer-bottom .container {

        min-height: auto;

        padding-top: 25px;

        padding-bottom: 25px;

        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    h1 {
        font-size: 2.7rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .hero-image img {
        height: 350px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .stats-section .container {

        grid-template-columns:
            1fr 1fr;
    }

    .stat-item strong {
        font-size: 1.8rem;
    }

    .feature,
    .customization-item,
    .testimonial {
        padding: 25px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }


    /* CATALOGUE */

    .showcase-section {
        padding: 55px 0;
    }

    .catalogue-box {
        padding: 35px 22px;
    }

    .catalogue-content h2 {
        font-size: 38px;
    }

    .catalogue-content p {
        font-size: 14px;
    }

    .catalogue-button {

        width: 100%;

        min-width: 0;
    }
}