﻿/* ============================================================
   INTERCLEAN THEME — custom.css v2.1.0
   Primary: #1A2770  |  Secondary: #243B97  |  Font: Inter
   ============================================================ */

/* ---- 1. CSS VARIABLES ---- */
:root {
    --brand:          #1A2770;
    --brand-alt:      #243B97;
    --brand-dark:     #131e56;
    --brand-mid:      #223399;
    --brand-light:    #e8edf8;
    --brand-accent:   #f0f3fc;
    --gradient:       linear-gradient(135deg, #1A2770 0%, #243B97 100%);
    --gradient-rev:   linear-gradient(135deg, #243B97 0%, #1A2770 100%);
    --white:          #ffffff;
    --gray-50:        #f9fafb;
    --gray-100:       #f3f4f6;
    --gray-200:       #e5e7eb;
    --gray-400:       #9ca3af;
    --gray-600:       #4b5563;
    --gray-800:       #1f2937;
    --text:           #2d3748;
    --text-light:     #64748b;
    --border:         #e2e8f0;
    --success:        #10b981;
    --danger:         #ef4444;
    --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-xs:      0 1px 3px rgba(26,39,112,.06);
    --shadow-sm:      0 2px 8px rgba(26,39,112,.09);
    --shadow-md:      0 4px 20px rgba(26,39,112,.12);
    --shadow-lg:      0 8px 40px rgba(26,39,112,.16);
    --radius-sm:      6px;
    --radius:         12px;
    --radius-lg:      20px;
    --radius-xl:      30px;
    --transition:     all .3s ease;
}

/* ---- 2. RESET & GLOBAL ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a { color: var(--brand); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-dark); }

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font);
    font-weight: 700;
    color: var(--brand);
    line-height: 1.25;
    margin-bottom: .75rem;
}

p { margin-bottom: 1rem; color: var(--text-light); }
img { max-width: 100%; height: auto; }

.section-padding { padding: 80px 0; }
.bg-light-blue { background: var(--brand-accent); }
.req { color: var(--danger); }
.fw-600 { font-weight: 600; }
.text-sm { font-size: 13px; }

/* ---- 3. BUTTONS ---- */
.btn-brand {
    background: var(--brand);
    color: var(--white) !important;
    border: 2px solid var(--brand);
    padding: 11px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .3px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-brand-white {
    background: var(--white);
    color: var(--brand) !important;
    border: 2px solid var(--white);
    padding: 11px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-brand-white:hover {
    background: transparent;
    color: var(--white) !important;
}

.btn-brand-outline {
    background: transparent;
    color: var(--brand) !important;
    border: 2px solid var(--brand);
    padding: 11px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-brand-outline:hover {
    background: var(--brand);
    color: var(--white) !important;
}

.btn-brand-outline-white {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,.7);
    padding: 11px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-brand-outline-white:hover {
    background: var(--white);
    color: var(--brand) !important;
    border-color: var(--white);
}

.btn-outline-brand {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.btn-outline-brand:hover {
    background: var(--brand);
    color: var(--white);
}

/* ---- 4. TOP BAR ---- */
#top-bar {
    background: var(--brand-dark);
    padding: 9px 0;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-contact a {
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
}
.top-bar-contact a:hover { color: var(--white); }
.top-bar-contact i { color: rgba(255,255,255,.6); font-size: 11px; }

.top-bar-social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-social a {
    color: rgba(255,255,255,.75);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    font-size: 12px;
    transition: var(--transition);
}
.top-bar-social a:hover {
    background: var(--white);
    color: var(--brand);
    border-color: var(--white);
}

/* ---- 5. HEADER / NAVBAR ---- */
#site-header {
    background: var(--white);
    box-shadow: var(--shadow-xs);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s ease;
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

#mainNavbar { padding: 0; }
#mainNavbar .container-xl { min-height: 72px; display: flex; align-items: center; }

.navbar-brand { padding: 10px 0; }
.logo-main { height: 55px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand) !important;
    letter-spacing: -.5px;
    text-decoration: none;
}

.navbar-nav .nav-item { margin: 0 2px; }
.navbar-nav .nav-link {
    color: var(--gray-800) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: .2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--brand) !important; background: var(--brand-accent); }

/* Dropdown */
.navbar-nav .dropdown-menu {
    border: 0;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 8px;
    min-width: 220px;
}
.navbar-nav .dropdown-item {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray-800);
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active {
    background: var(--brand-accent);
    color: var(--brand);
}

/* Mobile toggler */
.navbar-toggler { border: 0; padding: 6px; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.toggler-icon span {
    display: block;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transition: var(--transition);
}

.header-cta { flex-shrink: 0; }

/* ---- 6. HERO SLIDER ---- */
.hero-slider-section { position: relative; }

.hero-swiper { width: 100%; }

.hero-slide {
    height: 88vh;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(19,30,86,.62) 0%, rgba(26,39,112,.50) 50%, rgba(36,59,151,.28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-tagline {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.9);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.25);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Swiper controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    transition: var(--transition);
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover { background: var(--brand); border-color: var(--brand); }
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 16px; font-weight: 700; }

.hero-swiper .swiper-pagination-bullet { background: var(--white); opacity: .5; width: 8px; height: 8px; }
.hero-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--white); width: 28px; border-radius: 4px; }

/* ---- 7. STATS STRIP ---- */
.stats-strip {
    background: var(--gradient);
    padding: 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,.15);
    position: relative;
}
.stat-item:last-child { border-right: 0; }

.stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-suffix { font-size: 28px; font-weight: 800; color: rgba(255,255,255,.8); }

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin: 6px 0 0;
}

/* ---- 8. SECTION HEADERS ---- */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-light);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 12px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ---- 9. PRODUCT CATEGORIES GRID ---- */
.category-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.category-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19,30,86,.9) 0%, rgba(26,39,112,.3) 55%, transparent 100%);
    transition: var(--transition);
}
.category-card:hover .category-card-overlay { background: linear-gradient(to top, rgba(19,30,86,.95) 0%, rgba(26,39,112,.6) 70%, transparent 100%); }

