/* ============================================================
   INDUSTRIAL PORTFOLIO — PREMIUM CSS v2.0
   100% FREE — No Premium Lock
   ============================================================ */

/* ---------- CSS Variables (overridden by Customizer) ---------- */
:root {
    --accent: #D0101D;
    --accent-dark: #a50e17;
    --dark: #010064;
    --dark2: #00004a;
    --gray: #4a5568;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --border: #dde3ee;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 2px 12px rgba(1, 0, 100, .08);
    --shadow: 0 8px 30px rgba(1, 0, 100, .12);
    --shadow-lg: 0 20px 60px rgba(1, 0, 100, .18);
    --transition: all 0.3s ease;
    --ff-head: 'Inter', 'Segoe UI', Arial, sans-serif;
    --ff-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    color: var(--gray);
    background: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-head);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
}

ul {
    list-style: none;
}

input,
textarea,
button,
select {
    font-family: var(--ff-body);
}

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.m-l {
    margin-left: 12px;
}

.section-pad {
    padding: 100px 0;
}

.bg-light {
    background: var(--light-bg);
}

.text-accent {
    color: var(--accent);
}

.text-white {
    color: var(--white);
}

.big-num {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--ff-head);
    color: var(--accent);
}

/* ---------- Section Headers ---------- */
.section-header {
    margin-bottom: 55px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.75;
}

.title-bar {
    width: 55px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto;
}

.title-bar.left {
    margin: 16px 0 0;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--ff-head);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    line-height: 1;
}

.btn-lg {
    padding: 15px 34px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(208, 16, 29, 0.4);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(208, 16, 29, 0.3);
    transform: translateY(-2px);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(208, 16, 29, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(208, 16, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(208, 16, 29, 0);
    }
}

.btn-pulse {
    animation: pulse-ring 2s infinite;
}

/* ========================
   TOP BAR
   ======================== */
.top-bar {
    background: var(--dark);
    color: #aab0c4;
    font-size: 0.82rem;
    padding: 8px 0;
}

.tb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tb-left,
.tb-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tb-left i,
.tb-right i {
    color: var(--accent);
    margin-right: 5px;
}

.tb-right a {
    color: #aab0c4;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}

.tb-right a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ========================
   HEADER
   ======================== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 20px;
}

/* Brand (Logo) */
.site-brand {
    flex-shrink: 0;
}

.site-brand .custom-logo {
    height: 55px;
    width: auto;
}

.text-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-family: var(--ff-head);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.logo-text {
    line-height: 1;
}

/* Desktop Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-list li a {
    color: var(--dark);
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-list li a:hover {
    color: var(--accent);
}

.nav-list li a:hover::after {
    width: calc(100% - 28px);
}

/* Header CTA */
.header-actions {
    flex-shrink: 0;
}

/* --- 3-LINE HAMBURGER --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
    flex-shrink: 0;
}

.bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--accent);
}

.hamburger.is-active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--accent);
}

/* Mobile Drawer */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ============================================================
   MOBILE NAVIGATION DRAWER — Professional v6
   ============================================================ */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 92vw);
    height: 100%;
    height: 100dvh; /* dynamic viewport for mobile browsers */
    background: #05101f;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
}
.mobile-nav-drawer.open {
    transform: translateX(0);
}

/* ── HEADER: Logo + Close ────────────────────────── */
.drw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: #03080f;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

/* Logo — custom upload */
.drw-brand { flex: 1; min-width: 0; display: flex; align-items: center; }

.drw-logo-link {
    display: flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

/* THE KEY FIX — force custom logo to show correctly in dark drawer */
.drw-logo-link .custom-logo {
    height: 44px !important;
    width: auto !important;
    max-width: 175px;
    object-fit: contain;
    display: block;
}

/* Text logo fallback */
.drw-text-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}
.drw-logo-icon {
    display: flex;
    align-items: center;
    color: var(--accent);
    flex-shrink: 0;
}
.drw-logo-name {
    font-family: var(--ff-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Close button */
.drawer-close {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    padding: 0;
}
.drawer-close:hover,
.drawer-close:focus {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    outline: none;
}

/* ── NAVIGATION AREA ────────────────────────────── */
.drw-nav {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(208,16,29,0.35) transparent;
}
.drw-nav::-webkit-scrollbar { width: 3px; }
.drw-nav::-webkit-scrollbar-track { background: transparent; }
.drw-nav::-webkit-scrollbar-thumb { background: rgba(208,16,29,0.35); border-radius: 2px; }

.mobile-nav-list {
    list-style: none;
    padding: 4px 0;
    margin: 0;
}
.mobile-nav-list li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-list li:last-child { border-bottom: none; }

.mobile-nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.8);
    font-family: var(--ff-head) !important;
    font-weight: 700;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 20px;
    transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
    text-decoration: none;
}
.mobile-nav-list > li > a::after {
    content: '';
    width: 5px;
    height: 5px;
    border-right: 1.8px solid rgba(255,255,255,0.28);
    border-top: 1.8px solid rgba(255,255,255,0.28);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: border-color 0.15s ease;
}
.mobile-nav-list > li > a:hover {
    color: #fff;
    background: rgba(208,16,29,0.14);
    padding-left: 26px;
}
.mobile-nav-list > li > a:hover::after {
    border-color: var(--accent);
}

/* Sub-menu items */
.mobile-nav-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0,0,0,0.3);
}
.mobile-nav-list ul li a {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem !important;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: none;
    padding: 10px 20px 10px 32px;
    transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
    text-decoration: none;
}
.mobile-nav-list ul li a:hover {
    color: var(--accent);
    background: rgba(208,16,29,0.08);
    padding-left: 38px;
}

/* ── CTA BUTTONS ────────────────────────────────── */
.drw-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.drw-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    border-radius: 8px;
    font-family: var(--ff-head);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    line-height: 1;
    white-space: nowrap;
}
.drw-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.drw-btn-contact   { background: var(--accent); color: #fff; }
.drw-btn-whatsapp  { background: #25D366; color: #fff; }

/* ── CONTACT INFO BLOCK ─────────────────────────── */
.drw-contact-block {
    padding: 12px 20px 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.drw-block-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
}
.drw-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255,255,255,0.58);
    font-size: 0.78rem;
    text-decoration: none;
    padding: 4px 0;
    line-height: 1.5;
    transition: color 0.15s ease;
}
a.drw-contact-item:hover { color: rgba(255,255,255,0.9); }
.drw-contact-addr { align-items: flex-start; }
.drw-ci-icon {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-top: 1px;
}

