:root {
    --red: #ed1b24;
    --red-dark: #ed1b24;
    --teal: #191c45;
    --teal-light: #E1F5EE;
    --dark: #111214;
    --mid: #191c45e2;
    --surface: #F5F5F3;
    --muted: #6B6B6B;
    --border: #E0DEDA;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: #111;
    background: #fff;
    overflow-x: hidden;
}

.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.95rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 190px;
    object-fit: contain;
}

.custom-navbar-toggler {
    border: 1px solid var(--border);
    border-radius: 3px;
    box-shadow: none;
    padding: 0.25rem 0.5rem;
}

.custom-toggler-icon {
    font-size: 22px;
    color: #fff;
}

.brand-badge {
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 4px 10px;
    border-radius: 4px;
}

.brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
   font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 0.5rem 1.5rem !important;
    transition: color 0.5s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--red);
}

.navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--red);
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    overflow: hidden;
    margin-left: 8px;
}

.lang-btn {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1;
    padding: 7px 11px;
    cursor: pointer;
}

.lang-btn.active {
    background: var(--red);
    color: #fff;
}

.lang-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 0;
}

@media (max-width: 991.98px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 8px;
    }
}

.hero {
    position: relative;
    min-height: 560px;
    background: var(--dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(29,168,122,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 30% 50%, rgba(224,32,32,0.08) 0%, transparent 70%),
        url('../images/hero-img.jpg') center/cover no-repeat;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17,18,20,0.92) 40%, rgba(17,18,20,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
       display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f0f0f0;
    border: 1px solid #ffffff;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.hero-title span {
    color: var(--red);
}

.caption-custome
 {
    bottom: 3.25rem;
    left: 5%;
    right: auto;
    text-align: left;
}


.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-primary-red {
    background: var(--red);
    color: #fff;
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.5s, transform 0.15s;
}

.btn-primary-red:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-light-custom {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.3);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;
}

.btn-outline-light-custom:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.trust-bar {
    background: var(--teal);
    padding: 1.5rem 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-align: center;
}

.trust-icon {
    font-size: 22px;
    opacity: 0.9;
}

.trust-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-desc {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.4;
}

.section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 0.5rem;
}

.text-accent-red {
    color: var(--red);
}

 
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 48px);
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.section-body {
    font-size: 15px;
    color: #000000;
    line-height: 1.75;
    font-weight: 500;
}

.about-section {
    padding: 6rem 0;
}

.stat-card {
    border-left: 3px solid var(--red);
    padding: 0.75rem 1rem;
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: var(--dark);
    line-height: 1;
}

.stat-desc {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 500;
}

.about-image-box {
    background: var(--surface);
    border-radius: 8px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    position: relative;
    overflow: hidden;
}

.about-image-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(29,168,122,0.08);
}

.about-image-box img {
     
    width: 100%;
    position: relative;
    z-index: 1;
}

.btn-outline-red {
    border: 1.5px solid var(--red);
    color: var(--red);
    background: transparent;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;
}

.btn-outline-red:hover {
    background: var(--red);
    color: #fff;
}

.products-section {
    background: var(--surface);
    padding: 6rem 0;
}

.product-card {
    background: #efefef;
    border-radius: 6px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.5s, box-shadow 0.5s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.product-img-wrap {
    background: #F8F8F6;
    
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.product-img-wrap img {
   
    width: auto;
    object-fit: contain;
}

.product-info {
    padding: 1rem 1.25rem 1.25rem;
}

.product-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--dark);
    margin-bottom: 4px;
}

.product-spec {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    font-weight: 400;
}

.product-tag {
    display: inline-block;
    background: var(--teal-light);
    color: #191c45;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    margin-top: 8px;
}

.btn-teal {
    background: var(--teal);
    color: #fff;
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.5s;
}

.btn-teal:hover {
    background: #191c45;
    color: #fff;
}

.cta-band {
    background: var(--dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/cta-band.jpg') center/cover no-repeat;
    opacity: 0.07;
}

.cta-band-inner {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.05;
}

.cta-title span {
    color: var(--red);
}

.cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-top: 0.75rem;
}

