/* ==========================================================
   D.S. Auto Impex — Custom CSS (Bootstrap 5 + Brand Styles)
   Use alongside Bootstrap 5 CDN
   ========================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
    --brand-red:       #e61a1a;
    --brand-red-hover: #b81212;
    --brand-yellow:    #ffea00;
    --brand-dark:      #1a1a1a;
    --brand-light:     #f8f9fa;
    --card-shadow:     0 10px 30px -10px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 20px 40px -15px rgba(230,26,26,0.15);
}

/* ── Base ───────────────────────────────────────────────── */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-light);
    color: #333;
    padding-top: 120px;
}

@media (max-width: 767.98px) {
    body {
        padding-top: 78px;
    }
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
}

a { text-decoration: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-red); }

/* Text selection */
::selection { background-color: var(--brand-red); color: #fff; }

/* ── Gradients ──────────────────────────────────────────── */
.dsai-gradient-red-dark {
    background: linear-gradient(135deg, #2a0808 0%, var(--brand-dark) 100%);
}
.dsai-gradient-red-bright {
    background: linear-gradient(135deg, var(--brand-red) 0%, #ff4d4d 100%);
}

/* ── Glassmorphism ──────────────────────────────────────── */
.glass-nav {
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.animate-fan-spin {
    animation: spin-slow 20s linear infinite;
}
.animate-fan-spin:hover {
    animation-duration: 4s;
}

/* ── Brand Colours as Bootstrap overrides ───────────────── */
.text-brand-red    { color: var(--brand-red) !important; }
.text-brand-yellow { color: var(--brand-yellow) !important; }
.text-brand-dark   { color: var(--brand-dark) !important; }
.bg-brand-red      { background-color: var(--brand-red) !important; }
.bg-brand-dark     { background-color: var(--brand-dark) !important; }
.bg-brand-light    { background-color: var(--brand-light) !important; }
.border-brand-red  { border-color: var(--brand-red) !important; }

/* ── Primary Red Button ─────────────────────────────────── */
.btn-primary-red {
    background-color: var(--brand-red);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: box-shadow 0.3s ease;
}
.btn-primary-red::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--brand-red-hover);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.btn-primary-red:hover::after  { transform: scaleX(1); transform-origin: left; }
.btn-primary-red:hover         { color: #fff; box-shadow: 0 10px 20px -5px rgba(230,26,26,0.4); }

/* ── Top Info Bar ───────────────────────────────────────── */
.topbar {
    font-size: 0.75rem;
    padding: 7px 0;
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.25s ease;
}
.topbar.topbar-hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}
.topbar a { color: #fff; transition: color 0.2s; }
.topbar a:hover { color: var(--brand-yellow); }
.topbar .text-yellow { color: #facc15; }

@media (max-width: 767.98px) {
    .topbar {
        display: none !important;
    }
}

/* ── Navbar ──────────────────────────────────────────────── */
header#navbar-container {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100%;
    z-index: 1050;
}
.main-nav {
    position: relative;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}
.navbar-brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-red);
    line-height: 1.1;
    letter-spacing: normal;
}
.navbar-brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: -2px;
}
.navbar-logo {
    width: 70px; 
	height: 70px;
    border-radius: 50%;
    border: 2px solid var(--brand-red);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.nav-link-custom {
    position: relative;
    color: #374151 !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding-bottom: 4px;
    transition: color 0.2s;
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.nav-link-custom:hover,
.nav-link-custom.active { color: var(--brand-red) !important; font-weight: 600; }
.nav-link-custom:hover::after,
.nav-link-custom.active::after { transform: scaleX(1); transform-origin: left; }
.nav-products-dropdown .dropdown-toggle::after {
    display: none;
}
.nav-dropdown-icon {
    font-size: 0.58rem;
    margin-left: 6px;
    transition: transform 0.2s ease;
}
.nav-products-dropdown:hover .nav-dropdown-icon,
.nav-products-dropdown:focus-within .nav-dropdown-icon,
.nav-products-dropdown .nav-link.show .nav-dropdown-icon {
    transform: rotate(180deg);
}
.nav-products-menu {
    min-width: 250px;
    padding: 10px;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}
.nav-products-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    color: #374151;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 9px 10px;
}
.nav-products-menu .dropdown-item i {
    width: 16px;
    color: var(--brand-red);
    text-align: center;
}
.nav-products-menu .dropdown-item:hover,
.nav-products-menu .dropdown-item:focus,
.nav-products-menu .dropdown-item.active,
.nav-products-menu .dropdown-item:active {
    background: #fef2f2;
    color: var(--brand-red);
}

@media (min-width: 768px) {
    .nav-products-dropdown:hover > .dropdown-menu,
    .nav-products-dropdown:focus-within > .dropdown-menu {
        display: block;
    }

  
}

@media (max-width: 767.98px) {
    .nav-products-menu {
        border-radius: 12px;
        box-shadow: none;
        margin-top: 8px;
        max-height: 60vh;
        overflow-y: auto;
    }
      .navbar-brand-name{
        font-size: 20px;
    }
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
    position: relative;
        background: linear-gradient(135deg, #0a192f 0%, #0f2b5c 50%, #030712 100%);
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}
/* @media (min-width: 992px) { .hero-section { padding: 120px 0; } } */

@keyframes slideEffect {
    0% { transform: scale(1.15) translateX(-4%); }
    50% { transform: scale(1.15) translateX(4%); }
    100% { transform: scale(1.15) translateX(-4%); }
}

.hero-bg-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: slideEffect 20s ease-in-out infinite;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 30, 61, 0.856) 0%, rgba(30, 58, 138, 0.75) 100%);
    z-index: 2;
}