/* ── FOOTER ROW: Social + Trust ─────────────────── */
.drw-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.drw-social {
    display: flex;
    align-items: center;
    gap: 7px;
}
.drw-soc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    flex-shrink: 0;
}
.drw-soc-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.drw-soc-wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.25); color: #25D366; }
.drw-soc-wa:hover { background: #25D366; border-color: #25D366; color: #fff; }

.drw-trust-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ========================
   HERO SLIDER
   ======================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .swiper,
.hero-section .heroSwiper {
    width: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 70px;
}

@media (max-width: 768px) {
    .hero-slide {
        padding: 60px 0 50px;
    }
}

/* CSS geometric background shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--accent);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: float1 12s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    animation: float2 9s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 40%;
    opacity: 0.05;
    animation: float1 15s ease-in-out infinite reverse;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(15deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-10deg);
    }
}

/* Grid overlay lines */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    padding: 0 20px;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(208, 16, 29, 0.15);
    border: 1px solid rgba(208, 16, 29, 0.4);
    border-radius: 30px;
    padding: 8px 20px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: 800;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 36px;
    max-width: 620px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 48px;
}

/* Hero Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: inline-flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
}

.hero-stats::-webkit-scrollbar {
    display: none;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    flex-shrink: 0;
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--ff-head);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.18);
}

/* Swiper controls */
.swiper-button-prev,
.swiper-button-next {
    color: var(--white) !important;
    background: rgba(208, 16, 29, 0.25);
    border: 1px solid rgba(208, 16, 29, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px !important;
    font-weight: 900;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 24px !important;
    border-radius: 4px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ========================
   SUB HERO SECTION (Red Theme Machine Slider)
   ======================== */

/* Section \u2014 hard-coded red, CSS var as progressive enhancement */
.sub-hero-section {
    position: relative;
    background-color: #D0101D;
    background-color: var(--accent, #D0101D);
    overflow: hidden;
    z-index: 0;
}

/* Decorative pattern overlay (behind content) */
.sub-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(45deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
    pointer-events: none;
}

/* Swiper container \u2014 must stay transparent so red section shows through */
.sub-hero-section .sub-hero-swiper {
    position: relative;
    z-index: 1;
    background: transparent;
}

.sub-hero-section .swiper-wrapper {
    background: transparent;
    align-items: stretch;
}

/*
 * CRITICAL FIX: Force HORIZONTAL layout on every slide.
 * Swiper 11 sets .swiper-slide { width:100%; position:relative; }
 * We MUST use !important to override any display:block fallback.
 */
.sub-hero-section .swiper-slide,
.shs-slide {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    min-height: 480px;
    background-color: transparent !important;
    position: relative;
    z-index: 1;
}

/* LEFT: Image Column */
.shs-image-col {
    flex: 0 0 44%;
    max-width: 44%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 30px 52px 48px;
    position: relative;
}

.shs-image-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: transparent;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shs-image-wrap:hover {
    transform: scale(1.05);
}

.shs-machine-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: normal;
    transition: transform 0.6s ease;
}

.shs-image-wrap:hover .shs-machine-img {
    transform: scale(1.06);
}

/* Placeholder when no image set */
.shs-machine-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.shs-ph-icon {
    font-size: 5.5rem;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1;
}

.shs-ph-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--ff-head);
    text-align: center;
    padding: 0 16px;
}


/* Vertical divider between columns */
.shs-divider {
    position: absolute;
    right: 0;
    top: 12%;
    height: 76%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.22) 35%, rgba(255, 255, 255, 0.22) 65%, transparent 100%);
}

/* RIGHT: Content Column */
.shs-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px 52px 52px 42px;
}

.shs-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.73rem;
    font-weight: 700;
    font-family: var(--ff-head);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
    backdrop-filter: blur(6px);
}

.shs-title {
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    font-family: var(--ff-head);
}

.shs-subtitle {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.72;
    margin-bottom: 26px;
    max-width: 480px;
}

/* Benefits list */
.shs-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.shs-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.55;
    font-family: var(--ff-body);
}

.shs-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 2px;
    color: var(--white);
}

/* CTA buttons row */
.shs-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.shs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.87rem;
    font-family: var(--ff-head);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    line-height: 1;
}

.shs-btn-primary {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.shs-btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.shs-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.shs-btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--white);
    transform: translateY(-2px);
}

/* Swiper Nav for Sub Hero */
.sub-hero-swiper .swiper-button-prev,
.sub-hero-swiper .swiper-button-next {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.sub-hero-swiper .swiper-button-prev:hover,
.sub-hero-swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
}

.sub-hero-swiper .swiper-button-prev::after,
.sub-hero-swiper .swiper-button-next::after {
    font-size: 15px !important;
    font-weight: 900;
}

/* Swiper Pagination */
.sub-hero-swiper .swiper-pagination {
    bottom: 16px !important;
}

.sub-hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.40) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    transition: all 0.3s ease !important;
    margin: 0 5px !important;
}

.sub-hero-swiper .swiper-pagination-bullet-active {
    background: var(--white) !important;
    width: 28px !important;
    border-radius: 4px !important;
}

/* Responsive — Keep horizontal but reduce sizes */
@media (max-width: 768px) {

    .sub-hero-section .swiper-slide,
    .shs-slide {
        flex-direction: row !important;
        align-items: center !important;
        min-height: auto !important;
        padding: 30px 0;
    }

    .shs-image-col {
        flex: 0 0 45% !important;
        max-width: 45% !important;
        padding: 5px 15px !important;
    }

    .shs-image-wrap {
        max-width: 260px;
        margin: 0 auto;
    }

    .shs-divider {
        display: none;
    }

    .shs-content-col {
        padding: 15px 20px 20px !important;
        flex: 1;
    }

    .shs-title {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }

    .shs-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
    }

    .shs-benefits li {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }
}

@media (max-width: 520px) {
    .shs-slide {
        padding: 15px 0 !important;
    }

    .shs-image-col {
        flex: 0 0 42% !important;
        max-width: 42% !important;
        padding: 2px 10px !important;
    }

    .shs-image-wrap {
        max-width: 160px;
    }

    .shs-content-col {
        padding: 5px 10px !important;
    }

    .shs-tag {
        font-size: 0.65rem !important;
        padding: 2px 8px !important;
        margin-bottom: 5px !important;
    }

    .shs-title {
        font-size: 1rem !important;
        margin-bottom: 5px !important;
    }

    .shs-subtitle {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px !important;
        font-size: 0.75rem !important;
    }

    .shs-benefits {
        display: none;
    }

    .shs-cta-row {
        gap: 5px;
    }

    .shs-btn {
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
    }
}


/* ========================
   SERVICES
   ======================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    border-bottom-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.sc-icon-wrap {
    width: 65px;
    height: 65px;
    background: rgba(208, 16, 29, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .sc-icon-wrap {
    background: var(--accent);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
}

.sc-link:hover {
    gap: 12px;
}

/* ========================
   ABOUT
   ======================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark);
    aspect-ratio: 4/3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, #2d3561 100%);
    position: relative;
}

.about-hero-icon {
    font-size: 10rem;
    color: rgba(208, 16, 29, 0.15);
}

.about-badge-float {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-sub {
    display: block;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-top: 4px;
}

.about-text {
    font-size: 1.02rem;
    line-height: 1.8;
    margin: 20px 0 28px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.af-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
}

/* ========================
   COUNTER BANNER
   ======================== */
