/* ========================================
   VARTH FASTENERS — DESIGN SYSTEM
======================================== */
:root {
    --primary:        #0B1F3A;
    --primary-2:      #132A4E;
    --secondary:      #FF6A00;
    --secondary-2:    #FF8A3D;
    --bg:             #F7F9FC;
    --text:           #1A1A1A;
    --text-muted:     #5B6472;
    --white:          #ffffff;
    --border:         #e7ebf1;
    --shadow-sm:      0 4px 16px rgba(11,31,58,.06);
    --shadow:         0 10px 40px rgba(11,31,58,.10);
    --shadow-lg:      0 25px 60px rgba(11,31,58,.18);
    --radius:          16px;
    --radius-sm:       10px;
    --transition:      all .35s cubic-bezier(.4,0,.2,1);
    --font-head:       'Montserrat', sans-serif;
    --font-body:       'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); }

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: .75rem;
    letter-spacing: -.5px;
}
.section-title-dark { color: var(--white); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 3rem;
}
.section-subtitle-dark { color: rgba(255,255,255,.6); }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,106,0,.1);
    color: var(--secondary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-family: var(--font-head);
}
.section-badge-dark { background: rgba(255,255,255,.1); color: var(--secondary-2); }

.section-head {
    max-width: 1280px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.view-all-link {
    color: var(--secondary);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
}
.view-all-link:hover { gap: .8rem; }

/* Buttons */
.btn-primary-custom {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
    padding: .85rem 2.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}
.btn-primary-custom:hover {
    background: #e35f00;
    border-color: #e35f00;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,106,0,.35);
}
.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
    padding: .85rem 2.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}
.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-white {
    background: var(--secondary);
    color: var(--white);
    padding: .9rem 2.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    white-space: nowrap;
}
.btn-white:hover {
    background: #e35f00;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.btn-quote {
    background: var(--secondary);
    color: var(--white);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .65rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-quote:hover { background: #e35f00; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,106,0,.4); }

/* ========================================
   TOPBAR
======================================== */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    background: rgba(11,31,58,.65);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: var(--transition);
}
.topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: .5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: .8rem;
}
.topbar-left { display: none; }
.topbar-left a, .topbar-right a {
    color: rgba(255,255,255,.7);
    font-weight: 500;
    transition: var(--transition);
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--secondary-2); }
.topbar-left a i, .topbar-right a i { color: var(--secondary); margin-right: .35rem; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: .8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.lang-btn i:first-child { color: var(--secondary); }
.lang-menu { min-width: 140px; border-radius: 10px; border: none; box-shadow: var(--shadow-lg); }

/* ========================================
   HEADER / NAVBAR / MEGA MENU
======================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: .85rem 0;
    transition: var(--transition);
    background: var(--primary);
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.site-header.scrolled {
    padding: .6rem 0;
    box-shadow: var(--shadow);
}
/* Auto-hide: slides out of view while moving down the page */
.site-header.header-hidden { transform: translateY(-100%); }

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar-brand-wrap { display: flex; align-items: center; gap: .7rem; }
.brand-mark {
    width: 44px; height: 44px;
    background: linear-gradient(145deg, var(--secondary), var(--secondary-2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(255,106,0,.35);
    flex-shrink: 0;
}
.brand-v { width: 22px; height: 22px; color: var(--white); }
/* An uploaded logo brings its own shape, so the orange tile behind it steps aside. */
.brand-mark.has-logo { background: none; box-shadow: none; border-radius: 0; }
.brand-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; display: block; }
.brand-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand-text {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .5px;
    transition: var(--transition);
}
.navbar-brand-dot { color: var(--secondary); font-weight: 700; }
.brand-tagline {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,.55);
    transition: var(--transition);
}

.nav-list { display: flex; align-items: center; gap: .1rem; }
.nav-link-item {
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: .6rem .75rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
}
.mega-caret { font-size: .6rem; transition: var(--transition); }
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link-item:hover::after, .nav-link-item.active::after { left: .75rem; right: .75rem; }
.nav-link-item:hover, .nav-link-item.active { color: var(--secondary-2) !important; }

/* Mega menu */
.has-mega { position: relative; }
.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 600px;
    max-width: 90vw;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.75rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
    z-index: 20;
}
.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.has-mega:hover .mega-caret { transform: rotate(180deg); }
.mega-menu-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mega-col h6 {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .9rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--bg);
}
.mega-col a {
    display: block;
    color: var(--text-muted);
    font-size: .87rem;
    font-weight: 500;
    padding: .45rem 0;
    transition: var(--transition);
}
.mega-col a:hover { color: var(--secondary); padding-left: .35rem; }
.mega-menu-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.1rem;
    border-top: 2px solid var(--bg);
}
.mega-foot-link, .mega-foot-all {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 700;
    transition: var(--transition);
}
.mega-foot-link { color: var(--primary); }
.mega-foot-link i { color: var(--secondary); }
.mega-foot-link:hover { color: var(--secondary); }
.mega-foot-all { color: var(--secondary); }
.mega-foot-all:hover { gap: .8rem; }