.hero-bg-box-wrapper {
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 6%;
    width: 52%;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.35);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@media (max-width: 991.98px) {
    .hero-bg-box-wrapper {
        display: none !important;
    }
}

.hero-bg-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 380px;
    color: #fff;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(30, 58, 138, 0.4);
    color: var(--brand-yellow);
    border: 1px solid rgba(59, 130, 246, 0.4);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
}
.hero-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Category Icons Row */
.hero-cat-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0a192f;
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.hero-cat-circle i{
    font-size: 30px;
}
.hero-cat-circle:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--brand-yellow);
    box-shadow: 0 6px 15px rgba(255, 234, 0, 0.25);
}
.hero-cat-text {
    font-size: 0.60rem;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-top: 8px;
    text-align: center;
}

.hero-cat-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.hero-cat-list::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
@media (min-width: 992px) {
    .hero-cat-list {
        overflow-x: visible;
        gap: 14px;
    }
}

.hero-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 62px;
    flex-shrink: 0;
}

.hero-circle {
    width: 340px; height: 340px;
    background: rgba(30, 58, 138, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
@media (min-width: 768px) { .hero-circle { width: 380px; height: 380px; } }
.hero-circle-orbit {
    position: absolute; inset: 0;
    border: 2px dashed rgba(59, 130, 246, 0.35);
    border-radius: 50%;
}
.hero-logo-img {
    width: 250px; height: 250px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid #3b82f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
@media (min-width: 768px) { .hero-logo-img { width: 280px; height: 280px; } }

.hero-brand-logo {
    width: 120px; height: 120px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.hero-brand-logo:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.hero-logo-wrapper {
    display: inline-block;
    width: 140px;
    height: 140px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
}
.hero-logo-wrapper:hover {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 12px 28px rgba(212, 175, 55, 0.35));
}
.hero-brand-svg {
    width: 100%;
    height: 100%;
    display: block;
}
.logo-fan-blades {
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-logo-wrapper:hover .logo-fan-blades {
    animation: logo-fan-spin 1.5s linear infinite;
}
@keyframes logo-fan-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hero-brand-svg text {
    transition: filter 0.4s ease;
}
.hero-logo-wrapper:hover .hero-brand-svg text {
    filter: drop-shadow(0 0 6px rgba(243, 229, 171, 0.6)) drop-shadow(2px 4px 4px rgba(0,0,0,0.5));
}


/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-top: 6px;
}
.stat-divider { border-right: 1px solid #f3f4f6; }
@media (max-width: 575px) { .stat-divider { border-right: none; } }

/* ── Section Headings ────────────────────────────────────── */
.section-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
}
.section-divider {
    width: 60px; height: 4px;
    background: var(--brand-red);
    border-radius: 2px;
    margin: 0 auto;
}
.section-divider-left {
    width: 60px; height: 4px;
    background: var(--brand-red);
    border-radius: 2px;
}

/* ── Product Cards ────────────────────────────────────────── */
.product-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: var(--card-shadow);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(230,26,26,0.2);
}
.product-card-image-wrap {
    background: #f9fafb;
    border-radius: 14px;
    overflow: hidden;
    display: flex; justify-content: center; align-items: center;
    /* height: 180px; */
    position: relative;
    margin-bottom: 18px;
}
.product-card-image-wrap img {
    width: 100%; 
    height: 200px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover .product-card-image-wrap img {
    transform: scale(1.08) rotate(5deg);
}
.product-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--brand-red);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
}
.product-code {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
}
.product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    transition: color 0.2s;
}
.product-card:hover .product-name { color: var(--brand-red); }
.product-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  
}
.product-cat-tag {
    font-size: 0.58rem;
    font-weight: 600;
    color: #9ca3af;
    background: #f9fafb;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #f3f4f6;
    text-transform: uppercase;
}
.product-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-red);
    transition: color 0.2s;
    display: flex; align-items: center; gap: 4px;
}
.product-link:hover { color: #991b1b; }
.product-link i { font-size: 0.55rem; transition: transform 0.2s; }
.product-link:hover i { transform: translateX(2px); }

/* ── About Visual Card ───────────────────────────────────── */
.about-visual-card {
    background: var(--brand-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #374151;
}
.about-visual-header {
    background: #111827;
    border-bottom: 1px solid #374151;
    padding: 8px 16px;
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex; justify-content: space-between; align-items: center;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }

/* ── Feature Cards ───────────────────────────────────────── */
.feature-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
    height: 100%;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.feature-icon {
    width: 48px; height: 48px;
    background: #fef2f2;
    color: var(--brand-red);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.accordion-item-custom {
    background: #f9fafb;
    border-radius: 16px !important;
    border: 1px solid #f3f4f6;
    margin-bottom: 0;
    overflow: hidden;
}
.accordion-btn-custom {
    background: #f9fafb !important;
    color: #1f2937 !important;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 20px;
    border-radius: 16px !important;
    box-shadow: none !important;
}
.accordion-btn-custom:not(.collapsed) {
    background: #f9fafb !important;
    color: #1f2937 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.accordion-btn-custom::after {
    filter: invert(24%) sepia(96%) saturate(1700%) hue-rotate(341deg);
}
.accordion-body-custom {
    padding: 0 20px 20px;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.8;
    border-top: 1px solid #f3f4f6;
}

/* ── Form Inputs ──────────────────────────────────────────── */
.form-control-custom {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}
.form-control-custom:focus {
    border-color: var(--brand-red) !important;
    box-shadow: 0 0 0 3px rgba(230,26,26,0.15) !important;
    outline: none;
}
.form-label-custom {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4b5563;
    margin-bottom: 6px;
    display: block;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb-bar {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
    font-size: 0.75rem;
}
.breadcrumb-custom { margin: 0; }
.breadcrumb-custom .breadcrumb-item a { color: #6b7280; transition: color 0.2s; }
.breadcrumb-custom .breadcrumb-item a:hover { color: var(--brand-red); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--brand-red); font-weight: 600; }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: #9ca3af; }

/* ── Filter Sidebar ─────────────────────────────────────── */
.filter-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 24px;
}
.filter-btn-custom {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.filter-btn-custom:hover { background: #f9fafb; }
.filter-btn-custom.active { background: #fef2f2; color: var(--brand-red); }

/* Pagination */
.page-btn-custom {
    width: 34px; height: 34px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.page-btn-custom.active { background: var(--brand-red); color: #fff; border-color: var(--brand-red); box-shadow: 0 2px 8px rgba(230,26,26,0.3); }
.page-btn-custom:hover:not(.active) { background: #f9fafb; }
.page-arrow-custom {
    padding: 0 12px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.page-arrow-custom:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: #111827;
    color: #d1d5db;
    padding-top: 64px;
    border-top: 4px solid var(--brand-red);
}
.footer-logo-img {
    width: 80px; 
	height: 80px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-red);
    background: #fff;
}
.footer-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    padding-left: 12px;
    border-left: 3px solid var(--brand-red);
    margin-bottom: 20px;
}
.footer-link { color: #d1d5db; font-size: 0.875rem; transition: color 0.2s; display: block; margin-bottom: 12px; }
.footer-link:hover { color: #f87171; }
.footer-link i { color: var(--brand-red); font-size: 0.65rem; margin-right: 8px; }
.footer-range-item { color: #9ca3af; font-size: 0.875rem; margin-bottom: 12px; }
.footer-range-item i { color: var(--brand-red); font-size: 0.65rem; margin-right: 8px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item.center { align-items: center; }
.footer-contact-item i { color: #f87171; font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item.center i { margin-top: 0; }
.footer-contact-item span, .footer-contact-item a { color: #9ca3af; font-size: 0.875rem; }
.footer-contact-item a:hover { color: #f87171; }
.footer-tag-yellow { background: #1f2937; color: #facc15; border: 1px solid #374151; padding: 3px 10px; border-radius: 4px; font-size: 0.68rem; font-weight: 700; }
.footer-tag-red { background: #1f2937; color: #f87171; border: 1px solid #374151; padding: 3px 10px; border-radius: 4px; font-size: 0.68rem; font-weight: 700; }
.footer-bar {
    border-top: 1px solid #1f2937;
    margin-top: 48px;
    padding: 20px 0;
    font-size: 0.75rem;
    color: #6b7280;
}
.footer-bar a { color: #6b7280; transition: color 0.2s; }
.footer-bar a:hover { color: #d1d5db; }

/* Footer Social Icons */
.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f2937;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #374151;
}
.footer-social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.footer-social-icon.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}
.footer-social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}
.footer-social-icon.twitter:hover {
    background-color: #000000;
    border-color: #000000;
}
.footer-social-icon.linkedin:hover {
    background-color: #0a66c2;
    border-color: #0a66c2;
}

/* ── About Page ──────────────────────────────────────────── */
.about-img-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    position: relative;
}
.about-img-card img { width: 100%; border-radius: 14px; }
.about-img-overlay {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #374151;
}
.about-quote {
    background: #fef2f2;
    border-left: 4px solid var(--brand-red);
    padding: 16px;
    border-radius: 0 12px 12px 0;
}
.quality-num {
    width: 28px; height: 28px;
    background: #fee2e2;
    color: var(--brand-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.quality-badge-card {
    background: linear-gradient(135deg, #2a0808 0%, var(--brand-dark) 100%);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #1c0202;
}
.vehicle-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 20px 16px;
    text-align: center;
}
.cta-banner {
    background: linear-gradient(135deg, #2a0808 0%, var(--brand-dark) 100%);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
}
.cta-banner-bg {
    position: absolute; inset: 0;
    opacity: 0.05;
    display: flex; align-items: center; justify-content: center;
    font-size: 250px;
    pointer-events: none;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 24px;
    height: 100%;
}
.contact-icon-box {
    width: 42px; height: 42px;
    background: #fef2f2;
    color: var(--brand-red);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.address-box {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 24px;
}
.map-box {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 8px;
    height: 300px;
    overflow: hidden;
}
.map-box iframe { width: 100%; height: 100%; border: 0; border-radius: 14px; }

/* ── Product Detail ──────────────────────────────────────── */
.detail-img-box {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: 32px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.detail-img-box img { width: 260px; height: 260px; object-fit: contain; }
.spec-table { border-radius: 14px; overflow: hidden; border: 1px solid #f3f4f6; }
.spec-label {
    background: #f3f4f6;
    border-right: 1px solid #e5e7eb;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    padding: 12px 16px;
    width: 140px;
}
.spec-value { padding: 12px 16px; font-size: 0.875rem; color: #374151; font-weight: 500; }

/* ── Toast ───────────────────────────────────────────────── */
.toast-container-custom {
    position: fixed;
    bottom: 20px; right: 20px;
    z-index: 1100;
    display: flex; flex-direction: column; gap: 10px;
    max-width: 380px;
}
.toast-custom {
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex; align-items: center; gap: 12px;
    transform: translateY(30px); opacity: 0;
    transition: all 0.4s ease;
}
.toast-custom.show { transform: translateY(0); opacity: 1; }
.toast-custom.hide { transform: translateY(-10px); opacity: 0; }
.toast-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }

/* ── Skeleton loading ────────────────────────────────────── */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.skeleton { background: #f3f4f6; border-radius: 20px; animation: pulse 2s ease infinite; }

/* ── Misc ────────────────────────────────────────────────── */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.no-products-box {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 20px; padding: 40px;
    text-align: center;
}

/* ── Custom Utilities to Replace Inline CSS ── */
.z-10 { z-index: 10; }
.hero-subtitle { font-size: 1rem; color: #fff !important;  margin: 0 auto; line-height: 1.8; }
.btn-text-sm { font-size: 0.82rem; letter-spacing: 0.05em; }
.btn-text-xs { font-size: 0.78rem; letter-spacing: 0.05em; }
.section-heading { font-size: clamp(1.75rem, 3vw, 2.25rem); letter-spacing: -0.02em; color: var(--brand-dark); }
.section-heading-lg { font-size: clamp(2rem, 4vw, 3rem); color: var(--brand-dark); letter-spacing: -0.03em; line-height: 1.1; }
.section-desc { max-width: 480px; font-size: 0.9375rem; line-height: 1.8; }
.skeleton-card { height: 320px; }
.link-md { font-size: 0.9rem; transition: color 0.2s; }
.about-visual-bg { background: #fee2e2; transform: rotate(3deg) scale(0.95); pointer-events: none; }
.icon-3xl { font-size: 3rem; }
.visual-desc { font-size: 0.78rem; max-width: 280px; line-height: 1.7; }
.text-body-md { font-size: 0.9rem; line-height: 1.8; }
.text-body-sm { font-size: 0.875rem; line-height: 1.7; }
.text-body-xs { font-size: 0.75rem; line-height: 1.6; }
.text-xxs { font-size: 0.65rem; letter-spacing: 0.1em; }
.font-w-500 { font-weight: 500; }
.font-w-800 { font-weight: 800; }
.bg-gray-light-border { background: #f9fafb; border-top: 1px solid #f3f4f6; }
.divider-sm { width: 32px; height: 2px; }
.catalog-search-wrap { width: 100%; max-width: 320px; }
.catalog-search-icon { left: 14px; top: 50%; transform: translateY(-50%); font-size: 0.875rem; pointer-events: none; }
.text-muted-xs { font-size: 0.78rem; }
.btn-clear-filters { font-size: 0.75rem; }
.contact-info-title { font-size: 0.9rem; }
.contact-info-desc { font-size: 0.75rem; }
.contact-info-val { font-size: 0.8rem; }
.form-title { font-size: 1.5rem; color: var(--brand-dark); }
.address-title { font-size: 1.1rem; color: #1f2937; }
.product-img-detail { width: 260px; height: 260px; object-fit: contain; }
.product-img-card { width: 136px; height: 136px; }
.product-card-img-wrap { height: 176px; }
.product-name-sm { font-size: 0.875rem; }
.detail-card-wrap { background: #fff; border-radius: 20px; border: 1px solid #f3f4f6; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.detail-img-bg { background: #f9fafb; border-radius: 16px; border: 1px solid #f3f4f6; }
.tag-size { font-size: 0.65rem; padding: 4px 12px; }
.related-img-wrap { height: 140px; }
.related-img { width: 110px; height: 110px; }
.btn-hover-scale { transition: transform 0.3s ease; }
.btn-hover-scale:hover { transform: scale(1.03); }
.container-max-1200 { max-width: 1200px; }
.container-max-500 { max-width: 500px; }
.h-120 { height: 120px; }
.related-heading { border-left: 4px solid var(--brand-red); font-size: 1.25rem; }
.hover-text-yellow { transition: color 0.3s ease; }
.hover-text-yellow:hover { color: var(--brand-yellow) !important; }
.hover-text-red { transition: color 0.3s ease; }
.hover-text-red:hover { color: var(--brand-red) !important; }

/* ── Floating Widgets ────────────────────────────────────── */
.floating-widget-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.btn-floating {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.btn-floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.btn-whatsapp {
    background-color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #20BA56;
}
.btn-scroll-top {
    background-color: var(--brand-dark);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.btn-scroll-top.show-scroll {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ── Filter Buttons ──────────────────────────────────────── */
.filter-btn-custom {
    text-align: left;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563; /* text-gray-600 */
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
}
.filter-btn-custom:hover {
    background-color: #f9fafb; /* bg-gray-50 */
}
.filter-btn-custom.active {
    background-color: #fef2f2; /* bg-red-50 */
    color: #dc2626; /* text-red-600 */
}
.filter-btn-clear {
    font-size: 0.75rem;
    cursor: pointer;
}
.filter-btn-clear:hover {
    color: #b91c1c !important; /* text-red-800 */
}


 /* ── Featured Video Section ── */
.featured-video-section {
    background: linear-gradient(135deg, #0d1e3d 0%, #030712 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.featured-video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 26, 26, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.text-secondary-light {
    color: #a3b3c9 !important;
}

.video-container-wrapper {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 28px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6), 0 0 40px -10px rgba(230, 26, 26, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.video-container-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 70px -10px rgba(0, 0, 0, 0.7), 0 0 50px -5px rgba(230, 26, 26, 0.35);
}

.video-iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}