.category-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
}

.category-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px;
    line-height: 1.3;
}

.category-card-count {
    font-size: 11px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

/* ---- 10. PRODUCT CARDS ---- */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--brand-light); }

.product-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-100);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }

.product-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brand);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .3px;
}

.product-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.35;
}
.product-card-title a { color: var(--brand); }
.product-card-title a:hover { color: var(--brand-dark); }

.product-card-excerpt {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
    flex: 1;
    line-height: 1.55;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-card-link:hover { color: var(--brand-dark); gap: 8px; }

.product-card-quote {
    width: 34px;
    height: 34px;
    background: var(--brand-accent);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
    flex-shrink: 0;
}
.product-card-quote:hover { background: var(--brand); color: var(--white); }

.product-card-sm .product-card-img-wrap { aspect-ratio: 1; }
.product-card-sm .product-card-title { font-size: 13px; }

/* ---- 11. WHY CHOOSE US ---- */
.why-choose-section { background: var(--gray-50); }

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--brand-light); }

.why-icon {
    width: 72px;
    height: 72px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--brand);
    transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--brand); color: var(--white); }

.why-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 10px;
}
.why-desc { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ---- 12. CTA BANNER ---- */
.cta-section {
    background: var(--gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.cta-subtitle { color: rgba(255,255,255,.8); font-size: 15px; margin: 0; }

/* ---- 13. BRANDS / PRINCIPALS SLIDER ---- */
.brands-slider { overflow: hidden; padding: 10px 0; }

.brand-slide { display: flex; align-items: center; justify-content: center; }

.brand-logo-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    transition: var(--transition);
}
.brand-logo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.brand-logo-img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(50%);
    transition: var(--transition);
}
.brand-logo-card:hover .brand-logo-img { filter: none; }

.brand-name-fallback {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    text-align: center;
}

/* ---- 14. FAQ ACCORDION ---- */
.faq-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-button {
    font-weight: 600;
    font-size: 15px;
    color: var(--brand) !important;
    background: var(--white) !important;
    padding: 18px 20px;
    box-shadow: none !important;
}
.faq-button:not(.collapsed) { background: var(--brand-accent) !important; }
.faq-button::after { filter: brightness(0) saturate(100%) invert(16%) sepia(80%) saturate(900%) hue-rotate(210deg); }

.faq-body { padding: 6px 20px 20px; font-size: 14.5px; color: var(--text-light); line-height: 1.7; }

/* ---- 15. HOME CONTACT FORM ---- */
.home-contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* ---- 16. FEATURED BANNER (INNER PAGES) ---- */
.featured-banner {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
    background-color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.featured-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19,30,86,.88) 0%, rgba(26,39,112,.7) 100%);
}

.featured-banner-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.featured-banner-title {
    font-size: clamp(24px, 4vw, 46px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.featured-banner .breadcrumb { margin: 0; }
.featured-banner .breadcrumb-item a { color: rgba(255,255,255,.75); font-size: 13.5px; }
.featured-banner .breadcrumb-item a:hover { color: var(--white); }
.featured-banner .breadcrumb-item.active { color: rgba(255,255,255,.95); font-size: 13.5px; }
.featured-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ---- 17. SIDEBAR ---- */
.product-sidebar { position: sticky; top: 90px; }

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-xs);
}

.sidebar-widget-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brand-light);
    display: flex;
    align-items: center;
}

.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }

.sidebar-cat-item {
    border-bottom: 1px solid var(--border);
}
.sidebar-cat-item:last-child { border-bottom: 0; }

.sidebar-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.sidebar-cat-link:hover,
.sidebar-cat-item.active > .sidebar-cat-link { color: var(--brand); }

.cat-count {
    font-size: 11px;
    background: var(--brand-light);
    color: var(--brand);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
    flex-shrink: 0;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    font-size: 11px;
    float: right;
    margin-top: -36px;
    transition: var(--transition);
}
.sidebar-toggle:hover { color: var(--brand); }

.sidebar-subcat-list {
    list-style: none;
    padding: 0 0 0 12px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.sidebar-subcat-list.open { max-height: 500px; }

.sidebar-subcat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 13px;
    color: var(--text-light);
    transition: var(--transition);
}
.sidebar-subcat-list a:hover,
.sidebar-subcat-list a.active { color: var(--brand); }

/* Sidebar Quote Widget */
.sidebar-quote-widget { background: var(--brand); border-color: var(--brand); }
.sidebar-quote-widget .sidebar-widget-title { color: var(--white); border-bottom-color: rgba(255,255,255,.2); }
.sidebar-quote-widget p { color: rgba(255,255,255,.8); }
.sidebar-quote-form .form-control { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--white); font-size: 13px; }
.sidebar-quote-form .form-control::placeholder { color: rgba(255,255,255,.5); }
.sidebar-quote-form .form-control:focus { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); box-shadow: none; color: var(--white); }
.sidebar-form-response { font-size: 13px; padding: 10px 14px; }