.header-actions { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO
======================================== */
.hero-section {
    position: relative;
    width: 100%;
    /* Full window height. svh = smallest viewport height, so mobile browser
       chrome appearing/disappearing does not resize the hero mid-scroll. */
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
    padding: 104px 0 3rem;
}
.hero-bg {
    position: absolute;
    /* Taller than the section (with a matching negative top offset) so the
       scroll-linked parallax (main.js translates this by yPercent 18) never
       pulls the video away from the section's top/bottom edge and exposes
       the solid background behind it. */
    top: -25%;
    left: 0;
    right: 0;
    height: 150%;
}
/* Background video — the hero shows video only; if it cannot play (or the
   visitor prefers reduced motion) the section's solid --primary shows through.
   object-fit: contain keeps the full video frame on screen — nothing is
   ever cropped off its edges — letterboxing onto --primary where the
   video's aspect ratio doesn't match the section's. */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
    .hero-video { display: none; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Kept only as far left as the heading needs for contrast, so the footage
       itself reads clearly instead of sitting under a navy wash. */
    background: linear-gradient(90deg, rgba(11,31,58,.62) 0%, rgba(11,31,58,.20) 42%, rgba(11,31,58,0) 62%);
}
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    width: 100%;
}
.hero-content { max-width: 620px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
    padding: .5rem 1.1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--secondary); border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1);} 50% { opacity:.5; transform:scale(1.4);} }

.hero-heading {
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}
.hero-heading span { color: var(--secondary); }
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin-bottom: 1rem;
    font-weight: 500;
}
.hero-serving {
    font-size: .92rem;
    color: rgba(255,255,255,.55);
    max-width: 560px;
    margin-bottom: 2.5rem;
}
.hero-serving strong { color: rgba(255,255,255,.85); font-weight: 600; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========================================
   STATS BAND
======================================== */
.stats-band {
    background: linear-gradient(120deg, var(--primary), var(--primary-2));
    padding: 1.5rem 0;
    position: relative;
}
.stats-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-item {
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,.08);
    padding: 0 .5rem;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 32px; height: 32px;
    margin: 0 auto .4rem;
    background: rgba(255,106,0,.15);
    border: 1px solid rgba(255,106,0,.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-2);
    font-size: .85rem;
}
.stat-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-head);
}
.stat-static { font-size: 1.1rem; }
.stat-suffix { color: var(--secondary-2); }
.stat-label {
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    margin-top: .28rem;
    font-weight: 500;
    letter-spacing: .3px;
}

/* ========================================
   ABOUT
======================================== */
.about-section {
    padding: 7rem 0;
    background-color: var(--white);
    /* Product-shot texture behind the section, washed out with a mostly-opaque
       white overlay so it reads as a visible backdrop while the existing
       dark text/icons stay fully readable. */
    background-image:
        linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,.8)),
        url('../../img/background/background_image2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
.about-content .section-title { text-align: left; }
.about-desc { color: var(--text-muted); margin-bottom: 1.25rem; }
.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
    margin: 1.5rem 0 2.25rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--primary);
    min-width: 0;
}
.feature-item .check {
    width: 34px; height: 34px;
    background: rgba(255,106,0,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: .85rem;
    flex-shrink: 0;
}

.about-visual { position: relative; }
.about-image-wrap { position: relative; margin-bottom: 1.25rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img-main {
    width: 100%;
    object-fit: cover;
    height: 400px;
    display: block;
    transition: var(--transition);
}

/* --- About auto slider --- */
.about-slides { position: relative; height: 400px; }
.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}
.about-slide.active { opacity: 1; visibility: visible; }
.about-slide img { height: 100%; }
.about-slide.active img { animation: aboutSlideZoom 6s ease-out forwards; }
@keyframes aboutSlideZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}
.about-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: var(--primary);
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.about-slider-arrow.prev { left: 1rem; }
.about-slider-arrow.next { right: 1rem; }
.about-slider:hover .about-slider-arrow { opacity: 1; }
.about-slider-arrow:hover { background: var(--secondary); color: var(--white); }
.about-slider-dots {
    position: absolute;
    left: 0; right: 0;
    bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: .5rem;
    z-index: 2;
}
.about-slider-dot {
    width: 9px; height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: var(--transition);
}
.about-slider-dot.active { background: var(--secondary); width: 24px; border-radius: 20px; }