.counter-banner {
    background: var(--dark);
    padding: 60px 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.counter-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-item:last-child {
    border-right: none;
}

.counter-item i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.count-num {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--ff-head);
    color: var(--white);
    line-height: 1;
}

.count-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.count-num::after {
    content: '+';
    color: var(--accent);
}

/* ========================
   PORTFOLIO
   ======================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pf-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.pf-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.pf-thumb {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.pf-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pf-card:hover .pf-img {
    transform: scale(1.08);
}

.pf-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #888;
    font-family: var(--ff-head);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pf-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
}

.pf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 0, 100, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.pf-card:hover .pf-overlay {
    opacity: 1;
}

.pf-actions {
    display: flex;
    gap: 12px;
}

.pf-btn {
    width: 46px;
    height: 46px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    transform: translateY(10px);
}

.pf-card:hover .pf-btn {
    transform: translateY(0);
}

.pf-btn:hover {
    background: var(--white);
    color: var(--accent);
}

.pf-cat-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 5;
}

.pf-info {
    padding: 22px 22px 20px;
}

.pf-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.pf-info h3 a {
    color: var(--dark);
}

.pf-info h3 a:hover {
    color: var(--accent);
}

.pf-info p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.pf-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent);
}

.pf-read-more:hover {
    gap: 10px;
}

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
    background: var(--dark);
    background-image: linear-gradient(135deg, #010064, #00004a);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================
   CONTACT
   ======================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
    margin-top: 50px;
}

.ci-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.ci-item:last-child {
    border-bottom: none;
}

.ci-icon {
    width: 50px;
    height: 50px;
    background: rgba(208, 16, 29, 0.12);
    color: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ci-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.ci-item p {
    font-size: 0.92rem;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(208, 16, 29, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
    background: var(--dark2);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-site-name {
    color: var(--white);
    font-family: var(--ff-head);
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a i {
    color: var(--accent);
    font-size: 0.7rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact p i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

/* ========================
   BLOG / INDEX
   ======================== */
.page-content-area {
    padding: 80px 0;
    min-height: 60vh;
}

.entry-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.entry-content {
    font-size: 1rem;
    line-height: 1.8;
}

.no-results h1 {
    margin-bottom: 16px;
}

/* ========================
   About Pillars (No icon)
   ======================== */
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 20px 0 28px;
}

.ap-item {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 14px 16px;
    border-left: 3px solid var(--accent);
}

.ap-item .ap-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.ap-item .ap-text span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* About V2 grid */
.about-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.about-visual-wrap {
    position: relative;
}

.about-float-cards {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: flex-start;
}

.afc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 100px;
}

.afc-card.afc-accent {
    background: var(--accent);
    border-color: var(--accent);
}

.afc-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--ff-head);
    color: var(--dark);
    line-height: 1;
}

.afc-accent .afc-num {
    color: var(--white);
}

.afc-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-top: 4px;
}

.afc-accent .afc-label {
    color: rgba(255, 255, 255, 0.8);
}

.about-prose {
    display: flex;
    flex-direction: column;
}

.about-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ========================
   RESPONSIVE BREAKPOINTS
   ======================== */

@media (max-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-item:nth-child(2) {
        border-right: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 900px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    /* About v2 stack */
    .about-grid-v2 {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-visual-wrap {
        order: -1;
    }

    .about-img-box {
        aspect-ratio: 16/7;
        max-height: 280px;
    }

    /* Keep float cards side-by-side */
    .about-float-cards {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .stat-divider {
        display: block;
        flex-shrink: 0;
    }
}

@media (max-width: 640px) {

    /* === TOP WHITE HEADER MOBILE MARGIN === */
    .header-inner {
        padding: 10px 16px;
        margin: 0;
    }

    .top-bar {
        padding: 6px 0;
    }

    .tb-inner {
        gap: 10px;
    }

    .section-pad {
        padding: 55px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* === HERO STATS — HORIZONTAL SINGLE ROW ON MOBILE === */
    .hero-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px 14px;
        gap: 0;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius);
        justify-content: flex-start;
    }

    .stat-item {
        padding: 0 14px;
        flex-shrink: 0;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-divider {
        display: block;
        width: 1px;
        height: 36px;
        flex-shrink: 0;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    /* === ABOUT SECTION MOBILE — 50 YEARS BADGE & SUB CARDS === */
    .about-grid-v2 {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-visual-wrap {
        order: -1;
    }

    .about-img-box {
        aspect-ratio: 16/8;
        max-height: 240px;
    }

    .about-badge-float {
        bottom: 12px;
        right: 12px;
        padding: 10px 14px;
    }

    .big-num {
        font-size: 2.4rem;
    }

    .badge-sub {
        font-size: 0.72rem;
    }

    .about-float-cards {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
    }

    .afc-card {
        flex: 1;
        min-width: 0;
        padding: 12px 10px;
    }

    .afc-num {
        font-size: 1.3rem;
    }

    /* About pillars 2-col on mobile */
    .about-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .ap-item {
        padding: 10px 12px;
    }

    .ap-item .ap-text strong {
        font-size: 0.82rem;
    }

    .ap-item .ap-text span {
        font-size: 0.72rem;
    }

    .about-cta-row {
        flex-direction: column;
        gap: 10px;
    }

    .about-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .tb-left span:last-child {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* === FOOTER MOBILE — PROFESSIONAL HORIZONTAL LAYOUT === */
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
        /* Brand spans full width */
    }

    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .footer-col ul li a {
        font-size: 0.82rem;
    }

    .footer-contact p {
        font-size: 0.8rem;
        gap: 6px;
        margin-bottom: 8px;
    }

    .footer-top {
        padding: 48px 0 32px;
    }

    .footer-bottom-inner {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        text-align: center;
    }

    .footer-tagline {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .social-links {
        margin-top: 14px;
    }
}

/* ============================================================
   LOCATIONS / OFFICES SECTION
   ============================================================ */
.locations-section {
    background: var(--dark);
    color: #fff;
}

.locations-section .section-tag {
    color: rgba(255, 255, 255, .7);
}

.locations-section .section-title {
    color: #fff;
}

.locations-section .section-sub {
    color: rgba(255, 255, 255, .6);
}

.locations-section .title-bar {
    background: var(--accent);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    margin-top: 40px;
}

/* Head Office Card */
.loc-card-main {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    grid-row: span 2;
}

.loc-card-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    border-radius: 4px 4px 0 0;
}

.loc-icon-wrap {
    margin-bottom: 16px;
}

.loc-icon {
    font-size: 2.5rem;
}

.loc-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.loc-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loc-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.loc-dl {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 1px;
}

.loc-details a {
    color: var(--accent);
}

.loc-details a:hover {
    color: #fff;
}

/* Showroom Cards */
.loc-card-show {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--tr);
}

.loc-card-show:hover {
    background: rgba(208, 16, 29, .12);
    border-color: rgba(208, 16, 29, .5);
    transform: translateY(-4px);
}

.loc-show-num {
    font-size: .72rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.loc-show-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.loc-show-city {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.loc-show-area {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 12px;
}

.loc-show-tag {
    display: inline-block;
    background: rgba(208, 16, 29, .18);
    color: var(--accent);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(208, 16, 29, .3);
}

/* Locations responsive */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .loc-card-main {
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   WHY CHOOSE US — Industrial 6-Card Grid
   ============================================================ */
.why-us-section {
    background: #fff;
}

.wc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.wc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--wc-color, var(--dark));
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.wc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 0, 100, .02) 0%, transparent 60%);
    pointer-events: none;
}

.wc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(1, 0, 100, .12);
    border-color: var(--accent);
    border-top-color: var(--accent);
}

.wc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.wc-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    font-family: var(--ff-head);
    letter-spacing: -2px;
    transition: var(--transition);
}

.wc-card:hover .wc-num {
    color: rgba(208, 16, 29, .1);
}

.wc-icon {
    font-size: 2rem;
    line-height: 1;
    background: var(--light-bg);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    transition: var(--transition);
}

.wc-card:hover .wc-icon {
    background: var(--accent);
}

.wc-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -.2px;
}