.site-footer {
    background: var(--mid);
    padding: 4rem 0 2rem;
    color: rgba(255,255,255,0.6);
}

.site-footer .navbar-brand {
    max-width: 140px;
    display: inline-block;
}

.site-footer .navbar-brand img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-brand {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.5s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 0.75rem;
}

.footer-contact-item i {
    color: #ffffff;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255);
    padding-top: 1.5rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 12px;
    color: rgb(242 242 242);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255 255 255);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.5s;
}

.footer-social a:hover {
    border-color: var(--red-dark);
    color: var(--red-dark);
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}
.page-hero {
    position: relative;
    min-height: 360px;
    padding: 6rem 0 4.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-img.jpg') center/cover no-repeat;
    opacity: 0.12;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17,18,20,0.94) 25%, rgba(25,28,69,0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-custom {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 1rem;
}

.breadcrumb-custom a,
.breadcrumb-custom .active,
.breadcrumb-custom .sep {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.breadcrumb-custom a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
}

.breadcrumb-custom .active,
.breadcrumb-custom .sep {
    color: rgba(255,255,255,0.35);
}

.page-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.96;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
}

.page-title span,
.section-title .text-accent-red {
    color: var(--red);
}

.page-hero-lead,
.page-sub {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.75;
    margin-top: 0.75rem;
    max-width: 520px;
}

.filter-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
    position: sticky;
    top: 62px;
    z-index: 100;
}

.filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
    flex-shrink: 0;
}

.filter-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.filter-btn.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.filter-count {
    margin-left: auto;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    flex-shrink: 0;
}

.filter-count span {
    color: var(--dark);
}

.products-layout {
    padding: 3.5rem 0 5rem;
    background: #F8F8F6;
}

.products-layout .container {
    max-width: 1180px;
}

.products-layout .section-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
}

.products-layout .product-info {
    min-height: 220px;
}

.products-layout .product-card {
    border-color: rgba(17, 18, 20, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.products-layout .product-img-wrap {
    min-height: 220px;
}

.products-layout .product-tag {
    background: rgba(15, 110, 86, 0.12);
    color: #0F6E56;
}

.products-layout .product-series {
    color: #606060;
}

.sidebar {
    position: sticky;
    top: 115px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.sidebar-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-body {
    padding: 1rem 1.1rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: #444;
    font-size: 14px;
    transition: color 0.18s;
    cursor: pointer;
}

.sidebar-link:last-child {
    border-bottom: none;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--red);
}

.sidebar-link.active {
    font-weight: 600;
}

.sidebar-link .badge-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    background: var(--surface);
    color: var(--muted);
    padding: 2px 7px;
    border-radius: 10px;
}

.sidebar-link.active .badge-count {
    background: rgba(224,32,32,0.1);
    color: var(--red);
}

.price-range-wrap {
    padding: 0.25rem 0;
}

.price-inputs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.price-input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 6px 10px;
    font-size: 13px;
    color: var(--dark);
    font-family: 'Barlow', sans-serif;
    outline: none;
}

.price-input:focus {
    border-color: var(--red);
}

.price-sep {
    color: var(--muted);
    font-size: 12px;
    flex-shrink: 0;
}

.sidebar-apply {
    width: 100%;
    margin-top: 10px;
    background: var(--red);
    color: #fff;
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-apply:hover {
    background: var(--red-dark);
}

.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.sort-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.sort-select {
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 6px 28px 6px 10px;
    font-size: 13px;
    font-family: 'Barlow', sans-serif;
    color: var(--dark);
    background: #fff;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6B6B'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.sort-select:focus {
    border-color: var(--red);
}

.view-btns {
    display: flex;
    gap: 4px;
}

.view-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: #fff;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.18s;
    font-size: 15px;
}

.view-btn:hover,
.view-btn.active {
    border-color: var(--red);
    color: var(--red);
    background: rgba(224,32,32,0.05);
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.10);
}

.product-img-wrap {
    background: #F8F8F6;

    display: flex;
    align-items: center;
    justify-content: center;
  
    position: relative;
    overflow: hidden;
}