/* ---- 18. FORMS ---- */
.form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    font-size: 14.5px;
    font-family: var(--font);
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(26,39,112,.1);
    outline: none;
}
.form-label {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--gray-800);
    margin-bottom: 6px;
}
.form-hint { font-size: 12.5px; color: var(--text-light); margin-top: 6px; }

/* ---- 19. CONTACT PAGE ---- */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--brand);
}

.contact-info-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 12px;
}
.contact-info-body { display: flex; flex-direction: column; gap: 4px; }
.contact-info-body a,
.contact-info-body span { font-size: 14px; color: var(--text-light); }
.contact-info-body a:hover { color: var(--brand); }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.contact-form-heading { font-size: 24px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.contact-map-wrap iframe { width: 100%; height: 380px; border-radius: var(--radius); border: 0; }

/* ---- 20. GET A QUOTE PAGE ---- */
.quote-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.quote-form-header { margin-bottom: 36px; text-align: center; }
.quote-form-title { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.quote-form-subtitle { color: var(--text-light); font-size: 15px; margin: 0; }

.quote-form-section {
    border-bottom: 1px solid var(--border);
    padding-bottom: 28px;
    margin-bottom: 28px;
}
.quote-form-section:last-of-type { border-bottom: 0; }

.quote-section-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.quote-section-heading span {
    width: 30px;
    height: 30px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.quote-form-note { font-size: 13px; }

/* Quote Sidebar Info */
.quote-side-info { position: sticky; top: 90px; }

.quote-side-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.quote-side-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 16px;
    flex-shrink: 0;
}
.quote-side-card h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--brand); }
.quote-side-card p { font-size: 13px; color: var(--text-light); margin: 0; }

/* ---- 21. SUBCATEGORY TABS ---- */
.subcategory-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.subcat-tab {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}
.subcat-tab:hover,
.subcat-tab.active {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}

.category-page-title { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.category-page-desc { font-size: 14px; }
.product-count-badge {
    background: var(--brand-light);
    color: var(--brand);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
}

/* ---- 22. PRODUCT DETAIL PAGE ---- */
.product-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.product-cat-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.product-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    border: 1px solid var(--border);
}
.product-main-img { width: 100%; height: auto; object-fit: contain; display: block; }

.product-detail-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 10px; }
.product-detail-cat { font-size: 13.5px; color: var(--text-light); margin-bottom: 16px; }
.product-detail-cat a { color: var(--brand); font-weight: 500; }
.product-detail-excerpt { font-size: 15px; color: var(--text-light); line-height: 1.7; }

.product-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.product-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.product-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--success);
    background: rgba(16,185,129,.08);
    border: 1px solid rgba(16,185,129,.2);
    padding: 4px 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Product Tabs */
.product-tabs {
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
    gap: 0;
}
.product-tab-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    padding: 12px 20px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-tab-btn.active,
.product-tab-btn:hover { color: var(--brand); border-bottom-color: var(--brand); }

.product-tab-content { padding-top: 8px; }
.product-description p { font-size: 15px; line-height: 1.75; }

.related-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }

/* ---- 23. BLOG CARDS ---- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.blog-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--gray-100);
}
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }

.blog-card-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--brand);
    color: var(--white);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1;
}
.blog-date-day { font-size: 20px; font-weight: 800; display: block; }
.blog-date-month { font-size: 11px; font-weight: 600; text-transform: uppercase; display: block; }

.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-light); margin-bottom: 10px; }

.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}
.blog-card-title a { color: var(--brand); }
.blog-card-title a:hover { color: var(--brand-dark); }

.blog-card-excerpt { font-size: 13.5px; color: var(--text-light); margin-bottom: 16px; flex: 1; line-height: 1.6; }

.blog-card-link { font-size: 13px; font-weight: 600; color: var(--brand); display: flex; align-items: center; gap: 5px; margin-top: auto; }
.blog-card-link:hover { gap: 8px; }

.blog-pagination { text-align: center; }
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand);
    border: 1.5px solid var(--border);
    margin: 0 3px;
    transition: var(--transition);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}

/* ---- 24. SINGLE BLOG POST ---- */
.single-post { }
.single-post-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--text-light); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.single-post-meta a { color: var(--brand); }

.single-post-content { font-size: 16px; line-height: 1.8; }
.single-post-content p { color: var(--text); margin-bottom: 18px; }
.single-post-content h2,
.single-post-content h3,
.single-post-content h4 { margin-top: 32px; margin-bottom: 14px; }
.single-post-content img { border-radius: var(--radius); }
.single-post-content blockquote {
    border-left: 4px solid var(--brand);
    background: var(--brand-accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    margin: 24px 0;
}

.single-post-tags { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.post-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    margin: 4px;
}

.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--brand-accent);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 32px;
}
.author-avatar img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.author-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.author-bio { font-size: 13.5px; color: var(--text-light); margin: 0; }

.post-navigation { display: flex; gap: 16px; margin-top: 32px; }
.post-nav-link {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}
.post-nav-link:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.post-nav-next { justify-content: flex-end; text-align: right; }
.post-nav-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); display: block; margin-bottom: 4px; }
.post-nav-title { font-size: 14px; font-weight: 600; color: var(--brand); display: block; }