.about-gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.gallery-tile {
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 0;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gallery-tile:hover img { transform: scale(1.1); }
.gallery-tile.active { border-color: var(--secondary); }
.gallery-tile:not(.active) img { opacity: .65; }

/* ========================================
   PRODUCTS
======================================== */
.products-section {
    padding: 7rem 0;
    /* Light theme-tinted gradient: subtle navy-to-orange wash over the page's
       base --bg tone, keeping the section airy while echoing brand colors. */
    background: linear-gradient(135deg, rgba(11,31,58,.14) 0%, var(--bg) 45%, rgba(255,106,0,.22) 100%);
}
.products-section .section-title,
.products-section .section-badge { text-align: left; }
.products-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.product-card:hover { border-color: transparent; transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card-media {
    aspect-ratio: 1;
    width: 100%;
    background: linear-gradient(150deg, var(--bg), #eef1f7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.product-card-media img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); }
.product-card:hover .product-card-media { background: linear-gradient(150deg, #eef1f7, #e4e9f1); }
.product-card:hover .product-card-media img { transform: scale(1.12); }
.product-card h3 { font-size: .85rem; font-weight: 700; color: var(--primary); margin: 1.1rem .5rem .3rem; transition: color .35s cubic-bezier(.4,0,.2,1); }
.product-card:hover h3 { color: var(--secondary); }
.product-card-link {
    color: var(--secondary);
    font-size: .74rem;
    font-weight: 700;
    opacity: 0;
    max-height: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    padding: 0 .5rem;
}
.product-card:hover .product-card-link { opacity: 1; max-height: 30px; padding-bottom: 1rem; }
/* Stretch the card link over the whole card so anywhere on it is clickable */
.product-card .product-card-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }

/* ========================================
   INDUSTRIES
======================================== */
.industries-section {
    padding: 4.5rem 0;
    background: linear-gradient(160deg, var(--primary), #081527);
    position: relative;
    overflow: hidden;
}
.industries-pattern { opacity: .5; }
.industries-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
}
.industry-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .9rem;
    padding: 0 .5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
}
.industry-card:last-child { border-right: none; }
.industry-card:hover { transform: translateY(-4px); }
.industry-icon {
    width: 52px; height: 52px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 1.2rem;
    transition: var(--transition);
}
.industry-card:hover .industry-icon { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.industry-card span { color: rgba(255,255,255,.75); font-size: .76rem; font-weight: 600; }

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials-section {
    padding: 7rem 0;
    /* Same light theme-tinted gradient as .products-section, for a
       consistent brand wash across sections that share the --bg tone. */
    background: linear-gradient(135deg, rgba(11,31,58,.14) 0%, var(--bg) 45%, rgba(255,106,0,.22) 100%);
}
.testimonials-track-wrap { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; position: relative; }

/* Viewport clips the sliding track */
.testimonials-viewport { overflow: hidden; }

/* Flex track that slides horizontally */
.testimonials-track {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}
/* When carousel is active, cards align left so slide math is exact */
.testimonials-track-wrap.is-carousel .testimonials-track { justify-content: flex-start; }

/* 3 per view on desktop (gap 1.75rem × 2 = 3.5rem) */
.testimonial-card {
    flex: 0 0 calc((100% - 3.5rem) / 3);
    max-width: calc((100% - 3.5rem) / 3);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}

/* Prev / Next arrows */
.testimonial-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.testimonial-arrow:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.testimonial-arrow.prev { left: -8px; }
.testimonial-arrow.next { right: -8px; }
.testimonials-track-wrap.is-carousel .testimonial-arrow { display: flex; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.quote-mark { color: rgba(255,106,0,.15); font-size: 2.2rem; margin-bottom: .5rem; }
.stars { color: var(--secondary); font-size: .9rem; margin-bottom: 1rem; }
.testimonial-card p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--secondary); }
/* Initials stand in for a missing testimonial photo */
.author-avatar-initials {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, var(--primary), var(--primary-2));
    color: var(--white);
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .5px;
}
.author-info h5 { color: var(--primary); font-size: .95rem; font-weight: 700; }
.author-info span { color: var(--text-muted); font-size: .78rem; }
.testimonial-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50px; background: #d6dbe4; border: none; cursor: pointer; transition: var(--transition); }
.testimonial-dot.active { background: var(--secondary); width: 26px; }

/* ========================================
   CONTENT PAGES (Privacy Policy, Terms …)
   Styles the rich text produced by CKEditor in the admin panel.
======================================== */
.legal-section { padding: 5rem 0; background: var(--bg); }
.legal-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.legal-updated {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.legal-body { color: var(--text-muted); font-size: .95rem; line-height: 1.85; }
.legal-body h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin: 2.5rem 0 .85rem;
    padding-left: .85rem;
    border-left: 3px solid var(--secondary);
}
.legal-body h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 1.75rem 0 .6rem; }
.legal-body h2:first-child, .legal-body h3:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 1.1rem; }
.legal-body strong { color: var(--text); font-weight: 700; }
.legal-body a { color: var(--secondary); text-decoration: underline; }
.legal-body a:hover { color: var(--primary); }
.legal-body ul, .legal-body ol { margin: 0 0 1.25rem 1.5rem; }
.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li { margin-bottom: .5rem; padding-left: .25rem; }
.legal-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius-sm);
    font-style: italic;
}
.legal-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .88rem; }
.legal-body th, .legal-body td { border: 1px solid var(--border); padding: .65rem .85rem; text-align: left; }
.legal-body th { background: var(--bg); color: var(--primary); font-weight: 700; }
.legal-body img { border-radius: var(--radius-sm); margin: 1rem 0; }
.legal-body figure { margin: 1.5rem 0; }
.legal-body figure img { margin: 0; }
.legal-body figcaption { font-size: .8rem; color: var(--text-muted); margin-top: .5rem; }
.legal-body hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
/* Wide tables scroll inside the card instead of stretching the page */
.legal-body .table-wrap, .legal-body figure.table { overflow-x: auto; }

@media (max-width: 768px) {
    .legal-section { padding: 3rem 0; }
    .legal-inner { padding: 1.75rem 1.25rem; margin: 0 1rem; }
    .legal-body h2 { font-size: 1.05rem; }
}

