/* ===================================
   ROOT VARIABLES
=================================== */
:root {
    --dark-blue:    #141c2b;      /* Deep charcoal-navy – industrial steel */
    --medium-blue:  #1e2e47;      /* Mid steel navy */
    --light-blue:   #e6eaf2;
    --orange:       #e8711a;      /* Industrial amber-orange */
    --orange-soft:  #f08535;
    --orange-bg:    rgba(232, 113, 26, 0.10);
    --white:        #ffffff;
    --light-grey:   #f0eeeb;      /* Warm concrete/stone – not cold digital grey */
    --charcoal:     #0e1118;      /* Near-black steel for dark sections */
    --steel:        #1c2438;      /* Dark steel section bg */
    --border:       #dde0e8;
    --text:         #1c2030;
    --muted:        #636b7c;
    --shadow-sm:    0 4px 16px rgba(10, 14, 28, 0.07);
    --shadow-md:    0 12px 32px rgba(10, 14, 28, 0.12);
    --shadow-lg:    0 20px 50px rgba(10, 14, 28, 0.18);
    --radius-sm:    10px;
    --radius-md:    16px;
    --radius-lg:    22px;
    --transition:   all 0.3s ease;
}

/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--light-grey);
    line-height: 1.7;
    overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--dark-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }
ul   { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--dark-blue); }

/* ===================================
   LAYOUT
=================================== */
.page-wrapper  { min-height: 100vh; display: flex; flex-direction: column; }
main           { flex: 1; }
.page-section  { padding: 90px 0; }
.section-sm    { padding: 55px 0; }