.product-img-wrap img {
  
    width: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.07);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
}

.badge-bestseller { background: var(--red); color: #fff; }
.badge-new { background: var(--dark); color: #fff; }
.badge-iso { background: var(--teal); color: #fff; }
.badge-pro { background: #7B5EA7; color: #fff; }
.badge-sale { background: #E07820; color: #fff; }

.product-quick {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17,18,20,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.25s ease;
}

.product-card:hover .product-quick {
    transform: none;
}

.quick-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background 0.18s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-btn-red {
    background: var(--red);
    color: #fff;
}

.quick-btn-red:hover {
    background: var(--red-dark);
}

.quick-btn-outline {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.quick-btn-outline:hover {
    background: rgba(255,255,255,0.22);
}

.product-info {
    padding: 1rem 1.1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.product-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.product-spec {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 10px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.product-series {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--muted);
    text-transform: uppercase;
}

.product-tag {
    display: inline-block;
    background: var(--teal-light);
    color: #0F6E56;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.page-btn {
    width: 38px;
    height: 38px;
    border-radius: 3px;
    border: 1px solid var(--border);
    background: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.18s;
    text-decoration: none;
}

.page-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.page-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.page-btn i {
    font-size: 12px;
}

.product-col {
    transition: opacity 0.2s;
}

.product-col.hidden {
    display: none;
}

.page-sub {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    margin-top: 0.75rem;
    max-width: 500px;
    line-height: 1.65;
}

.quick-strip {
    background: var(--teal);
    padding: 0;
}

.quick-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.4rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    transition: background 0.2s;
}

.quick-item:last-child {
    border-right: none;
}

.quick-item:hover {
    background: rgba(0,0,0,0.08);
}

.quick-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-icon-box i {
    font-size: 20px;
    color: #fff;
}

.quick-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    line-height: 1;
}

.quick-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-top: 3px;
    line-height: 1.2;
}

.contact-main {
    padding: 5.5rem 0 5rem;
}

.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem 2.25rem;
}

.form-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 0.35rem;
    letter-spacing: 0.2px;
}

.form-card-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.form-label-custom {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 6px;
    display: block;
}

.form-label-custom span {
    color: var(--red);
}

.form-control-custom {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    color: var(--dark);
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control-custom:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(224,32,32,0.08);
}

.form-control-custom::placeholder {
    color: #bbb;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 130px;
}

select.form-control-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6B6B'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-row {
    margin-bottom: 1.1rem;
}

.btn-submit {
    background: var(--red);
    color: #fff;
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 36px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.success-msg {
    display: none;
    background: var(--teal-light);
    border: 1px solid var(--teal);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: 14px;
    color: #0F6E56;
    align-items: center;
    gap: 10px;
}

.success-msg.show {
    display: flex;
}

.success-msg i {
    font-size: 18px;
    flex-shrink: 0;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.6rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: rgba(224,32,32,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: var(--red);
}

.info-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--dark);
}

.info-card-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 1px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-size: 14px;
    color: #333;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: var(--teal);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hours-table {
    width: 100%;
    font-size: 13.5px;
}

.hours-table tr td {
    padding: 5px 0;
}

.hours-table tr td:first-child {
    color: var(--muted);
    width: 55%;
}

.hours-table tr td:last-child {
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}

.hours-table tr.today td {
    color: var(--teal);
}

.hours-table tr.today td:first-child::before {
    content: '▶ ';
    font-size: 8px;
    vertical-align: middle;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 0.5rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.map-section {
    padding: 0 0 5rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    display: block;
    border: none;
}

.map-pin-card {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    max-width: 230px;
}

.map-pin-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
}

.map-pin-addr {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.map-pin-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--teal-light);
    color: #0F6E56;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-top: 8px;
}

.map-pin-badge i {
    font-size: 11px;
}

.faq-section {
    padding: 5rem 0;
    background: var(--surface);
}