.wc-desc {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.75;
}

.wc-bar {
    height: 3px;
    width: 0;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 20px;
    transition: width .4s ease;
}

.wc-card:hover .wc-bar {
    width: 100%;
}

/* ============================================================
   ABOUT  WHO WE ARE (Premium Industrial)
   ============================================================ */
.about-section {
    background: var(--light-bg);
}

.about-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-visual-wrap {
    position: relative;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.about-graphic {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    border-radius: var(--radius-lg);
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-graphic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(208, 16, 29, .15) 0%, transparent 60%);
}

.about-hero-icon {
    font-size: 7rem;
    opacity: .15;
}

.about-badge-float {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-align: center;
}

.about-badge-float .big-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
}

.badge-sub {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .9;
    display: block;
    margin-top: 4px;
    line-height: 1.4;
}

.about-float-cards {
    position: absolute;
    top: 28px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.afc-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    border-left: 4px solid var(--dark);
    min-width: 140px;
}

.afc-card.afc-accent {
    border-left-color: var(--accent);
}

.afc-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
    display: block;
    line-height: 1;
    font-family: var(--ff-head);
}

.afc-card.afc-accent .afc-num {
    color: var(--accent);
}

.afc-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    display: block;
    margin-top: 4px;
}

/* About Right Content */
.about-prose .section-tag {
    color: var(--accent);
}

.about-text {
    font-size: .96rem;
    color: var(--gray);
    line-height: 1.85;
    margin: 20px 0 28px;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}

.ap-item {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--dark);
    border-radius: var(--radius);
    padding: 16px 18px;
    transition: var(--transition);
}

.ap-item:hover {
    border-left-color: var(--accent);
    transform: translateX(3px);
}

.ap-text strong {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3px;
    letter-spacing: -.1px;
}

.ap-text span {
    font-size: .78rem;
    color: var(--gray);
}

.about-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   OUR TOP BRAND  3 Brands Horizontal
   ============================================================ */
.brands-section {
    background: var(--dark);
    color: #fff;
}

.brands-section .section-tag {
    color: rgba(255, 255, 255, .6);
}

.brands-section .section-title {
    color: #fff;
}

.brands-section .section-sub,
.brands-section .brand-tagline {
    color: rgba(255, 255, 255, .65);
}

.brands-section .title-bar {
    background: var(--accent);
}

.brand-logos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.brand-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.brand-card:hover {
    background: rgba(255, 255, 255, .09);
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.brand-logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90px;
}

.brand-logo-img {
    max-height: 80px;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .85;
    transition: var(--transition);
}

.brand-card:hover .brand-logo-img {
    opacity: 1;
}

.brand-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand-logo-icon {
    font-size: 2.8rem;
    opacity: .5;
}

.brand-logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--ff-head);
}

.brand-info {
    width: 100%;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-family: var(--ff-head);
}

.brand-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
}

/* ============================================================
   TRUSTED BY  Infinite Marquee Scroll
   ============================================================ */
.trusted-by-section {
    background: var(--light-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 44px 0;
}

.trusted-label {
    text-align: center;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 30px;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg), transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-decoration: none;
    min-width: 180px;
}

.marquee-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(208, 16, 29, .12);
    transform: translateY(-3px);
}

.trusted-logo-img {
    height: 40px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .65;
    transition: var(--transition);
}

.marquee-item:hover .trusted-logo-img {
    filter: none;
    opacity: 1;
}

.trusted-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.trusted-logo-icon {
    font-size: 1.4rem;
    opacity: .4;
}

.trusted-logo-name {
    font-size: .78rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ============================================================
   COUNTER BANNER  Industrial Stats Bar
   ============================================================ */
.counter-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.counter-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(208, 16, 29, .12) 0%, transparent 70%);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.counter-item {
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.counter-item:last-child {
    border-right: none;
}

.counter-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
    opacity: .7;
}

.count-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--ff-head);
}

.count-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .55);
}

/* ============================================================
   RESPONSIVE  All new sections
   ============================================================ */