/* ---- 25. SERVICES ---- */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.service-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card-title a { color: var(--brand); }
.service-card-desc { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.service-card-link { font-size: 13px; font-weight: 600; color: var(--brand); display: flex; align-items: center; gap: 5px; }
.service-card-link:hover { gap: 8px; }

/* ---- 26. PRINCIPAL CARDS ---- */
.principal-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
    text-align: center;
    height: 100%;
    text-decoration: none;
}
.principal-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--brand-light); }
.principal-card-logo {
    padding: 28px 24px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}
.principal-logo-img { max-height: 90px; max-width: 100%; object-fit: contain; filter: grayscale(40%); transition: var(--transition); }
.principal-card:hover .principal-logo-img { filter: none; transform: scale(1.05); }
.principal-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.principal-card-name { font-size: 15px; font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.principal-card-desc { font-size: 13px; color: var(--text-light); margin-bottom: 14px; flex: 1; line-height: 1.55; }
.principal-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brand);
    margin-top: auto;
    transition: gap .2s, color .2s;
}
.principal-card:hover .principal-card-cta { gap: 8px; color: var(--brand-alt); }

/* ---- 27. FAQ CTA BOX ---- */
.faq-cta-box {
    background: var(--brand-light);
    border-radius: var(--radius);
    border: 1px solid var(--brand);
    padding: 28px 32px;
}
.faq-cta-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.faq-cta-text { color: var(--text-light); }

/* ---- 28. FOOTER ---- */
#site-footer { }

.footer-top {
    background: var(--brand-dark);
    padding: 70px 0 50px;
}

.footer-logo { max-height: 50px; }
.footer-text-logo { font-size: 22px; font-weight: 800; color: var(--white); }

.footer-about {
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-top: 12px;
    margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--white); color: var(--brand); border-color: var(--white); }

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a i { font-size: 11px; color: rgba(255,255,255,.4); }

.footer-contact-list { list-style: none; padding: 0; margin: 0 0 16px; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
}
.footer-contact-list i { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.75); }
.footer-contact-list a:hover { color: var(--white); }

.footer-map iframe { width: 100%; height: 160px; border-radius: var(--radius-sm); border: 0; opacity: .85; }

.footer-bottom {
    background: rgba(0,0,0,.25);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--white); }

/* ---- 29. BACK TO TOP ---- */
#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--brand);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--brand-dark); transform: translateY(-3px); }

/* ---- 30. 404 PAGE ---- */
.error-404-wrap { padding: 80px 20px; }
.error-404-code {
    font-size: clamp(100px, 18vw, 180px);
    font-weight: 900;
    color: var(--brand);
    line-height: 1;
    opacity: .12;
    margin-bottom: -20px;
}
.error-404-title { font-size: clamp(28px, 5vw, 44px); font-weight: 800; }
.error-404-text { font-size: 16px; max-width: 400px; margin: 0 auto 24px; }

/* ---- 31. UTILITY ---- */
.read-more-link { font-weight: 600; font-size: 13px; }
.no-products-found { }
.page-content-wrap img { border-radius: var(--radius); }
.page-content-wrap p { font-size: 15.5px; line-height: 1.75; color: var(--text); }
.page-intro p { font-size: 16px; color: var(--text-light); }

/* Tom Select overrides */
.ts-control { border-color: var(--border) !important; border-radius: var(--radius-sm) !important; padding: 8px 12px !important; font-size: 14px !important; }
.ts-control:focus-within { border-color: var(--brand) !important; box-shadow: 0 0 0 3px rgba(26,39,112,.1) !important; }
.ts-dropdown { border-radius: var(--radius) !important; box-shadow: var(--shadow-lg) !important; border-color: var(--border) !important; }
.ts-dropdown .option:hover, .ts-dropdown .option.active { background: var(--brand-light) !important; color: var(--brand) !important; }

/* Alert overrides */
.alert-success { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.3); color: #065f46; }
.alert-danger { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.2); color: #991b1b; }

/* ---- 32. RESPONSIVE ---- */
@media (max-width: 991.98px) {
    .section-padding { padding: 55px 0; }
    .hero-slide { height: 55vh; min-height: 420px; }
    .featured-banner { height: 260px; }
    .industries-strip { display: none; }
    .stats-strip { display: none; }
    .about-section { display: none; }
    .featured-banner-title { font-size: 28px; }
    .home-contact-form-wrap { padding: 28px; }
    .quote-form-wrap { padding: 28px; }
    .contact-form-wrap { padding: 28px; }
    .product-sidebar { position: relative; top: auto; }
    .stat-item { padding: 22px 12px; }
    .footer-top { padding: 50px 0 36px; }
}