/* ===================================
   SECTION HEADINGS
=================================== */
.section-badge {
    display: inline-flex; align-items: center; gap: 0.55rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.section-badge::before {
    content: '';
    display: inline-block;
    width: 22px; height: 2.5px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.section-sub {
    color: var(--muted);
    max-width: 560px;
    font-size: 0.98rem;
}

/* ===================================
   UTILITIES
=================================== */
.text-orange    { color: var(--orange) !important; }
.text-dark-blue { color: var(--dark-blue) !important; }
.bg-dark-blue   { background: var(--dark-blue) !important; }
.bg-orange      { background: var(--orange) !important; }
.fw-600         { font-weight: 600 !important; }
.fw-700         { font-weight: 700 !important; }

/* ===================================
   BUTTONS
=================================== */
.btn { border-radius: 6px; font-weight: 700; padding: 0.68rem 1.7rem; transition: var(--transition); font-size: 0.9rem; letter-spacing: 0.01em; }
.btn-lg { padding: 0.88rem 2.3rem !important; font-size: 1rem !important; letter-spacing: 0.02em; }

.btn-gradient {
    background: linear-gradient(90deg, var(--orange) 0%, #c95e10 100%);
    color: #fff; border: none;
    box-shadow: 0 6px 20px rgba(232,113,26,0.32);
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #d0641a, var(--orange));
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232,113,26,0.44);
}
.btn-dark-blue { background: var(--dark-blue); color: #fff; border: none; }
.btn-dark-blue:hover { background: var(--medium-blue); color: #fff; transform: translateY(-2px); }

.btn-orange-outline { border: 2px solid var(--orange); color: var(--orange); background: transparent; }
.btn-orange-outline:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

.btn-outline-primary { border: 2px solid var(--medium-blue); color: var(--medium-blue); }
.btn-outline-primary:hover { background: var(--medium-blue); color: #fff; transform: translateY(-2px); }

.btn-outline-light:hover { transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: #fff; border: none; }
.btn-whatsapp:hover {
    background: #1db954; color: #fff; transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

/* ===================================
   NAVBAR
=================================== */
.site-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
    z-index: 1030;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(15,33,71,0.10); }
.logo-img      { width: 44px; height: 44px; object-fit: contain; }
.brand-name    { font-size: 1rem; font-weight: 800; color: var(--dark-blue); line-height: 1.18; letter-spacing: -0.01em; }
.brand-sub     { font-size: 0.67rem; color: var(--muted); font-weight: 500; letter-spacing: 0.01em; }
/* Compact navbar height — enough breathing room, not too airy */
.site-header .navbar { min-height: 62px; }

.nav-link {
    color: var(--text) !important; font-weight: 500; font-size: 0.88rem;
    padding: 0.45rem 0.75rem !important; position: relative; transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 2px;
    left: 0.75rem; right: 0.75rem; height: 2px;
    background: var(--orange); transform: scaleX(0); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }

/* ===================================
   HERO SECTION
=================================== */
.hero-section {
    background: var(--charcoal);
    padding: 140px 0 100px;
    min-height: 88vh;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden; color: #fff;
}

/* ---- Background Image Rotator (pure CSS/JS — no Swiper) ---- */
.hero-bg-rotator {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
}
.hbr-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.07);
    /* Both opacity (crossfade) and transform (Ken Burns) transition together */
    transition: opacity 1.8s ease,
                transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}
/* Active slide: fully visible + Ken Burns zoom-out */
.hbr-slide.active {
    opacity: 1;
    transform: scale(1.0);
}

/* Dark industrial overlay — Left dark for text, right lighter for image */
.hero-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
        /* background:
            linear-gradient(to right,
                rgba(7,9,15,0.90) 0%,
                rgba(7,9,15,0.75) 45%,
                rgba(7,9,15,0.50) 75%,
                rgba(7,9,15,0.25) 100%
            ), */
            background: linear-gradient(to right, rgb(7 9 15 / 60%) 0%, rgb(7 9 15 / 35%) 45%, rgb(7 9 15 / 0%) 75%, rgb(255 255 255 / 0%) 100%), radial-gradient(ellipse at 15% 60%, rgb(241 102 0 / 27%), #00000000 50%),
        radial-gradient(ellipse at 15% 60%, rgba(232,113,26,0.18), transparent 50%);
    pointer-events: none;
}

.hero-section::before {
    content: ''; position: absolute; inset: 0; z-index: 2;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(232,113,26,0.10), transparent 45%),
        radial-gradient(ellipse at 90% 80%, rgba(10,14,22,0.40), transparent 50%);
    pointer-events: none;
}

/* Subtle diagonal texture lines – industrial feel */
.hero-section::after {
    content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background-image: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.012) 40px,
        rgba(255,255,255,0.012) 41px
    );
}

.hero-shapes {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-shapes .shape {
    position: absolute; border-radius: 50%; opacity: 0.06;
}
.hero-shapes .s1 { width: 320px; height: 320px; background: var(--orange); top: -60px; left: -120px; }
.hero-shapes .s2 { width: 80px;  height: 80px;  background: #fff; bottom: 25%; left: 42%; }
.hero-shapes .s3 { width: 380px; height: 380px; background: var(--orange); bottom: -160px; right: -120px; }

/* Accent bar — animated slide-progress bar */
.hero-section .hero-accent-bar {
    position: absolute; bottom: 0; left: 0; height: 4px; z-index: 5;
    width: 0%;
    background: linear-gradient(90deg, var(--orange) 0%, #f9a54b 60%, #fff3 100%);
    box-shadow: 0 0 12px rgba(232,113,26,0.7);
    animation: hero-progress 4.5s linear infinite;
    will-change: width;
}
@keyframes hero-progress {
    0%   { width: 0%; opacity: 1; }
    92%  { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(232,113,26,0.15);
    border: 1px solid rgba(232,113,26,0.55);
    color: #ffb060; padding: 0.45rem 1.1rem; border-radius: 4px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 1.6rem;
    text-transform: uppercase;
}
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900; line-height: 1.0; margin-bottom: 1.3rem; color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.50);
    letter-spacing: -0.025em;
}
.hero-title span { color: var(--orange); }
.hero-lead  {
    font-size: 1.05rem; color: rgba(255,255,255,0.88);
    max-width: 560px; margin-bottom: 2rem; line-height: 1.80;
}
.hero-content { position: relative; z-index: 3; }
.hero-section > .container { position: relative; z-index: 3; }

/* Quick contact strip in hero */
.hero-quick-contact {
    display: flex; align-items: center; gap: 0; flex-wrap: wrap;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; overflow: hidden;
    width: fit-content;
}
.hqc-item {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    color: rgba(255,255,255,0.80); font-size: 0.85rem; font-weight: 600;
    text-decoration: none; transition: var(--transition);
}
.hqc-item:hover { background: rgba(255,255,255,0.10); color: #fff; }
.hqc-item.hqc-wa:hover { background: rgba(37,211,102,0.18); color: #25D366; }
.hqc-item i { font-size: 1rem; color: var(--orange); }
.hqc-item.hqc-wa i { color: #25D366; }
.hqc-sep { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }


/* ---- SLIDE DOT INDICATORS ---- */
.hero-slide-dots {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex; gap: 0.45rem; align-items: center;
}
.hsd-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; padding: 0; cursor: pointer;
    background: rgba(255,255,255,0.35);
    transition: width 0.35s ease, border-radius 0.35s ease, background 0.35s ease;
}
.hsd-dot.active {
    width: 26px; border-radius: 4px;
    background: var(--orange);
    box-shadow: 0 0 8px rgba(232,113,26,0.55);
}
.hsd-dot:hover:not(.active) { background: rgba(255,255,255,0.60); }

/* ---- SCROLL INDICATOR ---- */
.hero-scroll-ind {
    position: absolute; bottom: 2rem; right: 3rem;
    z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    text-decoration: none;
    animation: scroll-float 2.2s ease-in-out infinite;
}
.hero-scroll-text {
    font-size: 0.58rem; color: rgba(255,255,255,0.45);
    text-transform: uppercase; letter-spacing: 0.25em; font-weight: 600;
}
.hero-scroll-arrow {
    display: flex; flex-direction: column; align-items: center; gap: 0;
}
.hero-scroll-arrow .bi {
    display: block; font-size: 0.95rem; line-height: 0.85;
    color: var(--orange);
    animation: scroll-chevron 1.6s ease-in-out infinite;
}
.hero-scroll-arrow .bi:nth-child(2) {
    animation-delay: 0.22s;
    opacity: 0.45;
}
@keyframes scroll-chevron {
    0%,100% { transform: translateY(0);   opacity: 1; }
    50%      { transform: translateY(4px); opacity: 0.5; }
}
@keyframes scroll-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
}

/* Legacy hero-stat (keep for mobile fallback) */
.hero-stats { display: none; }
.hero-stat-divider { display: none; }
.hero-brands-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 0.75rem; }
.hero-brand-chip {
    width: 58px; height: 34px; background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; padding: 4px 7px;
    transition: var(--transition);
}
.hero-brand-chip:hover { background: rgba(232,113,26,0.18); border-color: rgba(232,113,26,0.5); transform: translateY(-2px); }
.hero-brand-chip img  { max-height: 22px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; }

/* ===================================
   PAGE HERO (inner pages)
=================================== */
.page-hero {
    background: linear-gradient(135deg, #0f2147 0%, #18397f 100%);
    padding: 75px 0 55px; color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at bottom right, rgba(243,112,33,0.14), transparent 60%);
}
.page-hero-title   { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; margin-bottom: 0.4rem; }
.page-hero-sub     { font-size: 0.95rem; color: rgba(255,255,255,0.70); }
.breadcrumb        { margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.70); }
.breadcrumb-item.active { color: rgba(255,255,255,0.45); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ===================================
   SERVICE BADGE (inline pill)
=================================== */
.service-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.9rem; border-radius: 999px;
    background: var(--orange-bg); color: var(--orange);
    font-weight: 600; font-size: 0.8rem;
}

/* ===================================
   CARDS – General
=================================== */
.card-custom {
    border: 1px solid var(--border); border-radius: var(--radius-md);
    background: #fff; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.card-custom:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-lg);
    border-color: rgba(243,112,33,0.2);
}

/* Category card */
.category-card {
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    border-radius: var(--radius-md);
    background: #fff; padding: 2.2rem 1.8rem; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden; height: 100%;
}
.category-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-soft));
    transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(232,113,26,0.18); }