.contact-accordion {
    --bs-accordion-bg: #fff;
    --bs-accordion-border-color: var(--border);
    --bs-accordion-border-width: 1px;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1.1rem;
    --bs-accordion-btn-color: var(--dark);
    --bs-accordion-btn-bg: #fff;
    --bs-accordion-active-color: var(--dark);
    --bs-accordion-active-bg: var(--surface);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(224, 32, 32, 0.08);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23E02020' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23E02020' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 10l4-4 4 4'/%3E%3C/svg%3E");
}

.contact-accordion .accordion-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.contact-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.contact-accordion .accordion-button {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    box-shadow: none;
}

.contact-accordion .accordion-button:not(.collapsed) {
    color: var(--dark);
    background: var(--surface);
    box-shadow: none;
}

.contact-accordion .accordion-button:focus {
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
    border-color: var(--border);
}

.contact-accordion .accordion-button::after {
    background-size: 16px;
}

.contact-accordion .accordion-body {
    padding-top: 0.25rem;
    padding-bottom: 1.25rem;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.accordion-item-custom {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-btn-custom {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: background 0.18s;
}

.accordion-btn-custom:hover,
.accordion-btn-custom.open {
    background: var(--surface);
}

.acc-q {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.2;
}

.acc-chevron {
    width: 28px;
    height: 28px;
    border-radius: 3px;
    background: rgba(224,32,32,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s, background 0.2s;
}

.acc-chevron i {
    font-size: 12px;
    color: var(--red);
}

.accordion-btn-custom.open .acc-chevron {
    transform: rotate(180deg);
    background: var(--red);
}

.accordion-btn-custom.open .acc-chevron i {
    color: #fff;
}

.accordion-body-custom {
    display: none;
    padding: 0 1.25rem 1.25rem;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

.accordion-body-custom.open {
    display: block;
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 0.85rem;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .navbar-nav {
        width: 100%;
        gap: 0;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 0.7rem 0 !important;
    }

    .quick-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .header-logo {
        height: 50px;
        max-width: 160px;
    }

    .quick-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero {
        padding: 3rem 0 2.5rem;
    }

    .contact-main,
    .map-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .form-card {
        padding: 1.75rem 1.25rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-pin-card {
        display: none;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .cta-band {
        padding: 3.5rem 0;
    }

    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand,
    .footer-heading,
    .footer-links,
    .footer-contact-item {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .navbar .container {
        gap: 0.5rem;
    }

    .quick-strip-inner {
        grid-template-columns: 1fr;
    }
}

.section-body-narrow {
    max-width: 520px;
}

.about-intro {
    padding: 6rem 0;
    background: #fff;
}

.about-img-col {
    position: relative;
}

.about-img-frame {
    position: relative;
   
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 22px 50px rgba(17,18,20,0.08);
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-badge {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: 0 14px 30px rgba(17,18,20,0.12);
}

.badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 26px;
    line-height: 1;
    color: var(--dark);
}

.badge-label {
    margin-top: 0.15rem;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.about-img-accent {
    position: absolute;
    right: -18px;
    top: -18px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(237,27,36,0.08);
    z-index: -1;
}

.about-text-col .section-body {
    max-width: 100%;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.7;
}

.check-list i {
    color: var(--red);
    font-size: 18px;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.stats-band {
    padding: 3rem 0;
    background: linear-gradient(90deg, var(--teal) 0%, var(--mid) 100%);
    color: #fff;
}

.stat-item {
    padding: 0.75rem 0;
    position: relative;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    color: #fff;
}

.stat-num span {
    color: var(--red);
}

.stat-lbl {
    margin-top: 0.4rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

@media (min-width: 768px) {
    .stats-band .col-md-3:not(:last-child) .stat-item::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -1rem;
        transform: translateY(-50%);
        width: 1px;
        height: 64px;
        background: rgba(255,255,255,0.16);
    }
}

.values-section {
    padding: 6rem 0;
    background: var(--surface);
}

.value-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 12px 32px rgba(17,18,20,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(17,18,20,0.1);
}

.value-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
    background: rgba(237,27,36,0.08);
    color: var(--red);
    font-size: 24px;
}

/* Piston Models Table Section */
.piston-models-section {
    padding: 6rem 0;
    background: #fff;
}

.piston-models-section .section-eyebrow {
    color: var(--red);
}

.piston-models-section .section-title span {
    color: var(--red);
}

.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(17, 18, 20, 0.08);
    border: 1px solid var(--border);
}

.piston-models-section .table {
    margin-bottom: 0;
    font-size: 14px;
}

.piston-models-section .table thead {
    background: var(--teal);
    color: #fff;
}

.piston-models-section .table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    vertical-align: middle;
    white-space: nowrap;
}

.piston-models-section .table tbody td {
    padding: 1rem;
    border-color: var(--border);
    vertical-align: middle;
}

.piston-models-section .table tbody tr:hover {
    background-color: rgba(237, 27, 36, 0.04);
}

.piston-models-section .table tbody tr:last-child td {
    border-bottom: none;
}

.piston-models-section .badge {
    font-size: 12px;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .table-responsive {
        font-size: 12px;
    }

    .piston-models-section .table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 11px;
    }

    .piston-models-section .table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .piston-models-section .badge {
        font-size: 11px;
        padding: 0.25rem 0.5rem;
    }
}

.value-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.value-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

.team-section {
    padding: 6rem 0;
    background: #fff;
}

.team-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(17,18,20,0.06);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
   
    background: #d9d9d9;
}

 

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,18,20,0.05) 0%, rgba(17,18,20,0.45) 100%);
}

.team-role-badge {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(17,18,20,0.9);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.team-social {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.94);
    color: var(--dark);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.team-social a:hover {
    transform: translateY(-2px);
    background: var(--red);
    color: #fff;
}

.team-info {
    padding: 1.25rem 1.25rem 1.5rem;
}

.team-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--dark);
}