/* ========================================
   TEAM
======================================== */
.team-section { padding: 7rem 0; background: var(--bg); }
.team-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 1.75rem 2rem;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.team-avatar {
    width: 190px;
    height: 190px;
    aspect-ratio: 1 / 1;   /* keep the avatar square whatever the source image is */
    margin: 0 auto 1.35rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(150deg, var(--primary), var(--primary-2));
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.team-card:hover .team-avatar { box-shadow: 0 0 0 3px var(--secondary), var(--shadow); }
.team-avatar img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.team-initials {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
}
.team-name { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: .3rem; }
.team-role {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
}
.team-intro { font-size: .86rem; color: var(--text-muted); line-height: 1.75; }

/* ========================================
   CERTIFICATIONS
======================================== */
.certifications-section { padding: 5rem 0; background: var(--white); border-top: 1px solid var(--border); }
.cert-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.cert-badge {
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    opacity: .85;
    filter: grayscale(15%);
}
.cert-badge:hover { opacity: 1; filter: none; transform: translateY(-4px); }
.cert-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--primary); letter-spacing: .5px; }
.cert-sub { font-size: .6rem; font-weight: 700; letter-spacing: 1.5px; color: var(--text-muted); }

/* ========================================
   CTA
======================================== */
.cta-section {
    padding: 3.5rem 0;
    background-color: var(--primary);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 50%, rgba(255,106,0,.18) 0%, rgba(255,106,0,0) 45%),
        linear-gradient(100deg, #050d1a 0%, #0b1f3a 55%, #132a4e 100%);
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}
.cta-content .section-badge { display: none; }
.cta-section h2 { font-size: 1.9rem; font-weight: 800; color: var(--white); margin-bottom: .6rem; line-height: 1.3; }
.cta-section p { color: rgba(255,255,255,.6); font-size: .98rem; margin-bottom: 0; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ========================================
   FOOTER
======================================== */
.footer { background: #081527; padding-top: 5rem; color: rgba(255,255,255,.7); }
.footer-top {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-link { margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.8; margin: 0 0 1.5rem; color: rgba(255,255,255,.5); }
.social-links { display: flex; gap: .75rem; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); transform: translateY(-3px); }
.footer-heading { color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: 1.5rem; position: relative; padding-bottom: .75rem; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--secondary); border-radius: 2px; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .85rem; transition: var(--transition); display: inline-flex; align-items: center; gap: .4rem; }
.footer-links a:hover { color: var(--secondary-2); padding-left: .3rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-contact-icon {
    width: 30px; height: 30px;
    background: rgba(255,106,0,.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-2);
    font-size: .8rem;
    flex-shrink: 0;
}
.newsletter-form { display: flex; gap: .5rem; margin-top: .75rem; }
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: .65rem 1rem;
    color: var(--white);
    font-size: .85rem;
    outline: none;
    transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus { border-color: var(--secondary); background: rgba(255,255,255,.09); }
.newsletter-form button { background: var(--secondary); color: var(--white); border: none; border-radius: 8px; padding: .65rem 1.1rem; cursor: pointer; font-size: .9rem; transition: var(--transition); }
.newsletter-form button:hover { background: #e35f00; }
.footer-bottom { max-width: 1320px; margin: 0 auto; padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--secondary-2); }

/* ========================================
   SCROLL TO TOP
======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px; height: 46px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255,106,0,.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: #e35f00; transform: translateY(-3px); }

/* ========================================
   SCROLL REVEAL (fallback + GSAP hook classes)
======================================== */
.reveal, .gsap-fade-up { opacity: 0; transform: translateY(30px); }
.reveal.revealed, .gsap-fade-up.revealed { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
.reveal-img { opacity: 1; }
/* Slide-in-from-the-side reveals */
.gsap-fade-left  { opacity: 0; transform: translateX(-60px); }
.gsap-fade-right { opacity: 0; transform: translateX(60px); }
.gsap-fade-left.revealed, .gsap-fade-right.revealed {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .8s ease, transform .8s ease;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .nav-list { gap: 0; }
    .nav-link-item { font-size: .8rem; padding: .55rem .6rem; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1.05rem 1rem; }
    .stat-item:nth-child(3) { border-right: none; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: .75rem; }
    .industries-grid { flex-wrap: wrap; row-gap: 2rem; }
    .industry-card { flex: 0 0 20%; border-right: none; }
    .cert-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    /* 2 testimonials per view on tablet (gap 1.75rem) */
    .testimonial-card { flex-basis: calc((100% - 1.75rem) / 2); max-width: calc((100% - 1.75rem) / 2); }
    .footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .hero-content { max-width: 100%; text-align: center; margin: 0 auto; }
    .hero-desc, .hero-serving { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .products-section .section-title, .products-section .section-badge { text-align: center; }
    .section-head { justify-content: center; text-align: center; }
}
@media (max-width: 900px) {
    .topbar-left { display: none; }
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .header-actions .btn-quote { display: none; }
    .site-header.mobile-open .nav-menu {
        display: block;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: var(--primary);
        padding: 6rem 1.75rem 2rem;
        box-shadow: -10px 0 40px rgba(0,0,0,.3);
        overflow-y: auto;
        z-index: 30;
    }
    .site-header.mobile-open .nav-list { flex-direction: column; align-items: stretch; gap: .25rem; }
    .site-header.mobile-open .nav-link-item { color: var(--white); width: 100%; }
    .site-header.mobile-open .mega-menu { position: static; opacity: 1; visibility: visible; transform: none; width: 100%; box-shadow: none; background: rgba(255,255,255,.05); display: none; margin-top: .5rem; }
    .site-header.mobile-open .has-mega.mega-open .mega-menu { display: block; }
    .site-header.mobile-open .mega-menu-inner { grid-template-columns: 1fr; gap: 1.25rem; }
    .site-header.mobile-open .mega-col h6 { color: rgba(255,255,255,.9); }
    .site-header.mobile-open .mega-col a { color: rgba(255,255,255,.6); }
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); }
    .stat-item:nth-child(2n) { border-right: none; }
    .about-features { grid-template-columns: 1fr; gap: 1rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-card { flex: 0 0 33.33%; }
    /* 1 testimonial per view on mobile */
    .testimonial-card { flex-basis: 100%; max-width: 100%; }
    .testimonial-arrow { display: none !important; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .team-section { padding: 4.5rem 0; }
    .team-grid { grid-template-columns: 1fr; max-width: 460px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-content { flex-direction: column; text-align: center; }
    .cta-section h2 { font-size: 1.6rem; }
    .about-gallery { grid-template-columns: repeat(5, 1fr); gap: .5rem; }
    .about-slides, .about-img-main { height: 300px; }
    .about-slider-arrow { opacity: 1; width: 36px; height: 36px; }
}
@media (max-width: 480px) {
    .section-title { font-size: 1.75rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions a { justify-content: center; }
    .products-grid, .industries-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .mega-menu { width: 92vw; padding: 1.25rem; }
}

/* ========================================
   ABOUT US PAGE
======================================== */

/* Reusable button variants used on this page */
.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--primary);
    color: var(--white);
    padding: .95rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--transition);
}
.btn-navy:hover { background: var(--secondary); color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,106,0,.3); }
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.4);
    padding: .8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--transition);
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* ---- Page Banner ---- */
.page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
    padding: 7rem 0 5rem;
    margin-top: 0;
}
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,13,26,.92) 0%, rgba(11,31,58,.75) 55%, rgba(19,42,78,.35) 100%);
}
.page-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.page-banner-inner h1 {
    color: var(--white);
    font-size: 3.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .6rem;
}
.page-banner-inner > p {
    color: rgba(255,255,255,.85);
    font-size: 1.4rem;
    font-weight: 500;
    font-family: var(--font-head);
    max-width: 520px;
    line-height: 1.35;
    margin-bottom: 1.75rem;
}
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
}
.breadcrumb-nav a { color: var(--white); font-weight: 600; transition: var(--transition); }
.breadcrumb-nav a:hover { color: var(--secondary-2); }
.breadcrumb-nav i { font-size: .65rem; color: var(--secondary); }
.breadcrumb-nav span { color: var(--secondary-2); font-weight: 600; }