@media (max-width: 767.98px) {
    .section-padding { padding: 44px 0; }
    .hero-slide { height: 50vh; min-height: 380px; }
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 14.5px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn-brand-white,
    .hero-actions .btn-brand-outline-white { justify-content: center; }
    .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .category-card { aspect-ratio: 1; }
    .featured-banner { height: 220px; }
    .cta-section { padding: 48px 0; }
    .why-card { padding: 24px 20px; }
    .quote-form-wrap { padding: 24px 18px; }
    .contact-form-wrap { padding: 24px 18px; }
    .author-box { flex-direction: column; align-items: center; text-align: center; }
    .post-navigation { flex-direction: column; }
    .footer-top { padding: 40px 0 30px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 575.98px) {
    .hero-slide { height: 46vh; min-height: 340px; }
    .hero-tagline { display: none; }
    .stats-strip .row > div:nth-child(1),
    .stats-strip .row > div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
    .product-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
    .section-title { font-size: 24px; }
}

/* ============================================================
   HOMEPAGE ENHANCEMENTS v2.1.0
   Colors: #1A2770 (primary) + #243B97 (secondary)
   ============================================================ */

/* ---- HERO: Floating Info Card ---- */
.hero-info-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: var(--white);
    position: relative;
    z-index: 2;
}
.hero-info-card-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
}
.hero-info-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-info-stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.hero-info-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.hero-info-stat-num {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.hero-info-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

/* ---- INDUSTRIES WE SERVE ---- */
.industries-strip {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}
.industries-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap;
    padding-right: 28px;
    border-right: 2px solid var(--border);
    margin-right: 28px;
    flex-shrink: 0;
}
.industries-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}
.industry-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-accent);
    color: var(--brand);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--brand-light);
    white-space: nowrap;
    transition: var(--transition);
}
.industry-chip:hover {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}
.industry-chip i { font-size: 14px; }

/* ---- ABOUT / WHO WE ARE SECTION ---- */
.about-section { background: var(--white); }

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 22px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-img-badge strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}
.about-img-badge span { font-size: 12px; font-weight: 600; opacity: .85; }

.about-content { padding-left: 20px; }
.about-feature-list { margin-top: 24px; list-style: none; padding: 0; }
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}
.about-feature-icon {
    width: 38px;
    height: 38px;
    background: var(--brand-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-alt);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}
.about-feature-title { font-size: 15px; font-weight: 700; color: var(--brand); margin-bottom: 2px; }
.about-feature-desc { font-size: 13.5px; color: var(--text-light); margin: 0; }

/* ---- CATEGORY CARDS v2 ---- */
.category-card-v2 {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.category-card-v2:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }

.category-card-v2-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
    background: var(--brand-accent);
}
.category-card-v2:hover .category-card-v2-img { transform: scale(1.06); }

.category-card-v2-body {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 3px solid transparent;
    transition: var(--transition);
}
.category-card-v2:hover .category-card-v2-body { border-top-color: var(--brand-alt); }

.category-card-v2-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 3px;
    line-height: 1.3;
}
.category-card-v2-count {
    font-size: 11.5px;
    color: var(--text-light);
    font-weight: 500;
}
.category-card-v2-arrow {
    width: 34px;
    height: 34px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 13px;
    flex-shrink: 0;
    transition: var(--transition);
}
.category-card-v2:hover .category-card-v2-arrow {
    background: var(--brand-alt);
    color: var(--white);
}

/* ---- PRODUCT CARDS v2 ---- */
.product-card-v2 {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.product-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 1;
}
.product-card-v2:hover::before { transform: scaleX(1); }
.product-card-v2:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--brand-light); }

.product-card-v2-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-100);
}
.product-card-v2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card-v2:hover .product-card-v2-img { transform: scale(1.06); }

.product-card-v2-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity .3s ease;
}
.product-card-v2:hover .product-card-v2-overlay { opacity: .92; }
.product-card-v2-overlay a {
    background: var(--white);
    color: var(--brand);
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-card-v2-overlay a:hover { background: var(--brand-light); }

.product-card-v2-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient);
    color: var(--white);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .3px;
    z-index: 2;
}
.product-card-v2-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-v2-cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-alt);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.product-card-v2-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
    flex: 1;
}
.product-card-v2-title a { color: var(--brand); }
.product-card-v2-title a:hover { color: var(--brand-alt); }
.product-card-v2-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}
.product-card-v2-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.product-card-v2-link:hover { color: var(--brand-alt); gap: 8px; }
.product-card-v2-quote-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}
.product-card-v2-quote-btn:hover { background: var(--gradient); color: var(--white); }

/* ---- WHY CHOOSE US v2 ---- */
.why-v2-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.why-v2-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.why-v2-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px; height: 350px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}

.why-v2-section .section-tag {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.2);
}
.why-v2-section .section-title { color: var(--white); }
.why-v2-section .section-subtitle { color: rgba(255,255,255,.75); }

.why-v2-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
}
.why-v2-card:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.3);
    transform: translateY(-5px);
}
.why-v2-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 20px;
    transition: var(--transition);
}
.why-v2-card:hover .why-v2-icon { background: rgba(255,255,255,.25); }
.why-v2-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-v2-desc { font-size: 14px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.65; }

/* ---- OUR PROCESS ---- */
.process-section { background: var(--gray-50); }

.process-step {
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% + 44px);
    right: calc(-50% + 44px);
    height: 2px;
    background: linear-gradient(to right, var(--brand-light), var(--brand-light));
    z-index: 0;
}
.process-step:last-child::after { display: none; }

.process-step-num {
    width: 72px; height: 72px;
    background: var(--white);
    border: 3px solid var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: var(--brand);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.process-step:hover .process-step-num {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.process-step-icon {
    width: 44px; height: 44px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-alt);
    font-size: 18px;
    margin: 0 auto 16px;
    transition: var(--transition);
}
.process-step:hover .process-step-icon { background: var(--brand-alt); color: var(--white); }

.process-step-title { font-size: 16px; font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.process-step-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ---- CLIENT SECTORS STRIP ---- */
.sectors-section { background: var(--brand-accent); padding: 50px 0; }
.sector-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--brand-light); }
.sector-icon {
    width: 56px; height: 56px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--brand-alt);
    transition: var(--transition);
}
.sector-card:hover .sector-icon { background: var(--gradient); color: var(--white); }
.sector-title { font-size: 13.5px; font-weight: 700; color: var(--brand); margin: 0; }