.team-designation {
    margin-top: 0.2rem;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
}

.team-bio {
    margin-top: 0.75rem;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

.timeline-section {
    padding: 6rem 0;
    background: var(--surface);
}

.timeline {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(25,28,69,0.14);
    transform: translateX(-50%);
}

.tl-item {
    position: relative;
    width: 50%;
    padding: 0 2rem 2rem 0;
}

.tl-item.right {
    margin-left: 50%;
    padding: 0 0 2rem 2rem;
}

.tl-dot {
    position: absolute;
    top: 0.9rem;
    right: -9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px rgba(237,27,36,0.16);
}

.tl-item.right .tl-dot {
    right: auto;
    left: -9px;
}

.tl-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(17,18,20,0.05);
}

.tl-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.tl-event {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.tl-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

@media (max-width: 991.98px) {
    .page-hero {
        min-height: 300px;
        padding: 5rem 0 3.5rem;
    }

    .about-intro,
    .values-section,
    .team-section,
    .timeline-section {
        padding: 4.5rem 0;
    }

    .about-img-frame {
        min-height: 360px;
    }

    .team-img-wrap,
    .team-img-wrap-tall {
        min-height: 260px;
    }

    .timeline::before {
        left: 14px;
        transform: none;
    }

    .tl-item,
    .tl-item.right {
        width: 100%;
        margin-left: 0;
        padding: 0 0 2rem 2.5rem;
    }

    .tl-dot,
    .tl-item.right .tl-dot {
        left: 5px;
        right: auto;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 480px;
        padding: 4rem 0;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .about-section,
    .products-section,
    .about-intro,
    .values-section,
    .team-section,
    .timeline-section {
        padding: 4rem 0;
    }

    .cta-band {
        padding: 3.5rem 0;
    }

    .trust-bar .row > div + div {
        margin-top: 1.5rem;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .page-title {
        font-size: clamp(34px, 10vw, 48px);
    }

    .page-hero-lead,
    .section-body-narrow {
        max-width: 100%;
    }

    .about-img-frame {
        min-height: 300px;
    }

    .about-img-badge {
        left: 0.9rem;
        bottom: 0.9rem;
        padding: 0.75rem 0.9rem;
    }

    .badge-num {
        font-size: 22px;
    }

    .team-info,
    .tl-card,
    .value-card {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .tl-event,
    .team-name,
    .value-title {
        font-size: 20px;
    }
}
.bg-blue{
    background-color: #191c45;
}

/* Piston Kit Specifications Section */
.piston-specs-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(237, 27, 36, 0.03) 0%, rgba(25, 28, 69, 0.02) 100%);
}

.piston-specs-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.specs-list i {
    font-size: 18px;
    flex-shrink: 0;
}

.specs-table-wrapper {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(17, 18, 20, 0.04);
}

.specs-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.specs-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 14px 20px;
    vertical-align: middle;
}

.size-col {
    color: var(--dark);
    font-weight: 600;
    width: 50%;
}

.code-col {
    color: var(--red);
    font-weight: 700;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.specs-table tbody tr:hover {
    background-color: rgba(237, 27, 36, 0.03);
}

@media (max-width: 768px) {
    .piston-specs-section {
        padding: 3rem 0;
    }

    .piston-specs-section .section-title {
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .specs-list li {
        font-size: 14px;
        padding: 8px 0;
        gap: 10px;
    }

    .specs-table td {
        padding: 12px 15px;
        font-size: 13px;
    }

    .size-col {
        width: 60%;
    }

    .code-col {
        font-size: 12px;
    }
}

/* Connecting Rod Kit Specifications Section */
.rod-specs-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(237, 27, 36, 0.03) 0%, rgba(25, 28, 69, 0.02) 100%);
}

.rod-specs-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.specs-notes-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(17, 18, 20, 0.04);
    transition: box-shadow 0.3s ease;
}