/* ---- About Company ---- */
.about-company { padding: 5rem 0; background: var(--white); }
.about-company-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 440px) 1fr;
    gap: 4rem;
    align-items: center;
}
.ac-visual { position: relative; }
.ac-image-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ac-image-wrap img { width: 100%; display: block; aspect-ratio: 4 / 4.4; object-fit: cover; }
.ac-badge {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    box-shadow: var(--shadow);
}
.ac-badge i { font-size: 1.6rem; color: var(--secondary-2); }
.ac-badge strong { display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; line-height: 1; }
.ac-badge span { font-size: .72rem; color: rgba(255,255,255,.75); line-height: 1.2; }

.ac-label {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.ac-content h2 { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1.25; margin-bottom: 1rem; }
.ac-divider { display: block; width: 60px; height: 3px; background: var(--secondary); border-radius: 3px; margin-bottom: 1.5rem; }
.ac-divider-center { margin: .5rem auto 2.5rem; }
.ac-content p { color: var(--text-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1.1rem; }
.ac-content .btn-navy { margin-top: .75rem; }

/* ---- Stats Band ---- */
.about-stats { background: var(--primary); background-image: linear-gradient(100deg, var(--primary), var(--primary-2)); padding: 2.75rem 0; }
.about-stats-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.as-item { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.as-icon { font-size: 2rem; color: rgba(255,255,255,.85); }
.as-text strong { display: block; font-family: var(--font-head); color: var(--white); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.as-text span { font-size: .78rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .5px; }

/* ---- Our Story ---- */
.our-story { padding: 5rem 0; background: var(--bg); }
.story-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
/* 5 identical boxes: 6 tracks with each card spanning 2 gives 3 per row, and
   starting card 4 at track 2 centres the remaining pair. grid-auto-rows: 1fr
   makes every row as tall as the tallest, so all 5 boxes match exactly. */
.story-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
}
.story-card { grid-column: span 2; }
.story-card:nth-child(4) { grid-column: 2 / span 2; }
.story-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.story-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.sc-icon { font-size: 2.4rem; color: var(--secondary); margin-bottom: 1.25rem; }
.story-card h4 { font-size: .9rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .85rem; }
.story-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.7; }

/* ---- Why Choose Us ---- */
.why-choose { padding: 4.5rem 0; background: var(--white); text-align: center; }
.wc-title { font-size: 1.6rem; font-weight: 800; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; }
.wc-panel {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.25rem;
}
.wc-item { display: flex; flex-direction: column; align-items: center; gap: .9rem; padding: 0 .5rem; }
.wc-icon {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
    font-size: 1.4rem;
    transition: var(--transition);
}
.wc-item:hover .wc-icon { background: var(--secondary); color: var(--white); transform: translateY(-4px); }
.wc-item p { font-size: .82rem; color: var(--text); font-weight: 600; line-height: 1.4; }

/* ---- CTA Band ---- */
.about-cta-band {
    position: relative;
    background: linear-gradient(100deg, var(--primary), var(--primary-2));
    padding: 3rem 0;
    margin: 3rem auto;
    max-width: 1320px;
    border-radius: var(--radius);
    overflow: hidden;
}
.about-cta-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 50%, rgba(255,106,0,.2) 0%, rgba(255,106,0,0) 45%);
    pointer-events: none;
}
.about-cta-inner {
    position: relative;
    z-index: 1;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.about-cta-text h2 { color: var(--white); font-size: 1.7rem; font-weight: 800; line-height: 1.3; }
.about-cta-text p { color: rgba(255,255,255,.7); font-size: 1rem; margin-top: .35rem; }
.about-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-company-grid { grid-template-columns: minmax(0, 360px) 1fr; gap: 2.5rem; }
    .about-stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 1.75rem; }
    /* 2 per row; the lone 5th box centres itself */
    .story-cards { grid-template-columns: repeat(4, 1fr); }
    .story-card:nth-child(4) { grid-column: span 2; }
    .story-card:nth-child(5) { grid-column: 2 / span 2; }
    .wc-panel { grid-template-columns: repeat(4, 1fr); row-gap: 2rem; }
    .page-banner-inner h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .about-company-grid { grid-template-columns: 1fr; }
    .ac-visual { max-width: 420px; margin: 0 auto; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    /* single column */
    .story-cards { grid-template-columns: repeat(2, 1fr); }
    .story-card:nth-child(4), .story-card:nth-child(5) { grid-column: span 2; }
    .wc-panel { grid-template-columns: repeat(2, 1fr); }
    .page-banner { padding: 5rem 0 3.5rem; }
    .page-banner-inner h1 { font-size: 2.2rem; }
    .page-banner-inner > p { font-size: 1.1rem; }
    .about-cta-inner { flex-direction: column; text-align: center; }
    .about-cta-actions { justify-content: center; }
}
@media (max-width: 480px) {
    .about-stats-grid { grid-template-columns: 1fr; }
    .wc-panel { grid-template-columns: 1fr; }
}

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