@media (max-width: 1024px) {
    .wc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-float-cards {
        position: static;
        flex-direction: row;
        margin-top: 16px;
    }

    .brand-logos-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-item {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
}

@media (max-width: 640px) {
    .wc-grid {
        grid-template-columns: 1fr;
    }

    .brand-logos-row {
        grid-template-columns: 1fr;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-row {
        flex-direction: column;
    }

    .about-cta-row .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   COMPREHENSIVE MOBILE OVERHAUL v5.4
   ============================================================ */

/* Force Inter font on EVERYTHING on all devices */
*,
*::before,
*::after {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body,
input,
textarea,
button,
select {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif !important;
    font-weight: 800 !important;
}

/* ========================
   TABLET  1024px
   ======================== */
@media (max-width: 1024px) {
    .wc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .brand-logos-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .brand-card {
        padding: 24px 18px;
    }

    .about-grid-v2 {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-float-cards {
        position: static;
        flex-direction: row;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .about-graphic {
        height: 300px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-item {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .counter-item:nth-child(2) {
        border-right: none;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* ========================
   MOBILE  768px
   ======================== */
@media (max-width: 768px) {

    /* Container padding */
    .container {
        padding: 0 16px;
    }

    /* Section spacing */
    .section-pad {
        padding: 60px 0;
    }

    /* Section headers */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    .section-sub {
        font-size: .9rem;
    }

    .section-header {
        margin-bottom: 36px;
    }

    /* Hide desktop nav, show hamburger */
    .main-nav,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Header */
    .header-inner {
        padding: 10px 16px;
    }

    .site-brand .custom-logo {
        height: 44px;
    }

    .text-logo {
        font-size: 1.15rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Top bar */
    .top-bar {
        padding: 6px 0;
        font-size: .75rem;
    }

    .tb-inner {
        gap: 8px;
    }

    .tb-left {
        gap: 12px;
    }

    .tb-hide-sm {
        display: none;
    }

    /* Hero */
    .hero-slide {
        min-height: 90vh;
    }

    .hero-content {
        padding: 70px 0 40px;
    }

    .hero-badge {
        font-size: .7rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
        margin-bottom: 14px;
    }

    .hero-sub {
        font-size: .9rem !important;
        margin-bottom: 24px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 12px 14px;
        border-radius: 6px;
    }

    .stat-item {
        padding: 0 14px;
        flex-shrink: 0;
    }

    .stat-num {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: .62rem;
    }

    .stat-divider {
        height: 32px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 36px !important;
        height: 36px !important;
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    /* Why Choose Us */
    .wc-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wc-card {
        padding: 24px 20px;
    }

    .wc-num {
        font-size: 2.5rem;
    }

    .wc-icon {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }

    .wc-title {
        font-size: .98rem;
    }

    .wc-desc {
        font-size: .84rem;
    }

    /* About */
    .about-grid-v2 {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-visual-wrap {
        order: -1;
    }

    .about-graphic {
        height: 220px;
    }

    .about-hero-icon {
        font-size: 4rem;
    }

    .about-badge-float {
        padding: 12px 16px;
        bottom: 14px;
        right: 14px;
    }

    .about-badge-float .big-num {
        font-size: 2rem;
    }

    .badge-sub {
        font-size: .65rem;
    }

    .about-float-cards {
        position: static;
        flex-direction: row;
        margin-top: 12px;
        gap: 10px;
    }

    .afc-card {
        flex: 1;
        min-width: 0;
        padding: 12px 10px;
        text-align: center;
    }

    .afc-num {
        font-size: 1.3rem;
    }

    .afc-label {
        font-size: .65rem;
    }

    .about-text {
        font-size: .88rem;
        margin: 14px 0 18px;
    }

    .about-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .ap-item {
        padding: 12px 14px;
    }

    .ap-text strong {
        font-size: .82rem;
    }

    .ap-text span {
        font-size: .72rem;
    }

    .about-cta-row {
        flex-direction: column;
        gap: 10px;
    }

    .about-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    /* Counter banner */
    .counter-banner {
        padding: 40px 0;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .counter-item {
        padding: 20px 12px;
        border-right: 1px solid rgba(255, 255, 255, .08);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .counter-item:nth-child(2) {
        border-right: none;
    }

    .counter-item:nth-child(3) {
        border-bottom: none;
    }

    .counter-item:nth-child(4) {
        border-right: none;
        border-bottom: none;
    }

    .count-num {
        font-size: 2.2rem;
    }

    .count-label {
        font-size: .65rem;
    }

    .counter-icon {
        font-size: 1.4rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pf-card {
        border-radius: 8px;
        overflow: hidden;
    }

    /* Brands */
    .brands-section {}

    .brand-logos-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .brand-card {
        padding: 24px 20px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        align-items: center;
    }

    .brand-logo-wrap {
        min-height: 60px;
        min-width: 80px;
        width: 80px;
        flex-shrink: 0;
    }

    .brand-logo-text {
        font-size: 1rem;
    }

    .brand-info {
        flex: 1;
    }

    .brand-name {
        font-size: .95rem;
        margin-bottom: 4px;
    }

    .brand-desc {
        font-size: .78rem;
    }

    /* Trusted By */
    .trusted-by-section {
        padding: 32px 0;
    }

    .trusted-label {
        font-size: .72rem;
        margin-bottom: 20px;
    }

    .marquee-item {
        min-width: 140px;
        padding: 10px 18px;
    }

    .trusted-logo-name {
        font-size: .72rem;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 50px;
    }

    /* CTA */
    .cta-banner {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: clamp(1.4rem, 5vw, 1.9rem);
    }

    .cta-content p {
        font-size: .9rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        border-radius: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: .82rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: .9rem;
    }

    .form-intro-bar h3 {
        font-size: 1.05rem;
    }

    .ci-title {
        font-size: 1.1rem;
    }

    .ci-intro {
        font-size: .85rem;
    }

    .ci-item {
        gap: 12px;
    }

    .ci-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .contact-info-header {
        margin-bottom: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col-brand {
        grid-column: auto;
    }

    .footer-top {
        padding: 40px 0 28px;
    }

    .footer-col h4 {
        font-size: .9rem;
        margin-bottom: 12px;
    }

    .footer-tagline {
        font-size: .85rem;
    }

    .footer-col ul li a {
        font-size: .82rem;
    }

    .footer-contact p {
        font-size: .8rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }

    .footer-bottom p {
        font-size: .72rem;
        text-align: center;
    }

    .social-links {
        margin-top: 14px;
        gap: 8px;
    }

    .social-links a {
        width: 34px;
        height: 34px;
    }

    .footer-trust {
        font-size: .78rem;
    }
}

/* ========================
   SMALL MOBILE  480px
   ======================== */
@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.3rem, 7vw, 1.7rem) !important;
    }

    .hero-title {
        font-size: clamp(1.4rem, 8vw, 2rem) !important;
    }

    .hero-btns .btn {
        font-size: .82rem;
        padding: 12px 16px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .brand-card {
        flex-direction: column;
        text-align: center;
    }

    .brand-logo-wrap {
        width: 100%;
        min-width: unset;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wc-card {
        padding: 20px 16px;
    }

    .wc-top {
        margin-bottom: 12px;
    }

    .marquee-item {
        min-width: 120px;
        padding: 8px 14px;
    }

    .trusted-logo-name {
        font-size: .68rem;
    }

    .stat-item {
        padding: 0 10px;
    }

    .btn-xl,
    .btn-lg {
        padding: 13px 20px;
        font-size: .85rem;
    }

    .section-pad {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    /* Mobile drawer — font handled by main drawer CSS */
}

/* ============================================================
   SECTION UPGRADES v5.5  Professional Industrial
   ============================================================ */

/* Fix footer logo size */
.footer-logo .custom-logo {
    height: 48px !important;
    width: auto;
    max-width: 180px;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-site-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo-icon {
    font-size: 1.8rem;
}

/* Services  Premium Cards (fix .sc-icon selector) */
.service-card {
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    transition: var(--transition);
    background: #fff;
}

.service-card:hover {
    border-top-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(1, 0, 100, .12);
}

.sc-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.2px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.75;
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.sc-link:hover {
    color: var(--dark);
    gap: 10px;
}

/* Why Choose Us  Remove icon background shape, bare emoji */
.wc-icon {
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    font-size: 2.4rem !important;
    line-height: 1;
    display: block;
    padding: 0;
}

.wc-top {
    align-items: flex-start;
}

.wc-num {
    font-size: 3.2rem;
    font-weight: 900;
    color: rgba(1, 0, 100, .07);
    line-height: 1;
    letter-spacing: -3px;
}

.wc-card:hover .wc-num {
    color: rgba(208, 16, 29, .08);
}

.wc-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.wc-desc {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.75;
}

/* About float cards  fix number visibility */
.about-float-cards {
    position: absolute;
    top: 24px;
    left: -16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.afc-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    border-left: 4px solid var(--dark);
    min-width: 140px;
}

.afc-card.afc-accent {
    border-left-color: var(--accent);
    background: var(--accent);
}

.afc-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.afc-card.afc-accent .afc-num {
    color: #fff;
}

.afc-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-top: 4px;
}

.afc-card.afc-accent .afc-label {
    color: rgba(255, 255, 255, .85);
}

/* Footer professional upgrade */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
}

.footer-top {
    padding: 70px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-col h4 {
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .55);
    font-size: .875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-tagline {
    font-size: .875rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    margin-bottom: 18px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
}

.footer-contact a {
    color: rgba(255, 255, 255, .7);
}

.footer-contact a:hover {
    color: var(--accent);
}

.fc-icon {
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--accent);
    margin-top: 1px;
}

.footer-trust-bar {
    background: rgba(0, 0, 0, .2);
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-trust-text {
    text-align: center;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-bottom {
    background: rgba(0, 0, 0, .35);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
}

/* ============================================================
   MOBILE HERO  Full professional fix
   ============================================================ */
@media (max-width: 900px) {
    .hero-section {
        position: relative;
        overflow: hidden;
    }

    .heroSwiper {
        width: 100%;
    }

    .hero-slide {
        min-height: 100svh;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 80px 0 50px;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.6rem) !important;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero-sub {
        font-size: clamp(.88rem, 3vw, 1.05rem) !important;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 24px;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
        font-size: .88rem;
        padding: 14px 20px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        padding: 0;
        background: rgba(255, 255, 255, .1);
        border-radius: 8px;
        overflow: hidden;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 14px 10px;
        text-align: center;
        background: rgba(255, 255, 255, .05);
        flex-shrink: unset;
    }

    .stat-num {
        font-size: 1.4rem;
        display: block;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: .62rem;
        letter-spacing: 1px;
    }

    .hero-badge {
        margin-bottom: 14px;
        font-size: .72rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
}

/* ============================================================
   MOBILE FOOTER  Horizontal 2-column layout
   ============================================================ */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-top {
        padding: 44px 0 32px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .footer-col h4 {
        font-size: .75rem;
    }

    .footer-col ul li a {
        font-size: .8rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: .72rem;
    }

    .footer-trust-text {
        font-size: .7rem;
    }
}

/* Mobile services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .sc-icon {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    /* Mobile Why Choose Us */
    .wc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .wc-card {
        padding: 20px 16px;
    }

    .wc-num {
        font-size: 2.2rem;
    }

    .wc-icon {
        font-size: 1.8rem !important;
    }

    .wc-title {
        font-size: .9rem;
    }

    .wc-desc {
        font-size: .8rem;
    }

    /* Mobile about float cards */
    .about-float-cards {
        position: static;
        flex-direction: row;
        margin-top: 14px;
        left: unset;
        top: unset;
    }

    .afc-card {
        min-width: 0;
        flex: 1;
        padding: 14px 12px;
        text-align: center;
    }

    .afc-num {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .wc-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   v5.6 — Hard Industrial Hero Badge + Mobile Hero Full Fix
   ============================================================ */

/* Hero badge  NO emoji, NO soft look, hard industrial pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(208, 16, 29, .12);
    border: 1px solid rgba(208, 16, 29, .45);
    border-left: 3px solid var(--accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 18px;
    border-radius: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: blink-dot 1.4s ease infinite;
}

@keyframes blink-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .3;
        transform: scale(.7);
    }
}

/* Remove old icon style from hero badge */
.hero-badge-icon {
    display: none !important;
}

/* Trusted By label  professional, no emoji */
.trusted-label {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.trusted-label::before,
.trusted-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 120px;
}

/* Trusted By  bulletproof infinite marquee */
.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    user-select: none;
}

/* ============================================================
   MOBILE HERO  Complete professional fix (768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Slider keeps a sensible height, not full-screen tall */
    .hero-section {
        overflow: hidden;
    }

    .heroSwiper {
        height: auto;
    }

    .hero-slide {
        min-height: 0 !important;
        height: auto !important;
        padding: 0;
        display: flex;
        align-items: flex-start;
    }

    /* Add proper padding: top clears fixed header, bottom breathes */
    .hero-content {
        padding: 84px 0 36px !important;
        width: 100%;
    }

    .hero-badge {
        font-size: .62rem;
        letter-spacing: 2px;
        padding: 6px 14px;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 7vw, 2rem) !important;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .hero-sub {
        font-size: .87rem !important;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    /* BUTTONS  2 side-by-side in ONE row */
    .hero-btns {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        flex-wrap: nowrap;
    }

    .hero-btns .btn {
        flex: 1;
        width: auto !important;
        justify-content: center;
        font-size: .78rem;
        padding: 11px 10px;
        white-space: nowrap;
        min-width: 0;
    }

    /* STATS  4 in ONE horizontal row, small and compact */
    .hero-stats {
        display: flex !important;
        grid-template-columns: unset !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        background: rgba(255, 255, 255, .06) !important;
        border: 1px solid rgba(255, 255, 255, .1) !important;
        border-radius: 6px;
        padding: 10px 4px !important;
        overflow: visible !important;
        gap: 0 !important;
        width: 100%;
    }

    .stat-divider {
        display: block !important;
        width: 1px;
        height: 28px;
        background: rgba(255, 255, 255, .15);
        flex-shrink: 0;
        align-self: center;
    }

    .stat-item {
        flex: 1;
        text-align: center;
        padding: 0 4px !important;
        flex-shrink: 1;
        min-width: 0;
    }

    .stat-num {
        font-size: 1.1rem !important;
        display: block;
        line-height: 1;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: .52rem !important;
        line-height: 1.3;
        letter-spacing: .5px;
        white-space: nowrap;
    }
}

/* Extra small mobile */
@media (max-width: 420px) {
    .hero-content {
        padding: 76px 0 30px !important;
    }

    .hero-btns .btn {
        font-size: .72rem;
        padding: 10px 8px;
        letter-spacing: 0;
    }

    .stat-num {
        font-size: 1rem !important;
    }

    .stat-label {
        font-size: .48rem !important;
    }
}

/* ============================================================
   MOBILE FOOTER  Compact, truly horizontal 2-col
   ============================================================ */
@media (max-width: 900px) {
    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 24px 20px !important;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        display: flex;
        align-items: flex-start;
        gap: 24px;
        flex-wrap: wrap;
    }

    .footer-col-brand .footer-brand-wrap {
        flex-shrink: 0;
    }

    .footer-col-brand .footer-tagline {
        flex: 1 1 200px;
        font-size: .8rem;
        margin-bottom: 0;
    }

    .footer-col-brand .social-links {
        align-self: flex-end;
        margin-top: 0;
    }

    .footer-top {
        padding: 36px 0 28px;
    }
}

@media (max-width: 640px) {

    /* Footer stays 2-col even on small phones */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 12px !important;
    }

    .footer-col h4 {
        font-size: .7rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }

    .footer-col ul li {
        margin-bottom: 6px;
    }

    .footer-col ul li a {
        font-size: .78rem;
        gap: 6px;
    }

    .footer-contact p {
        font-size: .75rem;
        margin-bottom: 8px;
        gap: 6px;
    }

    .footer-col-brand .footer-tagline {
        font-size: .75rem;
    }

    .footer-logo .custom-logo {
        height: 40px !important;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 4px;
    }

    .footer-bottom p {
        font-size: .7rem;
        text-align: center;
    }

    .footer-trust-text {
        font-size: .68rem;
        padding: 0 12px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: .75rem;
    }
}

/* ============================================================
   v5.7  Mobile Hero: Left/Right Margins + Badge Removed
   ============================================================ */

/* Ensure the hero-content (which is also .container) has proper
   left/right padding on ALL screen sizes */
.hero-content.container {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 768px) {

    /* Enforce side margins on mobile hero */
    .hero-content.container {
        padding-left: 18px !important;
        padding-right: 18px !important;
        padding-top: 80px !important;
        padding-bottom: 36px !important;
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Keep .hero-stats inside the padded area */
    .hero-stats {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Keep buttons from overflowing */
    .hero-btns {
        width: 100% !important;
    }

    .hero-btns .btn {
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 420px) {
    .hero-content.container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

/* ============================================================
   v5.8 — Hero compact height + stat short labels on mobile
   ============================================================ */

/* Desktop: always show full labels, hide short ones */
.sl-short {
    display: none;
}

.sl-full {
    display: inline;
}

/* ==========================================
   MOBILE HERO  Content-height, not full-screen
   ========================================== */
@media (max-width: 768px) {

    /* Remove the full-screen height  only as tall as content */
    .hero-section,
    .heroSwiper,
    .swiper-wrapper {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-slide {
        min-height: 0 !important;
        height: auto !important;
        padding-bottom: 0 !important;
        /* Background covers only what's visible */
        background-size: cover !important;
        background-position: center top !important;
    }

    /* Tight, content-driven padding */
    .hero-content.container {
        padding-top: 72px !important;
        /* clears sticky header */
        padding-bottom: 28px !important;
        /* compact bottom */
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    /* Title & sub tighter */
    .hero-title {
        margin-bottom: 8px !important;
    }

    .hero-sub {
        margin-bottom: 14px !important;
    }

    .hero-btns {
        margin-bottom: 16px !important;
    }

    /* Stats bar  compact, 1 row, 4 items */
    .hero-stats {
        padding: 8px 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-radius: 0 !important;
        background: rgba(255, 255, 255, .07) !important;
    }

    .stat-item {
        padding: 0 2px !important;
    }

    .stat-num {
        font-size: 1rem !important;
        margin-bottom: 1px;
    }

    /* Switch to short labels on mobile */
    .sl-full {
        display: none !important;
    }

    .sl-short {
        display: inline !important;
        font-size: .52rem !important;
        letter-spacing: .5px;
    }

    .stat-label {
        font-size: .52rem !important;
        line-height: 1.2;
    }

    .stat-divider {
        height: 24px !important;
    }
}

@media (max-width: 420px) {
    .hero-content.container {
        padding-top: 66px !important;
        padding-bottom: 22px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .stat-num {
        font-size: .9rem !important;
    }

    .sl-short {
        font-size: .48rem !important;
    }

    .stat-divider {
        height: 20px !important;
    }

    /* Slightly smaller buttons to stay in 1 row */
    .hero-btns .btn {
        font-size: .72rem !important;
        padding: 9px 8px !important;
    }
}
/* ============================================================
   ABOUT SECTION — Hero Bridge Variant
   Positioned directly under Sub Hero; seamless dark→light flow
   ============================================================ */

.about-section--hero-bridge {
    background: linear-gradient(180deg, #111827 0%, #1c2333 30%, #f8f9fb 30%);
    padding-top: 0;
    position: relative;
    z-index: 2;
}

.about-section--hero-bridge::before {
    content: '';
    display: block;
    height: 80px; /* dark cap above container */
}

/* Lift the inner grid up so it "breaks" the dark/light boundary */
.about-section--hero-bridge .about-grid-v2 {
    margin-top: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.16), 0 4px 20px rgba(0,0,0,0.08);
    padding: 56px 60px;
    position: relative;
    z-index: 3;
    transform: translateY(-40px); /* pulls card up into dark zone */
}

/* Remove bg-light override when section is bridge variant */
.about-section--hero-bridge.bg-light {
    background: linear-gradient(180deg, #111827 0%, #1c2333 30%, #f8f9fb 30%) !important;
}

/* Section tag colour — keep on dark bg above */
.about-section--hero-bridge .about-prose .section-tag {
    color: #e03131;
}

/* Accent line left aligned */
.about-section--hero-bridge .title-bar.left {
    margin-left: 0;
}

/* Smooth entry animation */
@keyframes aboutSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.about-section--hero-bridge .about-grid-v2 {
    animation: aboutSlideUp 0.7s ease both;
}

/* Responsive: collapse card padding on smaller screens */
@media (max-width: 1024px) {
    .about-section--hero-bridge .about-grid-v2 {
        padding: 40px 32px;
        transform: translateY(-24px);
    }
}

@media (max-width: 768px) {
    .about-section--hero-bridge {
        background: linear-gradient(180deg, #111827 0%, #1c2333 20%, #f8f9fb 20%);
    }
    .about-section--hero-bridge .about-grid-v2 {
        padding: 28px 20px;
        transform: translateY(-16px);
        border-radius: 14px;
    }
    .about-section--hero-bridge::before {
        height: 48px;
    }
}

@media (max-width: 480px) {
    .about-section--hero-bridge .about-grid-v2 {
        padding: 24px 16px;
        transform: translateY(-10px);
    }
}

/* ============================================================
   PRODUCT OVERVIEW SECTION
   ============================================================ */
.product-overview-section {
    background: var(--light-bg);
}

.po-main-card {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 48px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ── Image Column ── */
.po-image-col {
    position: relative;
    flex-shrink: 0;
    width: 440px;
    min-width: 0;
}

.po-image-wrap {
    position: relative;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.po-product-img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.po-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 520px;
    background: #0d1b2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.po-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px;
    text-align: center;
}

.po-placeholder-svg {
    width: 72px;
    height: 72px;
    color: rgba(255,255,255,0.18);
}

.po-placeholder-label {
    font-size: .88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.po-placeholder-hint {
    font-size: .75rem;
    color: rgba(255,255,255,0.28);
    max-width: 190px;
    line-height: 1.6;
}

.po-tag-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 3px;
    z-index: 2;
}

/* ── Details Column ── */
.po-details-col {
    padding: 44px 44px 44px 44px;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.po-product-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 14px;
    font-family: var(--ff-head);
    word-break: break-word;
}

.po-title-bar {
    width: 52px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 20px;
}

.po-description {
    font-size: .92rem;
    color: var(--gray);
    line-height: 1.85;
    margin: 0 0 24px;
    word-break: break-word;
}

/* Why Use Block */
.po-why-block {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.po-block-heading {
    font-size: .73rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px;
}

.po-why-block .po-block-heading {
    color: var(--accent);
}

.po-why-text {
    font-size: .87rem;
    color: rgba(255,255,255,0.74);
    line-height: 1.8;
    margin: 0;
    word-break: break-word;
}

/* Where Used Block */
.po-where-block {
    margin-bottom: 28px;
}

.po-where-block .po-block-heading {
    color: var(--dark);
    margin-bottom: 12px;
}

.po-where-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.po-where-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .85rem;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

.po-where-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 5px;
}

/* CTA Row */
.po-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* ── Benefits Grid ── */
.po-benefits-section {
    margin-top: 48px;
}

.po-benefits-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 26px;
    font-family: var(--ff-head);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.po-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.po-benefit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 22px 18px;
    box-sizing: border-box;
}

.po-benefit-card:nth-child(2),
.po-benefit-card:nth-child(5) { border-top-color: var(--dark); }

.po-benefit-card:nth-child(3),
.po-benefit-card:nth-child(6) { border-top-color: #1a5e3a; }

.po-benefit-indicator {
    width: 28px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 12px;
}

.po-benefit-card:nth-child(2) .po-benefit-indicator,
.po-benefit-card:nth-child(5) .po-benefit-indicator { background: var(--dark); }

.po-benefit-card:nth-child(3) .po-benefit-indicator,
.po-benefit-card:nth-child(6) .po-benefit-indicator { background: #1a5e3a; }

.po-benefit-title {
    font-size: .88rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 7px;
    line-height: 1.3;
    font-family: var(--ff-head);
    word-break: break-word;
}

.po-benefit-desc {
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ── RESPONSIVE ── */

/* Large tablets (≤1200px) */
@media (max-width: 1200px) {
    .po-main-card {
        grid-template-columns: 360px 1fr;
    }
    .po-image-col {
        width: 360px;
    }
}

/* Tablets (≤1024px) — stack vertically */
@media (max-width: 1024px) {
    .po-main-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .po-image-col {
        width: 100%;
        min-width: unset;
    }
    .po-image-wrap,
    .po-product-img,
    .po-img-placeholder {
        min-height: 380px;
        max-height: 420px;
        height: 380px;
        width: 100%;
    }
    .po-product-img {
        height: 380px;
        object-fit: cover;
    }
    .po-details-col {
        padding: 36px 32px;
    }
    .po-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .po-main-card {
        border-radius: 8px;
    }
    .po-image-wrap,
    .po-product-img,
    .po-img-placeholder {
        min-height: 280px;
        max-height: 300px;
        height: 280px;
    }
    .po-product-img {
        height: 280px;
    }
    .po-details-col {
        padding: 28px 20px;
    }
    .po-product-title {
        font-size: 1.3rem;
    }
    .po-where-list {
        grid-template-columns: 1fr;
    }
    .po-benefits-grid {
        grid-template-columns: 1fr;
    }
    .po-cta-row {
        flex-direction: column;
    }
    .po-cta-row .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .po-benefits-section {
        margin-top: 32px;
    }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
    .po-image-wrap,
    .po-product-img,
    .po-img-placeholder {
        min-height: 240px;
        max-height: 260px;
        height: 240px;
    }
    .po-product-img {
        height: 240px;
    }
    .po-details-col {
        padding: 24px 16px;
    }
    .po-why-block {
        padding: 16px 18px;
    }
    .po-tag-badge {
        font-size: .62rem;
        padding: 5px 10px;
    }
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR
   Industrial Portfolio v5 — mob-bottom-nav
   Visible only on screens ≤ 768px
   ============================================================ */

/* ── Base bar ── */
.mob-bottom-nav {
    display: none; /* hidden on desktop — shown via media query */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    height: 64px;
    grid-template-columns: 1fr 72px 1fr;
    align-items: stretch;
    box-sizing: border-box;
    /* Respect iOS safe area (notch phones) */
    padding-bottom: env(safe-area-inset-bottom, 0px);
    height: calc(64px + env(safe-area-inset-bottom, 0px));
}

/* ── Each button ── */
.mbn-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #64748b;
    padding: 6px 4px 8px;
    transition: color 0.18s ease, background 0.18s ease;
    position: relative;
    font-family: var(--ff-head, 'Inter', sans-serif);
    -webkit-tap-highlight-color: transparent;
}

.mbn-btn:hover,
.mbn-btn:focus {
    color: var(--accent, #D0101D);
    background: rgba(208,16,29,0.04);
    outline: none;
}

/* Active state — highlight current page home button */
.mbn-btn--home.is-active {
    color: var(--accent, #D0101D);
}
.mbn-btn--home.is-active .mbn-icon svg path {
    fill: none;
}

/* ── Icon wrapper ── */
.mbn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.mbn-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.mbn-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

/* ── Label ── */
.mbn-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    white-space: nowrap;
}

/* ── Center WhatsApp button — elevated pill ── */
.mbn-btn--center {
    /* override to allow absolutely positioned center pill */
    padding: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 8px;
    gap: 0;
    color: #25D366;
}

.mbn-btn--center:hover,
.mbn-btn--center:focus {
    color: #128c5f;
    background: transparent;
}

.mbn-center-wrap {
    position: absolute;
    bottom: calc(100% - 18px);
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mbn-btn--center:hover .mbn-center-wrap,
.mbn-btn--center:focus .mbn-center-wrap {
    transform: translateX(-50%) scale(1.06);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.mbn-center-wrap .mbn-icon {
    width: 28px;
    height: 28px;
}

.mbn-center-wrap .mbn-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    color: #fff;
}

.mbn-center-wrap .mbn-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.mbn-btn--center .mbn-label {
    position: relative;
    margin-top: 32px; /* push label below the circle */
    color: #25D366;
    font-size: 0.58rem;
}

.mbn-btn--center:hover .mbn-label,
.mbn-btn--center:focus .mbn-label {
    color: #128c5f;
}

/* ── Menu icon color ── */
.mbn-btn--menu {
    color: #64748b;
}
.mbn-btn--menu:hover,
.mbn-btn--menu:focus,
.mbn-btn--menu.is-active {
    color: var(--accent, #D0101D);
    background: rgba(208,16,29,0.04);
}

/* ── Show on mobile only ── */
@media (max-width: 768px) {
    .mob-bottom-nav {
        display: grid;
    }

    /* Push body content up so bottom nav never hides page content */
    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }
}

/* ── Extra small phones ── */
@media (max-width: 360px) {
    .mob-bottom-nav {
        height: calc(58px + env(safe-area-inset-bottom, 0px));
    }
    .mbn-label {
        font-size: 0.55rem;
    }
    .mbn-center-wrap {
        width: 50px;
        height: 50px;
        bottom: calc(100% - 16px);
    }
    .mbn-center-wrap .mbn-icon svg,
    .mbn-center-wrap .mbn-icon img {
        width: 24px;
        height: 24px;
    }
    body {
        padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    }
}