.specs-notes-box:hover {
    box-shadow: 0 4px 12px rgba(237, 27, 36, 0.08);
}

.specs-notes-box:last-child {
    margin-bottom: 0;
}

.notes-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notes-text {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

.specs-notes-box a {
    text-decoration: none;
}

.specs-notes-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .rod-specs-section {
        padding: 3rem 0;
    }

    .rod-specs-section .section-title {
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .specs-notes-box {
        padding: 16px;
        margin-bottom: 16px;
    }

    .notes-title {
        font-size: 14px;
    }

    .notes-text {
        font-size: 13px;
    }
}

/* Outboard Connecting Rod Kit Specifications Section */
.outboard-rod-specs-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(237, 27, 36, 0.03) 0%, rgba(25, 28, 69, 0.02) 100%);
}

.outboard-rod-specs-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

@media (max-width: 768px) {
    .outboard-rod-specs-section {
        padding: 3rem 0;
    }

    .outboard-rod-specs-section .section-title {
        font-size: 22px;
        margin-bottom: 1rem;
    }
}

/* Engine Valve Specifications Section */
.valve-specs-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(237, 27, 36, 0.03) 0%, rgba(25, 28, 69, 0.02) 100%);
}

.valve-specs-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.valve-type-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(17, 18, 20, 0.04);
    transition: box-shadow 0.3s ease;
}

.valve-type-box:hover {
    box-shadow: 0 4px 12px rgba(237, 27, 36, 0.08);
}

.valve-type-box:last-child {
    margin-bottom: 0;
}

.valve-type-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    margin: 0 0 12px 0;
}

.valve-type-title .badge {
    font-size: 12px;
    padding: 6px 12px;
}

.valve-type-text {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .valve-specs-section {
        padding: 3rem 0;
    }

    .valve-specs-section .section-title {
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .valve-type-box {
        padding: 16px;
        margin-bottom: 14px;
    }

    .valve-type-text {
        font-size: 13px;
    }
}

/* Outboard Connecting Rod Models Table Section */
.outboard-rod-models-section {
    padding: 6rem 0;
    background: var(--surface);
}

.outboard-rod-models-section .section-eyebrow {
    color: var(--red);
}

.outboard-rod-models-section .section-title span {
    color: var(--red);
}

.outboard-rod-models-section .table {
    margin-bottom: 0;
    font-size: 14px;
}

.outboard-rod-models-section .table thead {
    background: var(--teal);
    color: #fff;
}

.outboard-rod-models-section .table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    vertical-align: middle;
    white-space: nowrap;
}