/* ---- Banner ---- */
.pp-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
    padding: 5.5rem 0;
    overflow: hidden;
}
.pp-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #050d1a 0%, rgba(11,31,58,.85) 40%, rgba(19,42,78,.25) 70%, rgba(19,42,78,.05) 100%);
}
.pp-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.pp-banner-our {
    display: block;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}
.pp-banner-title {
    display: block;
    color: var(--secondary);
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.05;
}
.pp-banner-line { display: block; width: 70px; height: 4px; background: var(--secondary); border-radius: 4px; margin: 1.25rem 0; }
.pp-banner-inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 380px; line-height: 1.6; }

/* ---- Feature strip ---- */
.pp-features { background: #f0f3f8; border-bottom: 1px solid var(--border); }
.pp-features-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pp-feature { display: flex; align-items: center; gap: 1rem; padding-right: 1.5rem; border-right: 1px solid var(--border); }
.pp-feature:last-child { border-right: none; }
.pp-feature-icon { flex-shrink: 0; font-size: 1.9rem; color: var(--primary); }
.pp-feature h4 { font-size: .95rem; font-weight: 800; color: var(--primary); margin-bottom: .15rem; }
.pp-feature p { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }

/* ---- Main layout ---- */
.pp-main { padding: 3.5rem 0; background: var(--white); }
.pp-main-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.pp-cat-box { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pp-cat-head {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.15rem 1.4rem;
    border-bottom: 3px solid var(--secondary);
}
.pp-cat-list li + li { border-top: 1px solid var(--border); }
.pp-cat-link {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1.4rem;
    color: var(--text);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--transition);
}
.pp-cat-ico { width: 34px; flex: 0 0 34px; color: var(--primary); font-size: 1rem; text-align: center; transition: var(--transition); }
/* Category product photo shown in front of the name */
.pp-cat-ico img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--white);
    display: block;
}
.pp-cat-name { flex: 1; }
.pp-cat-arrow { font-size: .7rem; color: var(--text-muted); transition: var(--transition); }
.pp-cat-link:hover, .pp-cat-link.active { background: rgba(255,106,0,.07); color: var(--secondary); }
.pp-cat-link:hover .pp-cat-ico, .pp-cat-link.active .pp-cat-ico,
.pp-cat-link:hover .pp-cat-arrow, .pp-cat-link.active .pp-cat-arrow { color: var(--secondary); }
.pp-cat-link:hover .pp-cat-arrow { transform: translateX(3px); }