/* ---- ENHANCED CTA ---- */
.cta-title { font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.cta-subtitle { color: rgba(255,255,255,.8); font-size: 16px; margin: 0; }
.cta-divider {
    width: 60px; height: 3px;
    background: rgba(255,255,255,.4);
    margin: 16px 0;
    border-radius: 2px;
}
.cta-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 500;
}
.cta-contact-item i { color: rgba(255,255,255,.6); }

/* ---- BRANDS ENHANCED ---- */
.brands-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }

/* ---- HOMEPAGE FAQ ENHANCED ---- */
.home-faq-section { background: var(--white); }

/* ---- TRUST BADGES ---- */
.trust-bar {
    background: var(--brand);
    padding: 18px 0;
    border-top: 4px solid var(--brand-alt);
}
.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px 48px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-size: 13px;
    font-weight: 600;
}
.trust-item i { color: rgba(255,255,255,.6); font-size: 16px; }

/* ---- ABOUT US PAGE ---- */
.about-page-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-page-main-img {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}
.about-page-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--radius);
    padding: 18px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 100px;
}
.about-page-badge strong { display: block; font-size: 13px; font-weight: 600; opacity: .8; letter-spacing: 1px; text-transform: uppercase; }
.about-page-badge span { font-size: 38px; font-weight: 900; line-height: 1.1; display: block; }

.about-page-content p { font-size: 15.5px; line-height: 1.8; color: var(--text); }

/* MVV Cards */
.mvv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}
.mvv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.mvv-card-center {
    background: var(--gradient);
    border-color: transparent;
}
.mvv-card-center .mvv-icon { background: rgba(255,255,255,.15); color: var(--white); }
.mvv-card-center .mvv-title { color: var(--white); }
.mvv-card-center .mvv-text { color: rgba(255,255,255,.85); }

.mvv-icon {
    width: 64px; height: 64px;
    background: var(--brand-light);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--brand-alt);
    margin-bottom: 22px;
}
.mvv-title { font-size: 20px; font-weight: 800; color: var(--brand); margin-bottom: 14px; }
.mvv-text { font-size: 14.5px; color: var(--text-light); line-height: 1.7; margin: 0; }
.mvv-list { list-style: none; padding: 0; margin: 0; }
.mvv-list li { font-size: 14px; color: var(--text-light); padding: 6px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.mvv-list li:last-child { border-bottom: 0; }
.mvv-list li i { color: var(--success); font-size: 13px; flex-shrink: 0; }

/* About Stats */
.about-stats-section { background: var(--gradient); }
.about-stat { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(255,255,255,.15); }
.about-stat:last-child { border-right: 0; }
.about-stat-num { font-size: clamp(38px, 5vw, 56px); font-weight: 900; color: var(--white); line-height: 1; }
.about-stat-suffix { font-size: 30px; font-weight: 900; color: rgba(255,255,255,.8); }
.about-stat-label { font-size: 12.5px; color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .8px; text-transform: uppercase; margin: 8px 0 0; }

/* About Why Cards */
.about-why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.about-why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--brand-light); }
.about-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.about-why-card:hover::before { transform: scaleX(1); }

.about-why-num {
    font-size: 60px;
    font-weight: 900;
    color: var(--brand-light);
    line-height: 1;
    position: absolute;
    top: 12px; right: 20px;
}
.about-why-icon {
    width: 60px; height: 60px;
    background: var(--brand-light);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--brand-alt);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative; z-index: 1;
}
.about-why-card:hover .about-why-icon { background: var(--gradient); color: var(--white); }
.about-why-title { font-size: 17px; font-weight: 700; color: var(--brand); margin-bottom: 10px; position: relative; z-index: 1; }
.about-why-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; margin: 0; position: relative; z-index: 1; }

/* About Sector Cards */
.about-sector-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.about-sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--brand-light); }
.about-sector-icon {
    width: 56px; height: 56px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px; color: var(--brand-alt);
    transition: var(--transition);
}
.about-sector-card:hover .about-sector-icon { background: var(--gradient); color: var(--white); }
.about-sector-label { font-size: 13.5px; font-weight: 700; color: var(--brand); margin: 0; line-height: 1.3; }

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 991.98px) {
    .hero-info-card { margin-top: 30px; }
    .about-content { padding-left: 0; margin-top: 32px; }
    .process-step::after { display: none; }
    .industries-label { display: none; }
    .about-stat { padding: 28px 14px; }
    .mvv-card { padding: 28px 22px; }
}
@media (max-width: 767.98px) {
    .why-v2-section { padding: 50px 0; }
    .trust-bar-inner { gap: 16px 28px; }
    .cta-section { padding: 56px 0; }
    .category-card-v2-img { height: 140px; }
}
@media (max-width: 575.98px) {
    .hero-info-card { display: none; }
    .industries-list { gap: 6px; }
    .industry-chip { font-size: 12px; padding: 6px 12px; }
}

/* ================================================================
   PRODUCTS PAGE — toolbar, grid/list view   (added 2026-05-10)
   ================================================================ */

.products-page-section { padding: 60px 0; }

/* Toolbar */
.products-toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
    box-shadow: var(--shadow-xs);
    flex-wrap: wrap;
}