.outboard-rod-models-section .table tbody td {
    padding: 1rem;
    border-color: var(--border);
    vertical-align: middle;
}

.outboard-rod-models-section .table tbody tr:hover {
    background-color: rgba(237, 27, 36, 0.04);
}

.outboard-rod-models-section .table tbody tr:last-child td {
    border-bottom: none;
}

.outboard-rod-models-section .badge {
    font-size: 12px;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .outboard-rod-models-section .table {
        font-size: 12px;
    }

    .outboard-rod-models-section .table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 11px;
    }

    .outboard-rod-models-section .table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .outboard-rod-models-section .badge {
        font-size: 11px;
        padding: 0.25rem 0.5rem;
    }
}

/* Engine Valve Models Table Section */
.valve-models-section {
    padding: 6rem 0;
    background: var(--surface);
}

.valve-models-section .section-eyebrow {
    color: var(--red);
}

.valve-models-section .section-title span {
    color: var(--red);
}

.valve-models-section .table {
    margin-bottom: 0;
    font-size: 14px;
}

.valve-models-section .table thead {
    background: var(--teal);
    color: #fff;
}

.valve-models-section .table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    vertical-align: middle;
    white-space: nowrap;
}

.valve-models-section .table tbody td {
    padding: 1rem;
    border-color: var(--border);
    vertical-align: middle;
}

.valve-models-section .table tbody tr:hover {
    background-color: rgba(237, 27, 36, 0.04);
}

.valve-models-section .table tbody tr:last-child td {
    border-bottom: none;
}

.valve-models-section .badge {
    font-size: 12px;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .valve-models-section .table {
        font-size: 12px;
    }

    .valve-models-section .table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 11px;
    }

    .valve-models-section .table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .valve-models-section .badge {
        font-size: 11px;
        padding: 0.25rem 0.5rem;
    }
}

/* Connecting Rod Models Table Section */
.rod-models-section {
    padding: 6rem 0;
    background: var(--surface);
}

.rod-models-section .section-eyebrow {
    color: var(--red);
}

.rod-models-section .section-title span {
    color: var(--red);
}

.rod-models-section .table {
    margin-bottom: 0;
    font-size: 14px;
}

.rod-models-section .table thead {
    background: var(--teal);
    color: #fff;
}

.rod-models-section .table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    vertical-align: middle;
    white-space: nowrap;
}

.rod-models-section .table tbody td {
    padding: 1rem;
    border-color: var(--border);
    vertical-align: middle;
}

.rod-models-section .table tbody tr:hover {
    background-color: rgba(237, 27, 36, 0.04);
}

.rod-models-section .table tbody tr:last-child td {
    border-bottom: none;
}

.rod-models-section .badge {
    font-size: 12px;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .rod-models-section .table {
        font-size: 12px;
    }

    .rod-models-section .table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 11px;
    }

    .rod-models-section .table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .rod-models-section .badge {
        font-size: 11px;
        padding: 0.25rem 0.5rem;
    }
}

/* Products Overview Section */
.products-overview-section {
    padding: 6rem 0;
    background: #fff;
}

.product-overview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.product-icon {
    font-size: 48px;
    color: var(--red);
    line-height: 1;
}

.product-overview-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin: 0;
}

.product-overview-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Global Presence Section */
.global-presence-section {
    padding: 6rem 0;
    background: var(--surface);
}

.region-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.region-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--red);
}

.region-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.region-list li {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* Commitment Section */
.commitment-section {
    padding: 6rem 0;
    background: #fff;
}

.commitment-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.highlight-stat {
    background: linear-gradient(135deg, rgba(237,27,36,0.08) 0%, rgba(25,28,69,0.04) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

@media (max-width: 767px) {
    .products-overview-section,
    .global-presence-section,
    .commitment-section {
        padding: 4rem 0;
    }

    .product-overview-card,
    .region-card {
        padding: 1.5rem;
    }

    .product-overview-card h4,
    .region-title {
        font-size: 16px;
    }

    .product-icon {
        font-size: 40px;
    }

    .commitment-highlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 28px;
    }
}