.pp-promo {
    position: relative;
    margin-top: 1.75rem;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
}
.pp-promo-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(11,31,58,.95), rgba(11,31,58,.78)); }
.pp-promo-content { position: relative; z-index: 1; padding: 1.75rem 1.5rem; }
.pp-promo-content h3 { color: var(--white); font-size: 1.35rem; font-weight: 800; line-height: 1.25; margin-bottom: .75rem; }
.pp-promo-content p { color: rgba(255,255,255,.8); font-size: .88rem; line-height: 1.6; margin-bottom: 1.5rem; }
.pp-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .75rem 1.4rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.pp-promo-btn:hover { background: #e35f00; color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(255,106,0,.35); }

/* Content head */
.pp-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.pp-range-title { font-size: 1.5rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; }
.pp-range-line { display: block; width: 55px; height: 3px; background: var(--secondary); border-radius: 3px; margin-top: .6rem; }
.pp-search { display: flex; align-items: stretch; max-width: 320px; width: 100%; }
.pp-search input {
    flex: 1;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: .7rem 1rem;
    font-family: var(--font-body);
    font-size: .88rem;
    outline: none;
    color: var(--text);
}
.pp-search input:focus { border-color: var(--secondary); }
.pp-search button {
    border: none;
    background: var(--primary);
    color: var(--white);
    padding: 0 1.05rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}
.pp-search button:hover { background: var(--secondary); }

/* Product grid */
.pp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pp-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
/* Stretch the card link over the whole card so anywhere on it is clickable */
.pp-card .pp-card-btn::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.pp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.pp-card-media {
    background: linear-gradient(150deg, #f4f6fa, #e9edf4);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pp-card-media img { max-width: 100%; max-height: 100%; object-fit: contain; transition: var(--transition); }
.pp-card:hover .pp-card-media img { transform: scale(1.08); }
.pp-card-body { padding: 1.15rem 1.15rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.pp-card-body h3 { font-size: .92rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .3px; margin-bottom: .5rem; transition: color .35s cubic-bezier(.4,0,.2,1); }
.pp-card:hover .pp-card-body h3 { color: var(--secondary); }
.pp-card-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.1rem; flex: 1; }
.pp-card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .6rem 1rem;
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--transition);
}
.pp-card-btn:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }

/* ---- Product detail page (reuses the listing styles above) ---- */
.pp-back-btn { flex: 0 0 auto; justify-content: center; gap: .5rem; }
.pp-detail-intro { font-size: .9rem; color: var(--text-muted); line-height: 1.8; max-width: 70ch; margin-bottom: 2rem; }

/* ---- Assurance band ---- */
.pp-assure { background: linear-gradient(100deg, var(--primary), var(--primary-2)); padding: 2.5rem 0; }
.pp-assure-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pp-assure-item { display: flex; align-items: center; gap: 1rem; padding-right: 1.5rem; border-right: 1px solid rgba(255,255,255,.12); }
.pp-assure-item:last-child { border-right: none; }
.pp-assure-icon { flex-shrink: 0; font-size: 2rem; color: var(--secondary-2); }
.pp-assure-item h4 { color: var(--white); font-size: .95rem; font-weight: 800; margin-bottom: .15rem; }
.pp-assure-item p { color: rgba(255,255,255,.65); font-size: .8rem; line-height: 1.4; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .pp-features-inner { grid-template-columns: repeat(2, 1fr); }
    .pp-feature:nth-child(2n) { border-right: none; }
    .pp-main-inner { grid-template-columns: 240px 1fr; }
    .pp-assure-inner { grid-template-columns: repeat(2, 1fr); row-gap: 1.75rem; }
    .pp-assure-item:nth-child(2n) { border-right: none; }
    .pp-banner-title { font-size: 3.2rem; }
}
@media (max-width: 860px) {
    .pp-main-inner { grid-template-columns: 1fr; }
    .pp-promo { max-width: 420px; }
}
@media (max-width: 700px) {
    .pp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .pp-features-inner { grid-template-columns: 1fr; }
    .pp-feature { border-right: none; padding-right: 0; }
    .pp-assure-inner { grid-template-columns: 1fr; }
    .pp-assure-item { border-right: none; }
    .pp-content-head { flex-direction: column; align-items: stretch; }
    .pp-banner-title { font-size: 2.6rem; }
    .pp-banner-our { font-size: 1.5rem; }
}
@media (max-width: 420px) {
    .pp-grid { grid-template-columns: 1fr; }
}

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

/* ---- Banner ---- */
.ct-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
    padding: 4rem 0 4.5rem;
    overflow: hidden;
}
.ct-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #050d1a 0%, rgba(11,31,58,.9) 38%, rgba(19,42,78,.4) 68%, rgba(19,42,78,.05) 100%);
}
.ct-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.ct-banner-inner .breadcrumb-nav { margin-bottom: 1.25rem; }
.ct-banner-inner h1 {
    color: var(--white);
    font-size: 3.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}