.category-card:hover::before { transform: scaleX(1); }

.category-icon {
    width: 74px; height: 74px;
    background: linear-gradient(135deg, rgba(232,113,26,0.12), rgba(232,113,26,0.06));
    border: 1.5px solid rgba(232,113,26,0.22);
    border-radius: var(--radius-md); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 1.3rem; font-size: 2rem;
    color: var(--orange); transition: var(--transition);
}
.category-card:hover .category-icon {
    background: var(--orange); color: #fff;
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(232,113,26,0.30);
}
.category-count { font-size: 0.75rem; color: var(--muted); }

/* Product card */
.product-card {
    border: 1px solid var(--border); border-radius: var(--radius-md);
    background: #fff; overflow: hidden; transition: var(--transition); height: 100%;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(243,112,33,0.2); }

.product-img-wrap {
    background: var(--light-grey);
    height: 200px; overflow: hidden;
}
.product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-body  { padding: 1.2rem 1.4rem; flex: 1; }
.product-cat   { font-size: 0.7rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; }
.product-name  { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin: 0.25rem 0 0.4rem; }
.product-sku   { font-size: 0.75rem; color: var(--muted); }
.product-desc  { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
.product-actions { padding: 1rem 1.4rem; border-top: 1px solid var(--border); display: flex; gap: 0.5rem; align-items: stretch; }
.product-actions .btn { display: flex; align-items: center; justify-content: center; }
.product-actions .btn:not(.flex-fill) { width: 42px; flex-shrink: 0; padding: 0; border-radius: var(--radius-sm); }

/* Feature item */
.feature-item {
    background: #fff; border-radius: var(--radius-md);
    padding: 1.8rem 1.5rem; border: 1px solid var(--border);
    transition: var(--transition); height: 100%;
}
.feature-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 58px; height: 58px; background: var(--orange-bg);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; font-size: 1.55rem; color: var(--orange); margin-bottom: 1rem;
}

/* Stats card */
.stats-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 2.2rem 1.5rem; text-align: center; border: 1px solid var(--border);
    transition: var(--transition);
}
.stats-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stats-number { font-size: 2.8rem; font-weight: 800; color: var(--dark-blue); line-height: 1; margin-bottom: 0.3rem; }
.stats-number span { color: var(--orange); }
.stats-label  { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* Testimonial card */
.testimonial-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 2rem 2rem 1.5rem; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); position: relative; height: 100%;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 0.8rem; right: 1.4rem;
    font-size: 5rem; color: var(--orange-bg); line-height: 1; font-family: Georgia, serif;
}
.rating i      { color: #f59e0b; font-size: 0.82rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.author-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.author-name   { font-size: 0.9rem; font-weight: 700; color: var(--dark-blue); margin: 0; }
.author-role   { font-size: 0.75rem; color: var(--muted); margin: 0; }

/* Brand card */
.brand-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 2rem 1.5rem; text-align: center; transition: var(--transition);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(243,112,33,0.25); }
.brand-logo    { max-height: 60px; width: auto; margin: 0 auto; filter: grayscale(50%); transition: var(--transition); }
.brand-card:hover .brand-logo { filter: grayscale(0%); }

/* ===================================
   FORMS
=================================== */
.form-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.form-control, .form-select {
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    padding: 0.7rem 1rem; font-size: 0.9rem; transition: var(--transition); color: var(--text);
}
.form-control:focus, .form-select:focus {
    border-color: var(--orange); box-shadow: 0 0 0 0.2rem rgba(243,112,33,0.15);
}
.form-label { font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--dark-blue); }

/* Contact info card */
.contact-info-card {
    background: var(--dark-blue); border-radius: var(--radius-md); padding: 2.5rem; color: #fff; height: 100%;
}
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-info-item:last-child { border-bottom: none; }
.c-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(243,112,33,0.18); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.15rem;
}
.c-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.c-val   { font-size: 0.9rem; color: rgba(255,255,255,0.88); }
.c-val a { color: rgba(255,255,255,0.88); }
.c-val a:hover { color: var(--orange); }

/* ===================================
   SIDEBAR (category page)
=================================== */
/* Mobile filter toggle button arrow */
[data-bs-target="#sidebarFilters"] .bi-chevron-down {
    transition: transform 0.3s ease;
}
[data-bs-target="#sidebarFilters"][aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.sidebar-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1.4rem;
}
.sidebar-title {
    font-size: 0.95rem; font-weight: 700; color: var(--dark-blue);
    margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--orange);
}
.sidebar-list li { padding: 0.3rem 0; border-bottom: 1px solid var(--border); }
.sidebar-list li:last-child { border: none; }
.sidebar-list a {
    color: var(--text); font-size: 0.88rem;
    display: flex; align-items: center; justify-content: space-between; padding: 0.2rem 0;
    transition: var(--transition);
}
.sidebar-list a:hover, .sidebar-list a.active { color: var(--orange); padding-left: 0.3rem; }
.sidebar-list .badge-count { background: var(--orange-bg); color: var(--orange); font-size: 0.72rem; padding: 0.15rem 0.5rem; border-radius: 999px; }
.form-check-input:checked { background-color: var(--orange); border-color: var(--orange); }
.form-check-input:focus    { box-shadow: 0 0 0 0.2rem rgba(243,112,33,0.2); }

/* Product filter tabs */
.filter-tabs .btn { border-radius: 50px; font-size: 0.82rem; padding: 0.4rem 1.1rem; }
.filter-tabs .btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ===================================
   GALLERY