.products-search-wrap {
    position: relative;
    flex: 1;
    min-width: 180px;
}
.products-search-wrap > i {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 13px;
    pointer-events: none;
}
.products-search-input {
    width: 100%;
    padding: 9px 12px 9px 33px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    background: var(--gray-50);
    transition: var(--transition);
    outline: none;
}
.products-search-input:focus {
    border-color: var(--brand);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26,39,112,.08);
}
.products-search-input::-webkit-search-cancel-button { cursor: pointer; }

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.toolbar-count {
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
}
.toolbar-count #visible-count {
    font-weight: 800;
    color: var(--brand);
    font-size: 16px;
}

/* Grid / List toggle */
.view-toggle-group {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.vtg-btn {
    background: var(--white);
    border: none;
    padding: 7px 14px;
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
    transition: background .2s, color .2s;
    line-height: 1;
}
.vtg-btn + .vtg-btn { border-left: 1.5px solid var(--border); }
.vtg-btn:hover     { background: var(--brand-accent); color: var(--brand); }
.vtg-btn.active    { background: var(--brand); color: var(--white); }

/* ── Unified product card ── */
.ic-product-item { display: flex; }

.ic-product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
    box-shadow: var(--shadow-xs);
}
.ic-product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-light);
    transform: translateY(-4px);
}

/* Image area — grid mode */
.ic-pcard-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--gray-100);
    flex-shrink: 0;
}
.ic-pcard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.ic-product-card:hover .ic-pcard-img { transform: scale(1.06); }

.ic-pcard-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient);
    color: var(--white);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .3px;
    pointer-events: none;
    z-index: 1;
}

/* Body */
.ic-pcard-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ic-pcard-cat {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--brand-alt);
    margin-bottom: 6px;
    display: block;
    transition: color .2s;
}
.ic-pcard-cat:hover { color: var(--brand); }
.ic-pcard-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
}
.ic-pcard-title a { color: var(--brand); transition: color .2s; }
.ic-pcard-title a:hover { color: var(--brand-alt); }
.ic-pcard-excerpt {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.ic-pcard-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.ic-pcard-quote-btn {
    width: 36px;
    height: 36px;
    background: var(--brand-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 13px;
    transition: var(--transition);
    flex-shrink: 0;
}
.ic-pcard-quote-btn:hover { background: var(--gradient); color: var(--white); }

/* ── List view overrides ── */
.ic-view-list .ic-product-card {
    flex-direction: row;
    transform: none;
}
.ic-view-list .ic-product-card:hover { transform: none; box-shadow: var(--shadow-md); }
.ic-view-list .ic-pcard-img-wrap {
    width: 220px;
    aspect-ratio: auto;
    flex-shrink: 0;
}
.ic-view-list .ic-pcard-badge { display: none; }

/* No results state */
.no-results-icon {
    width: 72px;
    height: 72px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand);
    margin: 0 auto 16px;
}
.btn-link-inline {
    background: none;
    border: none;
    color: var(--brand);
    font-weight: 600;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
    text-decoration: underline;
}
.btn-link-inline:hover { color: var(--brand-alt); }

/* ── Responsive breakpoints ── */
@media (max-width: 991px) {
    .ic-view-list .ic-pcard-img-wrap { width: 180px; }
}
@media (max-width: 767px) {
    .toolbar-count .tc-label { display: none; }
    .products-toolbar { padding: 8px 12px; gap: 10px; }
}
@media (max-width: 575px) {
    .ic-view-list .ic-product-card { flex-direction: column; }
    .ic-view-list .ic-pcard-img-wrap { width: 100%; aspect-ratio: 4 / 3; }
}

/* ================================================================
   MODERN SIDEBAR — sct-* (category tree redesign)  2026-05-10
   ================================================================ */

.sct-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sct-item {
    border-bottom: 1px solid var(--border);
}
.sct-item:last-child { border-bottom: 0; }

.sct-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sct-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 11px 0 11px 10px;
    margin-left: -10px;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: color .2s, border-color .2s;
    line-height: 1.3;
}
.sct-link:hover { color: var(--brand); }
.sct-link.is-active {
    color: var(--brand);
    font-weight: 700;
    border-left-color: var(--brand);
}
.sct-item.is-open > .sct-row > .sct-link { color: var(--brand); }

.sct-name { flex: 1; }

.sct-count {
    font-size: 10.5px;
    background: var(--brand-light);
    color: var(--brand);
    padding: 2px 7px;
    border-radius: 100px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.5;
    transition: background .2s, color .2s;
}
.sct-link.is-active .sct-count { background: var(--brand); color: var(--white); }

/* Expand toggle button */
.sct-toggle {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: var(--transition);
}
.sct-toggle:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-accent); }
.sct-toggle.open { background: var(--brand); border-color: var(--brand); color: var(--white); }
.sct-toggle i { transition: transform .25s ease; display: block; }
.sct-toggle.open i { transform: rotate(90deg); }

/* Sub-category list */
.sct-sub {
    list-style: none;
    padding: 0 0 6px 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
}
.sct-sub.open { max-height: 800px; }

.sct-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 13px;
    color: var(--text-light);
    transition: color .2s, padding-left .2s;
}
.sct-sub-link:hover { color: var(--brand); padding-left: 4px; }
.sct-sub-link.is-active { color: var(--brand); font-weight: 600; }