.ct-banner-inner h1 span { color: var(--secondary); }
.ct-banner-line { display: block; width: 70px; height: 4px; background: var(--secondary); border-radius: 4px; margin: 1.25rem 0 1.5rem; }
.ct-banner-sub { color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: .75rem; }
.ct-banner-inner > p { color: rgba(255,255,255,.82); font-size: .98rem; max-width: 420px; line-height: 1.6; margin-bottom: 2rem; }

.ct-banner-info { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.ct-bi-item { display: flex; align-items: center; gap: .85rem; }
.ct-bi-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
}
.ct-bi-item strong { display: block; color: var(--white); font-family: var(--font-head); font-size: .92rem; font-weight: 700; }
.ct-bi-item span { color: rgba(255,255,255,.7); font-size: .85rem; }

/* ---- Info strip ---- */
.ct-info { background: var(--bg); padding: 0; }
.ct-info-inner {
    max-width: 1320px;
    margin: -3rem auto 0;
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
}
.ct-info-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-left: auto; margin-right: auto;
    max-width: 1290px;
    overflow: hidden;
}
.ct-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.75rem 1.5rem; border-right: 1px solid var(--border); }
.ct-info-item:last-child { border-right: none; }
.ct-info-icon { flex-shrink: 0; font-size: 1.7rem; color: var(--primary); margin-top: .15rem; }
.ct-info-item h4 { font-size: .95rem; font-weight: 800; color: var(--primary); margin-bottom: .4rem; }
.ct-info-item p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ---- Main (form + map) ---- */
.ct-main { padding: 3.5rem 0; background: var(--bg); }
.ct-main-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}
.ct-heading { font-size: 1.5rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; }
.ct-heading-line { display: block; width: 55px; height: 3px; background: var(--secondary); border-radius: 3px; margin: .6rem 0 1.75rem; }

.ct-form-box, .ct-map-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
}

.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ct-field { margin-bottom: 1rem; }
.ct-field input, .ct-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    resize: vertical;
}
.ct-field input:focus, .ct-field textarea:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(255,106,0,.1); }
.ct-field input::placeholder, .ct-field textarea::placeholder { color: #9aa3b2; }
.ct-err { display: block; color: #d93025; font-size: .78rem; margin-top: .35rem; }
.ct-submit {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: .95rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: .5rem;
}
.ct-submit:hover { background: #e35f00; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,106,0,.35); }
.ct-alert { padding: .9rem 1.15rem; border-radius: var(--radius-sm); font-size: .88rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .6rem; }
.ct-alert-success { background: rgba(34,160,80,.1); color: #1c7c40; border: 1px solid rgba(34,160,80,.25); }

/* Map — fills the remaining height so the box matches the form box */
.ct-map {
    flex: 1;
    min-height: 380px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}
.ct-map iframe { width: 100%; height: 100%; min-height: 380px; display: block; }

/* ---- CTA band ---- */
.ct-cta-wrap { background: var(--bg); padding: 1rem 0 4rem; }
.ct-cta {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
}
.ct-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, #050d1a 0%, rgba(11,31,58,.92) 45%, rgba(19,42,78,.6) 100%); }
.ct-cta-inner { position: relative; z-index: 1; padding: 2.75rem 2.5rem; display: flex; align-items: center; gap: 1.75rem; }
.ct-cta-icon {
    flex-shrink: 0;
    width: 68px; height: 68px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
    font-size: 1.7rem;
}
.ct-cta-text h2 { color: var(--white); font-size: 1.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.ct-cta-line { display: block; width: 45px; height: 3px; background: var(--secondary); border-radius: 3px; margin: .6rem 0 .85rem; }
.ct-cta-text p { color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.6; margin-bottom: 1.25rem; max-width: 520px; }
.ct-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .8rem 1.6rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.ct-cta-btn:hover { background: #e35f00; color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(255,106,0,.35); }

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .ct-info-inner { grid-template-columns: repeat(2, 1fr); }
    .ct-info-item:nth-child(2n) { border-right: none; }
    .ct-info-item:nth-child(1), .ct-info-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    .ct-main-inner { grid-template-columns: 1fr; }
    .ct-banner-inner h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .ct-banner-info { gap: 1.5rem; }
    .ct-cta-inner { flex-direction: column; text-align: center; }
    .ct-cta-overlay { background: linear-gradient(180deg, rgba(11,31,58,.92), rgba(11,31,58,.85)); }
}
@media (max-width: 560px) {
    .ct-info-inner { grid-template-columns: 1fr; }
    .ct-info-item { border-right: none; border-bottom: 1px solid var(--border); }
    .ct-info-item:last-child { border-bottom: none; }
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-form-box, .ct-map-box { padding: 1.5rem; }
    .ct-map, .ct-map iframe { min-height: 280px; }
    .ct-banner-inner h1 { font-size: 2.3rem; }
}

/* ========================================
   PRODUCT IMAGE HOVER SLIDER
======================================== */
.ps-slider {
    position: relative;
    flex: 1;
    align-self: stretch;
    width: 100%;
}
.ps-slider .ps-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .4s ease, transform var(--transition);
}
.ps-slider .ps-slide.is-active { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .ps-slider .ps-slide { transition: none; }
}