=================================== */
.gallery-grid { columns: 4 200px; column-gap: 1rem; }
.gallery-item  { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: zoom-in; }
.gallery-item img { width: 100%; transition: transform 0.4s ease; display: block; }
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(15,33,71,0.68);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-overlay i { font-size: 1.8rem; color: #fff; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 9999;
    align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.active { display: flex; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img     { max-height: 85vh; max-width: 90vw; border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close   {
    position: fixed; top: 1.5rem; right: 1.8rem;
    color: #fff; font-size: 2rem; cursor: pointer;
    background: rgba(255,255,255,0.12); border: none;
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--orange); }

/* ===================================
   FAQ
=================================== */
.accordion-button { font-weight: 600; color: var(--dark-blue); background: #fff; font-size: 0.98rem; }
.accordion-button:not(.collapsed) { background: var(--orange-bg); color: var(--orange); box-shadow: none; }
.accordion-button:not(.collapsed)::after { filter: invert(52%) sepia(90%) saturate(500%) hue-rotate(345deg); }
.accordion-item  { border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important; margin-bottom: 0.75rem; overflow: hidden; }
.accordion-body  { color: var(--muted); line-height: 1.75; font-size: 0.93rem; }

/* ===================================
   BLOG
=================================== */
.blog-card { border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; overflow: hidden; transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(243,112,33,0.2); }
.blog-img-wrap   { height: 210px; overflow: hidden; background: var(--light-grey); display: flex; align-items: center; justify-content: center; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-body       { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat        { font-size: 0.7rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; }
.blog-title      { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin: 0.45rem 0 0.5rem; line-height: 1.35; }
.blog-excerpt    { font-size: 0.86rem; color: var(--muted); flex: 1; }
.blog-meta       { font-size: 0.76rem; color: var(--muted); display: flex; gap: 0.9rem; align-items: center; flex-wrap: wrap; margin-top: 0.9rem; padding-top: 0.8rem; border-top: 1px solid var(--border); }
.blog-meta i     { color: var(--orange); }

.blog-detail-body p  { margin-bottom: 1.2rem; color: var(--muted); line-height: 1.8; }
.blog-detail-body h3 { color: var(--dark-blue); margin: 2rem 0 0.8rem; font-size: 1.3rem; }
.blog-detail-body ul { margin-bottom: 1.2rem; padding-left: 1.4rem; list-style: disc; }
.blog-detail-body ul li { color: var(--muted); margin-bottom: 0.5rem; }
.blog-detail-body blockquote {
    border-left: 4px solid var(--orange); background: var(--orange-bg);
    padding: 1.2rem 1.5rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0; color: var(--dark-blue); font-style: italic; font-size: 1.02rem;
}

/* ===================================
   ABOUT SECTION IMAGE BADGE (homepage)
=================================== */
.about-img-wrap {
    position: relative; display: inline-block; width: 100%; max-width: 440px; margin: 0 auto;
}
.about-img-wrap img {
    width: 100%; height: 380px; object-fit: cover; border-radius: 12px;
    box-shadow: 0 24px 64px rgba(10,14,28,0.18);
    display: block;
}
.about-img-wrap::before {
    content: ''; position: absolute; top: -12px; left: -12px; right: 20px; bottom: 20px;
    border: 2px solid rgba(232,113,26,0.30);
    border-radius: 14px; z-index: 0;
}
.about-img-wrap img { position: relative; z-index: 1; }
.about-exp-badge {
    position: absolute; bottom: -16px; right: -16px; z-index: 2;
    background: var(--orange);
    color: #fff;
    border-radius: 10px;
    padding: 1.1rem 1.4rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(232,113,26,0.45);
    min-width: 130px;
}
.about-exp-badge .num { font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; letter-spacing: -0.03em; }
.about-exp-badge .lbl { font-size: 0.7rem; font-weight: 600; opacity: 0.90; display: block; margin-top: 0.3rem; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.04em; }

/* ===================================
   ABOUT PAGE
=================================== */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
    content: ''; position: absolute; left: 0; top: 4px; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--medium-blue));
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-dot  {
    position: absolute; left: -2.5rem; top: 0.25rem;
    width: 14px; height: 14px; border-radius: 50%; background: var(--orange);
    border: 3px solid #fff; box-shadow: 0 0 0 3px var(--orange);
}
.timeline-year    { font-size: 0.75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; }
.timeline-content { background: #fff; border-radius: var(--radius-sm); padding: 1rem 1.3rem; border: 1px solid var(--border); margin-top: 0.35rem; box-shadow: var(--shadow-sm); }

.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(243,112,33,0.2); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; font-weight: 800; margin: 0 auto 1rem; }

.cert-badge { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 1.2rem; text-align: center; font-weight: 700; color: var(--dark-blue); font-size: 0.88rem; transition: var(--transition); }
.cert-badge:hover { border-color: var(--orange); color: var(--orange); }
.cert-badge i { font-size: 1.8rem; color: var(--orange); display: block; margin-bottom: 0.5rem; }

/* ===================================
   PRODUCT DETAILS
=================================== */
.product-gallery-main {
    background: var(--light-grey); border-radius: var(--radius-md);
    height: 360px; overflow: hidden;
}
.product-main-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb-list { display: flex; gap: 0.6rem; margin-top: 0.8rem; flex-wrap: wrap; }
.product-thumb {
    background: var(--light-grey); border-radius: var(--radius-sm);
    cursor: pointer; border: 2px solid transparent;
    width: 78px; height: 72px; overflow: hidden; transition: var(--transition);
}
.product-thumb img     { width: 100%; height: 100%; object-fit: cover; }
.product-thumb:hover, .product-thumb.active { border-color: var(--orange); }

.spec-table th { background: var(--dark-blue); color: #fff; font-weight: 600; font-size: 0.88rem; }
.spec-table td { font-size: 0.9rem; vertical-align: middle; }
.spec-table tbody tr:nth-child(odd) { background: var(--light-grey); }

/* ===================================
   BRANDS PAGE
=================================== */
.brand-detail-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 2.5rem; transition: var(--transition); height: 100%;
}
.brand-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(243,112,33,0.2); }
.brand-flag { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.brand-detail-logo { max-height: 70px; margin-bottom: 1.2rem; filter: none; }

/* ===================================
   MAP
=================================== */
.map-wrapper { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.map-wrapper iframe { display: block; }

/* ===================================
   PAGINATION
=================================== */
.page-link {
    color: var(--dark-blue); border-radius: var(--radius-sm) !important;
    margin: 0 0.15rem; border: 1px solid var(--border);
}
.page-item.active .page-link { background: var(--orange); border-color: var(--orange); color: #fff; }
.page-link:hover { background: var(--orange-bg); color: var(--orange); border-color: var(--orange); }

/* ===================================
   SWIPER
=================================== */
.swiper-pagination-bullet-active { background: var(--orange); }
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 1.2rem; color: var(--orange); }

/* ===================================
   FOOTER
=================================== */
.site-footer    { background: var(--dark-blue); color: rgba(255,255,255,0.78); padding-top: 65px; }
.footer-logo-name { font-size: 1.05rem; font-weight: 800; color: #fff; }
.footer-logo-sub  { font-size: 0.68rem; color: rgba(255,255,255,0.45); }
.footer-about     { font-size: 0.86rem; line-height: 1.7; margin-top: 0.8rem; color: rgba(255,255,255,0.65); }
.footer-title     { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; margin-bottom: 1.1rem; }
.footer-links li  { margin-bottom: 0.5rem; }
.footer-links a   { color: rgba(255,255,255,0.65); font-size: 0.86rem; display: flex; align-items: center; gap: 0.4rem; transition: var(--transition); }
.footer-links a::before { content: '›'; color: var(--orange); font-size: 1.1rem; }
.footer-links a:hover   { color: var(--orange); padding-left: 0.3rem; }
.footer-contact-item    { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.85rem; font-size: 0.86rem; }
.footer-contact-item i  { color: var(--orange); flex-shrink: 0; margin-top: 0.1rem; }
.footer-social  { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75); transition: var(--transition); font-size: 0.9rem;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0 0; }
.footer-bottom  { padding: 1.2rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.42); }

/* ===================================
   SCROLL TO TOP
=================================== */
.scroll-top-btn {
    position: fixed; right: 1.5rem; bottom: 5rem;
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #d9560e);
    color: #fff; border: none; cursor: pointer;
    display: none; place-items: center;
    box-shadow: 0 8px 24px rgba(243,112,33,0.40); z-index: 9000;
    transition: var(--transition); font-size: 1.15rem;
}
.scroll-top-btn.show   { display: grid; }
.scroll-top-btn:hover  { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(243,112,33,0.50); }

/* ===================================
   WHATSAPP FLOAT
=================================== */
.whatsapp-float {
    position: fixed; left: 1.5rem; bottom: 1.5rem;
    width: 54px; height: 54px; border-radius: 50%; background: #25D366;
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; box-shadow: 0 8px 24px rgba(37,211,102,0.45); z-index: 8999;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 12px 32px rgba(37,211,102,0.55); }

/* ===================================
   ALERT / NOTICE
=================================== */
.alert-success-custom { background: #dcfce7; border: 1px solid #86efac; color: #166534; border-radius: var(--radius-sm); padding: 1rem 1.5rem; }
.alert-error-custom   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; border-radius: var(--radius-sm); padding: 1rem 1.5rem; }

/* ===================================
   DARK INDUSTRIAL SECTION VARIANT
=================================== */
.section-dark {
    background: var(--steel) !important;
    position: relative;
}
.section-dark::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 5% 50%,  rgba(232,113,26,0.12), transparent 45%),
        radial-gradient(ellipse at 95% 50%, rgba(7,9,15,0.50), transparent 45%);
    background-image:
        radial-gradient(ellipse at 5% 50%, rgba(232,113,26,0.12), transparent 45%),
        radial-gradient(ellipse at 95% 50%, rgba(7,9,15,0.50), transparent 45%),
        repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(255,255,255,0.008) 60px, rgba(255,255,255,0.008) 61px);
}
.section-dark .section-badge { color: var(--orange-soft); }
.section-dark .section-badge::before { background: var(--orange-soft); }
.section-dark .section-title { color: #ffffff; }
.section-dark > .container { position: relative; z-index: 1; }
.section-dark p.text-muted,
.section-dark .text-muted { color: rgba(255,255,255,0.58) !important; }
.section-dark .list-unstyled li { color: rgba(255,255,255,0.65) !important; }

/* Feature cards on dark bg */
.section-dark .feature-item {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.09);
    box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}