.sct-sub-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-400);
    flex-shrink: 0;
    transition: background .2s;
}
.sct-sub-link:hover .sct-sub-dot,
.sct-sub-link.is-active .sct-sub-dot { background: var(--brand); }

/* ── Quick Quote widget header ── */
.sqw-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
}
.sqw-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.18);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}
.sqw-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 3px;
}
.sqw-sub {
    font-size: 11.5px;
    color: rgba(255,255,255,.65);
    margin: 0;
    line-height: 1.4;
}
.sqw-submit {
    width: 100%;
    padding: 9px 16px;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.sqw-submit:hover { background: var(--white); color: var(--brand); border-color: var(--white); }


/* ================================================================
   SINGLE BRAND / PRINCIPAL DETAIL PAGE  v2  (2026-05-10)
   ================================================================ */

.brand-detail-main { background: var(--white); }

/* ── Profile section ── */
.bdp-section {
    padding: 0 0 64px;
}
.bdp-row {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 48px;
    border: 1px solid var(--border);
}

/* Logo panel */
.bdp-logo-col { background: var(--gray-50); }
.bdp-logo-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 40px 40px;
    text-align: center;
    border-right: 1px solid var(--border);
}
.bdp-logo-frame {
    width: 100%;
    max-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 36px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.bdp-logo-img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}
.bdp-logo-empty {
    font-size: 52px;
    color: var(--brand-light);
}
.bdp-logo-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0;
}

/* Info panel */
.bdp-info-col { background: var(--white); }
.bdp-info-panel {
    padding: 52px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bdp-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--brand-alt);
}
.bdp-eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--brand-alt);
    border-radius: 2px;
    flex-shrink: 0;
}

.bdp-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--brand);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -.5px;
}

.bdp-excerpt {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

/* Meta badges */
.bdp-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.bdp-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--brand-accent);
    border: 1px solid var(--brand-light);
    color: var(--brand);
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
}
.bdp-meta-item i { font-size: 11px; color: var(--brand-alt); }

.bdp-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
}

/* Action buttons */
.bdp-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.bdp-back-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    transition: color .2s;
    margin-left: 4px;
}
.bdp-back-link:hover { color: var(--brand); }

/* ── About content section ── */
.bdc-section {
    padding: 64px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bdc-heading {
    position: relative;
    margin-bottom: 36px;
    padding-bottom: 20px;
}
.bdc-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}
.bdc-heading-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand);
    margin: 0;
}

/* Content typography */
.bdc-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}
.bdc-body h2, .bdc-body h3, .bdc-body h4 {
    color: var(--brand);
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 14px;
}
.bdc-body h2 { font-size: 22px; }
.bdc-body h3 { font-size: 18px; }
.bdc-body h4 { font-size: 15px; }
.bdc-body p  { margin-bottom: 18px; color: var(--text-light); }
.bdc-body strong { color: var(--brand); font-weight: 700; }
.bdc-body ul, .bdc-body ol { padding-left: 22px; margin-bottom: 20px; }
.bdc-body li { margin-bottom: 8px; color: var(--text-light); }
.bdc-body img { max-width: 100%; border-radius: var(--radius); margin: 20px 0; }
.bdc-body table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 14px; }
.bdc-body th {
    background: var(--brand);
    color: var(--white);
    padding: 11px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
}
.bdc-body td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.bdc-body tr:nth-child(even) td { background: var(--white); }

/* ── CTA ── */
.bdc-cta {
    background: var(--gradient);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.bdc-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}
.bdc-cta-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px;
}
.bdc-cta-title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}
.bdc-cta-sub {
    font-size: 14.5px;
    color: rgba(255,255,255,.72);
    margin: 0;
    line-height: 1.65;
    max-width: 520px;
}
.bdc-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .bdp-row { margin-top: 36px; }
    .bdp-logo-panel { border-right: 0; border-bottom: 1px solid var(--border); padding: 40px 32px; }
    .bdp-info-panel { padding: 40px 36px; }
    .bdc-cta-btns { justify-content: flex-start; }
    .bdp-title { font-size: 30px; }
}
@media (max-width: 767px) {
    .bdp-section { padding: 0 0 44px; }
    .bdp-row { margin-top: 24px; }
    .bdp-logo-panel { padding: 32px 24px; }
    .bdp-logo-frame { padding: 24px 20px; min-height: 160px; }
    .bdp-logo-img { max-height: 110px; }
    .bdp-info-panel { padding: 32px 24px; }
    .bdp-excerpt { font-size: 14.5px; }
    .bdc-section { padding: 44px 0; }
    .bdc-cta { padding: 44px 0; }
}

/* ================================================================
   NUMBERED PAGINATION  (2026-05-10)
   ================================================================ */

.ic-pagination { display: flex; justify-content: center; }

.ic-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.ic-pagination .page-numbers li { display: flex; }

.ic-pagination .page-numbers a,
.ic-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
    line-height: 1;
}

.ic-pagination .page-numbers a:hover {
    background: var(--brand-accent);
    border-color: var(--brand);
    color: var(--brand);
}

.ic-pagination .page-numbers span.current {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.ic-pagination .page-numbers .prev,
.ic-pagination .page-numbers .next {
    background: var(--white);
    color: var(--brand);
}
.ic-pagination .page-numbers .prev:hover,
.ic-pagination .page-numbers .next:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.ic-pagination .page-numbers span.dots {
    border-color: transparent;
    background: transparent;
    color: var(--text-light);
    min-width: 20px;
}