.section-dark .feature-item:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(232,113,26,0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.30);
}
.section-dark .feature-item h6 { color: #ffffff; }
.section-dark .feature-item .text-muted { color: rgba(255,255,255,0.55) !important; }
.section-dark .feature-icon {
    background: rgba(232,113,26,0.18);
    border: 1px solid rgba(232,113,26,0.25);
}

/* ===================================
   CTA SECTION
=================================== */
.cta-section {
    background: var(--charcoal);
    color: #fff; padding: 90px 0; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(232,113,26,0.16), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(20,28,43,0.80), transparent 55%),
        repeating-linear-gradient(-55deg, transparent, transparent 55px, rgba(255,255,255,0.010) 55px, rgba(255,255,255,0.010) 56px);
    pointer-events: none;
}

/* ===================================
   TICKER / MARQUEE STRIP
=================================== */
.ticker-strip {
    background: var(--dark-blue); border-bottom: 2px solid rgba(232,113,26,0.30);
    overflow: hidden; height: 42px; display: flex; align-items: center;
    position: relative;
}
.ticker-strip::before, .ticker-strip::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-strip::before { left: 0; background: linear-gradient(90deg, var(--dark-blue), transparent); }
.ticker-strip::after  { right: 0; background: linear-gradient(-90deg, var(--dark-blue), transparent); }
.ticker-track {
    display: flex; align-items: center; white-space: nowrap;
    animation: ticker-scroll 35s linear infinite; width: max-content;
}
.ticker-strip:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
    display: inline-flex; align-items: center; gap: 0.45rem; padding: 0 2rem;
    font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.70);
    text-transform: uppercase; letter-spacing: 0.10em;
    border-right: 1px solid rgba(255,255,255,0.10);
}
.ticker-item i { color: var(--orange); font-size: 0.78rem; }
.ticker-item.hi { color: #ffb060; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================================
   INDUSTRIES WE SERVE
=================================== */
.industry-card {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; height: 210px; display: block; text-decoration: none;
}
.industry-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s ease;
}
.industry-card:hover .industry-card-bg { transform: scale(1.09); }
.industry-card-overlay {
    position: absolute; inset: 0;
    /* background: linear-gradient(165deg, rgba(10,13,20,0.62), rgba(10,13,20,0.88)); */
    background: linear-gradient(165deg, rgb(0 76 255 / 28%), rgb(10 13 20 / 61%));
    transition: var(--transition);
}
.industry-card:hover .industry-card-overlay {
    background: linear-gradient(165deg, rgba(232,113,26,0.52), rgba(10,13,20,0.86));
}
.industry-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.3rem 1.4rem; }
.industry-card-icon {
    font-size: 1.9rem; color: rgba(255,255,255,0.80); display: block;
    margin-bottom: 0.45rem; transition: var(--transition);
}
.industry-card:hover .industry-card-icon { color: #fff; transform: scale(1.1); }
.industry-card-name  { font-size: 1rem; font-weight: 800; color: #fff; margin: 0; }
.industry-card-sub   { font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; display: block; }

/* ===================================
   CATEGORIES — IMAGE OVERLAY CARDS
=================================== */
.cat-img-card {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; height: 250px; display: block; text-decoration: none;
}
.cat-img-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.55s ease;
}
.cat-img-card:hover .cat-img-bg { transform: scale(1.08); }
.cat-img-overlay {
    position: absolute; inset: 0;
       background: linear-gradient(220deg, rgb(8 10 16 / 0%) 50%, rgb(0 0 0 / 89%) 88%);
    transition: var(--transition);
}
.cat-img-card:hover .cat-img-overlay {
    background: linear-gradient(170deg, rgba(232,113,26,0.38) 0%, rgba(8,10,16,0.90) 70%);
}
.cat-img-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.4rem; }
.cat-img-icon {
    width: 46px; height: 46px;
    background: rgba(232,113,26,0.20); border: 1px solid rgba(232,113,26,0.45);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--orange); margin-bottom: 0.75rem; transition: var(--transition);
}
.cat-img-card:hover .cat-img-icon { background: var(--orange); border-color: var(--orange); color: #fff; }
.cat-img-name  { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 0.2rem; }
.cat-img-count { font-size: 0.7rem; color: rgba(255,255,255,0.58); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.cat-img-arrow {
    position: absolute; top: 1rem; right: 1rem;
    width: 34px; height: 34px; background: rgba(255,255,255,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.88rem;
    opacity: 0; transform: translateX(-8px); transition: var(--transition);
}
.cat-img-card:hover .cat-img-arrow { opacity: 1; transform: translateX(0); }

/* ===================================
   MID-PAGE CTA BANNER
=================================== */
.mid-cta {
    background: var(--charcoal);
    padding: 60px 0; position: relative; overflow: hidden;
    border-top: 1px solid rgba(232,113,26,0.18);
    border-bottom: 1px solid rgba(232,113,26,0.18);
}
.mid-cta::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232,113,26,0.16), transparent 50%),
        repeating-linear-gradient(-55deg, transparent, transparent 55px, rgba(255,255,255,0.009) 55px, rgba(255,255,255,0.009) 56px);
}
.mid-cta > .container { position: relative; z-index: 1; }
.mid-cta-text h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900; color: #fff;
    margin-bottom: 0.5rem; letter-spacing: -0.025em;
}
.mid-cta-text p { color: rgba(255,255,255,0.65); margin: 0; font-size: 0.98rem; }
.mid-cta-text .hl { color: var(--orange); font-weight: 800; }
.mid-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.mid-cta-divider {
    width: 1px; background: rgba(255,255,255,0.12);
    align-self: stretch; margin: 0 1.5rem;
}
.mid-cta-phone { text-align: center; }
.mid-cta-phone .ph-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.3rem; }
.mid-cta-phone .ph-num { font-size: 1.5rem; font-weight: 900; color: #fff; display: block; letter-spacing: -0.01em; }
.mid-cta-phone .ph-num a { color: #fff; text-decoration: none; }
.mid-cta-phone .ph-num a:hover { color: var(--orange); }

/* ===================================
   HOW WE WORK — PROCESS STEPS
=================================== */
.process-grid {
    display: grid; grid-template-columns: repeat(4,1fr); position: relative;
}
.process-connector {
    position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(232,113,26,0.25) 50%, var(--orange) 100%);
    z-index: 0;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.process-circle {
    width: 82px; height: 82px; border-radius: 50%;
    background: #fff; border: 3px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.5rem; position: relative; transition: var(--transition);
}
.process-step:hover .process-circle {
    border-color: var(--orange);
    box-shadow: 0 8px 28px rgba(232,113,26,0.22);
    transform: translateY(-5px);
}
.process-circle-inner {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: #fff;
}
.process-step-num {
    position: absolute; top: -4px; right: -4px;
    width: 22px; height: 22px; background: var(--dark-blue);
    border-radius: 50%; color: #fff; font-size: 0.62rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.process-title { font-size: 0.95rem; font-weight: 800; color: var(--dark-blue); margin: 1.1rem 0 0.4rem; }
.process-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ===================================
   CERTIFICATIONS / AUTHORIZATIONS
=================================== */
.cert-list { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cert-card-item {
    background: #fff; border: 1.5px solid var(--border);
    border-radius: var(--radius-md); padding: 1.6rem 1.8rem; text-align: center;
    min-width: 140px; flex: 1; max-width: 190px; transition: var(--transition);
}
.cert-card-item:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cert-card-icon { font-size: 2.4rem; color: var(--orange); display: block; margin-bottom: 0.65rem; }
.cert-card-name { font-size: 0.88rem; font-weight: 800; color: var(--dark-blue); display: block; }
.cert-card-sub  { font-size: 0.7rem; color: var(--muted); display: block; margin-top: 0.25rem; }

/* ===================================
   BLOG PREVIEW SECTION
=================================== */
/* reuses .blog-card — just needs section bg */

/* ===================================
   TESTIMONIALS — DARK REDESIGN
=================================== */
.testimonials-dark {
    background: var(--steel);
    position: relative; overflow: hidden;
}
.testimonials-dark::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 8% 50%, rgba(232,113,26,0.11), transparent 45%),
        repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(255,255,255,0.008) 60px, rgba(255,255,255,0.008) 61px);
}
.testimonials-dark > .container { position: relative; z-index: 1; }
.testimonials-dark .section-badge { color: var(--orange-soft); }
.testimonials-dark .section-badge::before { background: var(--orange-soft); }
.testimonials-dark .section-title { color: #fff; }
.testimonials-dark .section-sub { color: rgba(255,255,255,0.55); }

.tcard {
    background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md); padding: 2rem 2rem 1.8rem;
    position: relative; overflow: hidden; height: 100%; transition: var(--transition);
}
.tcard:hover { background: rgba(255,255,255,0.09); border-color: rgba(232,113,26,0.28); transform: translateY(-5px); }
.tcard-quote { font-size: 5.5rem; line-height: 1; color: rgba(232,113,26,0.18); font-family: Georgia,serif; position: absolute; top: 0.3rem; right: 1rem; font-style: normal; pointer-events: none; }
.tcard-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.tcard-stars i { color: #f59e0b; font-size: 0.85rem; }
.tcard-text { color: rgba(255,255,255,0.78); font-size: 0.93rem; line-height: 1.76; margin-bottom: 1.4rem; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 0.9rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
.tcard-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.tcard-name { font-weight: 700; color: #fff; font-size: 0.9rem; margin: 0; }
.tcard-role { font-size: 0.74rem; color: rgba(255,255,255,0.48); margin: 0; }

/* ===================================
   STATS — IMPROVED LAYOUT
=================================== */
.stat-box {
    text-align: center; padding: 3rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.08); position: relative;
}
.stat-box:last-child { border-right: none; }
.stat-icon-ring {
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(232,113,26,0.14); border: 2px solid rgba(232,113,26,0.35);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.1rem; font-size: 1.6rem; color: var(--orange);
    transition: var(--transition);
}
.stat-box:hover .stat-icon-ring { background: var(--orange); border-color: var(--orange); color: #fff; transform: scale(1.08); }
.stat-big-num {
    font-size: 3rem; font-weight: 900; color: #fff; line-height: 1;
    letter-spacing: -0.035em; display: block; margin-bottom: 0.4rem;
}
.stat-big-num .counter-num { color: inherit; }
.stat-suffix-span { color: var(--orange); }
.stat-label { color: rgba(255,255,255,0.52); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.10em; }

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

/* ---- Large tablet / small desktop (< 992px) ---- */
@media (max-width: 991.98px) {
    /* Hero */
    .hero-section            { padding: 110px 0 70px; min-height: 75vh; }
    .hero-section > .container { text-align: center; }
    .hero-content            { text-align: center; }
    .hero-lead               { max-width: 100%; margin-left: auto; margin-right: auto; }
    .d-flex.flex-wrap.gap-3  { justify-content: center; }
    .hero-quick-contact      { margin: 0 auto; }
    .hero-scroll-ind         { display: none; }
    .hero-slide-dots         { bottom: 1.2rem; }
    /* Section spacing */
    .page-section            { padding: 65px 0; }
    .section-sm              { padding: 40px 0; }
    /* Navbar */
    .nav-link::after         { display: none; }
    .navbar-nav              { padding: 0.8rem 0; gap: 0.1rem; }
    /* Layout */
    .gallery-grid            { columns: 3 150px; }
    .process-grid            { grid-template-columns: repeat(2,1fr); gap: 2.5rem 1rem; }
    .process-connector       { display: none; }
    /* Mid-CTA */
    .mid-cta-divider         { display: none; }
    /* Stats — 2×2 grid on tablet */
    .stat-big-num            { font-size: 2.5rem; }
    /* About image */
    .about-img-wrap          { max-width: 380px; }
}

/* ---- Tablet / large phone (< 768px) ---- */
@media (max-width: 767.98px) {
    /* Hero */
    .hero-section            { padding: 100px 0 60px; min-height: auto; }
    .hero-title              { font-size: 2rem; }
    .hero-badge              { font-size: 0.72rem; padding: 0.4rem 0.9rem; }
    /* Ticker */
    .ticker-item             { padding: 0 1.2rem; font-size: 0.68rem; }
    /* Section */
    .page-section            { padding: 50px 0; }
    .section-sm              { padding: 32px 0; }
    .section-title           { font-size: clamp(1.55rem, 5vw, 2.1rem); }
    /* Stats (2 columns) */
    .stats-number            { font-size: 2rem; }
    .stat-box                { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.8rem 1rem; }
    .stat-box:last-child     { border-bottom: none; }
    .stat-big-num            { font-size: 2.2rem; }
    .stat-icon-ring          { width: 56px; height: 56px; font-size: 1.35rem; margin-bottom: 0.85rem; }
    .stat-label              { font-size: 0.72rem; }
    /* Gallery */
    .gallery-grid            { columns: 2 120px; }
    /* Forms */
    .form-card               { padding: 1.5rem; }
    .contact-info-card       { padding: 1.5rem; }
    /* Product gallery */
    .product-gallery-main    { height: 260px; }
    /* Brand chip */
    .hero-brand-chip         { width: 46px; height: 28px; }
    /* Mid-CTA */
    .mid-cta                 { padding: 48px 0; }
    .mid-cta .row            { flex-direction: column; text-align: center; }
    .mid-cta-phone           { display: none; }
    .mid-cta-actions         { justify-content: center; }
    .mid-cta-text h2         { font-size: clamp(1.45rem, 5vw, 2rem); }
    /* About badge */
    .about-exp-badge         { right: 0; bottom: -10px; padding: 0.9rem 1.1rem; min-width: 110px; }
    .about-exp-badge .num    { font-size: 1.9rem; }
    /* About image border — prevent horizontal overflow */
    .about-img-wrap::before  { left: -6px; top: -6px; right: 12px; bottom: 12px; }
    /* Team / cert */
    .team-card               { padding: 1.5rem 1rem; }
    /* Product cards 2-col — tighten content */
    .product-name            { font-size: 0.88rem; }
    .product-body            { padding: 1rem 1rem; }
    .product-actions         { padding: 0.75rem 1rem; }
    /* Blog */
    .blog-img-wrap           { height: 180px; }
    /* Footer */
    .site-footer             { padding-top: 48px; }
    /* Page hero */
    .page-hero               { padding: 60px 0 44px; }
    .page-hero-title         { font-size: clamp(1.5rem, 5vw, 2rem); }
    /* Brand card */
    .brand-card              { padding: 1.4rem 1rem; }
    .brand-logo              { max-height: 48px; }
}

/* ---- Small phone (< 576px) ---- */
@media (max-width: 575.98px) {
    /* Hero */
    .hero-section            { padding: 90px 0 50px; }
    .hero-title              { font-size: 1.75rem; line-height: 1.1; }
    .hero-lead               { font-size: 0.95rem; }
    /* Hero quick contact — stack vertically on very small screens */
    .hero-quick-contact      { flex-direction: column; width: 100%; border-radius: 8px; }
    .hqc-sep                 { display: none; }
    .hqc-item                { width: 100%; justify-content: center; padding: 0.6rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.10); }
    .hqc-item:last-child     { border-bottom: none; }
    /* Slide dots closer to edge */
    .hero-slide-dots         { bottom: 0.8rem; gap: 0.3rem; }
    .hsd-dot                 { width: 7px; height: 7px; }
    .hsd-dot.active          { width: 20px; }
    /* Ticker */
    .ticker-strip            { height: 36px; }
    .ticker-item             { padding: 0 0.9rem; font-size: 0.65rem; }
    /* Section */
    .page-section            { padding: 40px 0; }
    .section-sm              { padding: 28px 0; }
    .section-title           { font-size: 1.55rem; }
    .section-sub             { font-size: 0.9rem; }
    /* About image */
    .about-img-wrap          { max-width: 100%; }
    .about-img-wrap::before  { display: none; }     /* hide decorative border on xs */
    .about-img-wrap img      { height: 260px; }
    .about-exp-badge         { position: static; margin-top: 1rem; display: inline-block; }
    /* Stats — 2 columns, compact */
    .stat-big-num            { font-size: 1.9rem; letter-spacing: -0.02em; }
    .stat-icon-ring          { width: 48px; height: 48px; font-size: 1.15rem; margin-bottom: 0.6rem; }
    .stat-label              { font-size: 0.68rem; }
    .stat-box                { padding: 1.4rem 0.5rem; }
    /* Gallery — single column */
    .gallery-grid            { columns: 1; }
    /* Product thumb */
    .product-thumb-list      { flex-wrap: wrap; }
    /* Certification cards */
    .cert-list               { gap: 0.5rem; }
    .cert-card-item          { min-width: 90px; max-width: 130px; padding: 1rem 0.7rem; }
    .cert-card-icon          { font-size: 1.8rem; margin-bottom: 0.4rem; }
    .cert-card-name          { font-size: 0.78rem; }
    /* Industry & category cards */
    .industry-card           { height: 165px; }
    .cat-img-card            { height: 200px; }
    .cat-img-name            { font-size: 0.9rem; }
    /* Process */
    .process-grid            { grid-template-columns: 1fr; gap: 2rem; }
    .process-title           { font-size: 0.88rem; }
    /* CTA section */
    .cta-section             { padding: 60px 0; }
    .cta-section h2          { font-size: clamp(1.4rem, 6vw, 1.9rem); }
    /* Mid-CTA */
    .mid-cta                 { padding: 38px 0; }
    .mid-cta-actions         { flex-direction: column; align-items: stretch; }
    .mid-cta-actions .btn    { width: 100%; }
    /* Forms */
    .form-card               { padding: 1.2rem; }
    .contact-info-card       { padding: 1.2rem; }
    /* Page hero */
    .page-hero               { padding: 50px 0 36px; }
    .page-hero-title         { font-size: 1.5rem; }
    .page-hero-sub           { font-size: 0.85rem; }
    /* Product cards in 2-col */
    .product-img-wrap        { height: 140px; }
    .product-name            { font-size: 0.82rem; }
    .product-sku             { font-size: 0.7rem; }
    .product-actions         { gap: 0.35rem; padding: 0.65rem 0.75rem; }
    .product-actions .btn    { font-size: 0.75rem; padding: 0.38rem 0.6rem; }
    /* Blog */
    .blog-img-wrap           { height: 160px; }
    .blog-title              { font-size: 0.92rem; }
    /* Testimonials */
    .tcard                   { padding: 1.5rem 1.4rem 1.3rem; }
    /* Timeline */
    .timeline                { padding-left: 1.8rem; }
    /* Team */
    .team-card               { padding: 1.4rem 1rem; }
    .team-avatar             { width: 68px; height: 68px; font-size: 1.4rem; }
    /* Footer */
    .site-footer             { padding-top: 40px; }
    .footer-about            { font-size: 0.82rem; }
    .footer-bottom           { font-size: 0.74rem; text-align: center; }
    /* Scroll-top / WhatsApp float — avoid overlap on small screens */
    .scroll-top-btn          { right: 1rem; bottom: 4.5rem; width: 40px; height: 40px; font-size: 1rem; }
    .whatsapp-float          { left: 1rem; bottom: 1rem; width: 46px; height: 46px; font-size: 1.5rem; }
    /* Navbar mobile menu */
    .navbar-collapse         { border-top: 1px solid var(--border); margin-top: 0.5rem; }
    .navbar-nav .nav-link    { padding: 0.55rem 0.75rem !important; font-size: 0.9rem; }
    /* Inline-height images (about.php, etc.) — cap height on xs */
    .col-lg-6 img.w-100,
    .col-lg-5 img.w-100      { max-height: 260px !important; }
    /* Brand detail page */
    .brand-detail-card       { padding: 1.8rem 1.2rem; }
}
