/* ═══════════════════════════════════════════
   Hanuman Automobiles — Main Stylesheet
   Aesthetic: Industrial Bold / High Contrast
   ═══════════════════════════════════════════ */

:root {
    --black:      #0a0a0a;
    --dark:       #111111;
    --dark2:      #1a1a1a;
    --dark3:      #222222;
    /* --red:        #e63946; */
    --red:        #CD7F32;
    /* --red-dark:   #c1121f; */
    --red-dark:   #E0E0E0;
    --red-glow:   rgba(230, 57, 70, 0.15);
    --yellow:     #ffd60a;
    --white:      #ffffff;
    --gray:       #888888;
    --gray-light: #cccccc;
    --border:     rgba(255,255,255,0.08);
    --font-display: 'Bebas Neue', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-body:  'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 48px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    font-size: 22px;
    color: var(--red);
    animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--white);
}
.logo-accent { color: var(--red); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    margin-left: auto;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-light);
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    margin-left: 16px;
    padding: 10px 24px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: all 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    background: rgba(10,10,10,0.98);
    border-top: 1px solid var(--border);
    gap: 4px;
}
.mobile-menu a {
    padding: 12px 0;
    color: var(--gray-light);
    text-decoration: none;
    font-family: var(--font-condensed);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-cta {
    margin-top: 12px;
    background: var(--red);
    color: white;
    text-align: center;
    padding: 14px;
    border: none;
    border-bottom: none;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}
/* .hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(230,57,70,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 10% 80%, rgba(230,57,70,0.06) 0%, transparent 60%);
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-tyre-bg {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 80px solid rgba(230,57,70,0.06);
    box-shadow:
        inset 0 0 80px rgba(230,57,70,0.05),
        0 0 120px rgba(230,57,70,0.08);
}
.hero-tyre-inner {
    position: absolute;
    inset: 100px;
    border-radius: 50%;
    border: 40px solid rgba(255,255,255,0.03);
} */

.hero-bg {
    position: absolute;
    inset: 0;
    /* Updated to Bronze/Copper (#CD7F32) with subtle transparency */
    background: 
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(205, 127, 50, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 10% 80%, rgba(205, 127, 50, 0.08) 0%, transparent 60%);
    background-color: #1A1A1B; /* Deep Charcoal Background */
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    /* Subtle Gold/Silver highlights for the grid */
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-tyre-bg {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    /* Border changed to Bronze (#CD7F32) */
    border: 80px solid rgba(205, 127, 50, 0.07);
    box-shadow: 
        inset 0 0 80px rgba(205, 127, 50, 0.05),
        0 0 120px rgba(205, 127, 50, 0.1);
}

.hero-tyre-inner {
    position: absolute;
    inset: 100px;
    border-radius: 50%;
    /* Inner ring set to a very faint Metallic Gold */
    border: 40px solid rgba(255, 215, 0, 0.04);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}
.hero-left { }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: var(--font-condensed);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 2px;
    background: var(--red);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.hero-title .line2 { color: var(--red); }
.hero-title .line3 {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    color: transparent;
}
.hero-desc {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 440px;
}
.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    padding: 16px 36px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
    padding: 15px 32px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.stat-item { }
.stat-num {
    font-family: var(--font-display);
    font-size: 44px;
    color: var(--white);
    line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    font-family: var(--font-condensed);
}
/* Hero search box */
.hero-search-box {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px;
    position: relative;
}
.hero-search-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--red);
}
.search-box-title {
    font-family: var(--font-condensed);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-box-title i { color: var(--red); }
.search-box-sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}
.search-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.search-input {
    width: 100%;
    padding: 13px 16px;
    background: var(--dark3);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 2px;
}
.search-input:focus { border-color: var(--red); }
.search-input::placeholder { color: var(--gray); }
.search-btn {
    width: 100%;
    padding: 14px;
    background: var(--red);
    color: var(--white);
    border: none;
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.search-btn:hover { background: var(--red-dark); }
.search-results-inline {
    margin-top: 16px;
    display: none;
}

/* ══════════════════════════════════════════
   BRANDS TICKER
══════════════════════════════════════════ */
.brands-ticker {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--gray);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 60px;
    transition: color 0.2s;
}
.ticker-item:hover { color: var(--white); }
.ticker-dot {
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
.section { padding: 100px 24px; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.section-eyebrow::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--red);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 500px;
}

/* ══════════════════════════════════════════
   PRODUCT CATEGORIES
══════════════════════════════════════════ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
}
.cat-card {
    position: relative;
    background: var(--dark2);
    padding: 40px 32px;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
    color: var(--white);
    display: block;
}
.cat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: var(--red);
    transition: height 0.4s;
    z-index: 0;
}
.cat-card:hover { border-color: var(--red); transform: translateY(-4px); }
.cat-card:hover::before { height: 4px; }
.cat-card:hover .cat-icon { color: var(--red); transform: scale(1.1); }
.cat-content { position: relative; z-index: 1; }
.cat-icon {
    font-size: 36px;
    color: var(--gray);
    margin-bottom: 20px;
    transition: all 0.3s;
    display: block;
}
.cat-name {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.cat-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}
.cat-count {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
}
.cat-arrow {
    position: absolute;
    top: 32px; right: 32px;
    font-size: 18px;
    color: var(--border);
    transition: all 0.3s;
}
.cat-card:hover .cat-arrow { color: var(--red); transform: translate(4px, -4px); }

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-section { background: var(--dark2); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-left { }
.why-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}
.why-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover .why-icon { background: var(--red); color: white; }
.why-icon {
    width: 48px; height: 48px;
    background: var(--dark3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--red);
    flex-shrink: 0;
    transition: all 0.3s;
}
.why-text h4 {
    font-family: var(--font-condensed);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.why-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }
/* Big number visual */
.why-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.metric-box {
    background: var(--dark3);
    border: 1px solid var(--border);
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.metric-box.accent { background: var(--red); border-color: var(--red); }
.metric-box.accent .metric-num { color: white; }
.metric-box.accent .metric-label { color: rgba(255,255,255,0.7); }
.metric-num {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--white);
    line-height: 1;
}
.metric-num span { color: var(--red); }
.metric-box.accent .metric-num span { color: var(--yellow); }
.metric-label {
    font-family: var(--font-condensed);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 8px;
}
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

/* ══════════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════════ */
.products-hero {
    padding: 140px 24px 60px;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
}
.products-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding: 60px 24px;
}
.filter-sidebar { }
.filter-sticky { position: sticky; top: 90px; }
.filter-title {
    font-family: var(--font-condensed);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 28px; }
.filter-group-title {
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--gray-light);
}
.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
}
.filter-item:hover, .filter-item.active { color: var(--white); }
.filter-item.active { color: var(--red); }
.filter-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: 1px solid var(--gray);
    flex-shrink: 0;
    transition: all 0.2s;
}
.filter-item.active .filter-dot, .filter-item:hover .filter-dot {
    background: var(--red);
    border-color: var(--red);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2px;
}
.product-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}
.product-card:hover { border-color: var(--red); transform: translateY(-4px); }
.product-img {
    height: 180px;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--gray);
    position: relative;
    overflow: hidden;
}
.product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark2) 0%, transparent 50%);
}
.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--red);
    color: white;
    font-family: var(--font-condensed);
    font-size: 11px;
    letter-spacing: 1px;
    padding: 4px 10px;
    text-transform: uppercase;
    z-index: 2;
}
.product-body { padding: 20px; }
.product-brand {
    font-family: var(--font-condensed);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.product-name {
    font-family: var(--font-condensed);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.product-size {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.product-price {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
}
.product-price span { font-size: 14px; color: var(--gray); }
.product-inquiry {
    padding: 8px 14px;
    background: var(--dark3);
    border: 1px solid var(--border);
    color: var(--gray-light);
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.product-inquiry:hover { background: var(--red); border-color: var(--red); color: white; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding: 140px 24px 60px;
    position: relative;
    overflow: hidden;
    background: var(--dark2);
}
.about-content { max-width: 1300px; margin: 0 auto; width: 100%; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}
.about-body p strong { color: var(--white); font-weight: 600; }
.timeline {
    position: relative;
    padding-left: 24px;
    margin-top: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), transparent);
}
.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 20px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px; top: 6px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--red);
    border: 2px solid var(--black);
}
.timeline-year {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--red);
}
.timeline-text {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
    line-height: 1.6;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
}
.team-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
}
.team-card:hover { border-color: var(--red); }
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--dark3);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--red);
    border: 2px solid var(--border);
}
.team-name {
    font-family: var(--font-condensed);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}
.team-role {
    font-size: 12px;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-condensed);
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    margin-top: 60px;
}
.contact-info { }
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
    width: 48px; height: 48px;
    background: var(--red-glow);
    border: 1px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}
.contact-detail h4 {
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.contact-detail p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.contact-form-wrap {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
}
.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 3px;
    background: var(--red);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--dark3);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: white;
    border: none;
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.form-submit:hover { background: var(--red-dark); }
.success-msg {
    display: none;
    background: rgba(0,200,100,0.1);
    border: 1px solid rgba(0,200,100,0.3);
    color: #00c864;
    padding: 14px 16px;
    font-family: var(--font-condensed);
    letter-spacing: 1px;
    margin-top: 12px;
}

/* ══════════════════════════════════════════
   AI FLOATING WIDGET
══════════════════════════════════════════ */
.ai-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
}
.ai-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--red);
    color: white;
    cursor: pointer;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    box-shadow: 0 8px 32px rgba(230,57,70,0.4);
    transition: all 0.3s;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}
.ai-bubble:hover { background: var(--red-dark); transform: translateY(-2px); }
.ai-pulse {
    position: absolute;
    top: -4px; right: -4px;
    width: 12px; height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}
.ai-panel {
    position: absolute;
    bottom: 64px; right: 0;
    width: 340px;
    background: var(--dark2);
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    display: none;
    flex-direction: column;
}
.ai-panel.open { display: flex; animation: slideUp 0.3s ease; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ai-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--dark3);
}
.ai-header-left { display: flex; align-items: center; gap: 12px; }
.ai-status-dot {
    width: 8px; height: 8px;
    background: #00c864;
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink { 50% { opacity: 0.4; } }
.ai-title { font-family: var(--font-condensed); font-size: 15px; font-weight: 600; letter-spacing: 0.5px; }
.ai-subtitle { font-size: 11px; color: var(--gray); }
.ai-close { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 16px; transition: color 0.2s; }
.ai-close:hover { color: var(--white); }
.ai-panel-body { padding: 20px; }
.ai-input-group { margin-bottom: 12px; }
.ai-input-group label {
    display: block;
    font-family: var(--font-condensed);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 6px;
}
.ai-input-group input {
    width: 100%;
    padding: 11px 14px;
    background: var(--dark3);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.ai-input-group input:focus { border-color: var(--red); }
.ai-search-btn {
    width: 100%;
    padding: 12px;
    background: var(--red);
    color: white;
    border: none;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}
.ai-search-btn:hover { background: var(--red-dark); }
.ai-results { margin-top: 16px; }
.ai-result-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    padding: 14px;
    margin-bottom: 8px;
}
.ai-result-title {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.ai-size-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ai-size-tag {
    padding: 4px 10px;
    background: var(--dark2);
    border: 1px solid var(--border);
    font-family: var(--font-condensed);
    font-size: 12px;
    color: var(--gray-light);
    letter-spacing: 0.5px;
}
.ai-note {
    font-size: 11px;
    color: var(--gray);
    margin-top: 10px;
    line-height: 1.5;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.ai-error {
    background: rgba(230,57,70,0.1);
    border: 1px solid rgba(230,57,70,0.3);
    color: #ff6b6b;
    padding: 12px;
    font-size: 13px;
    line-height: 1.5;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 80px 24px 0;
}
.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.footer-logo span { color: var(--red); }
.footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
    width: 38px; height: 38px;
    background: var(--dark3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-col h4 {
    font-family: var(--font-condensed);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 13px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 14px;
}
.footer-contact li i { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--gray);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
}
.testi-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}
.testi-card:hover { border-color: var(--red); }
.testi-quote {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--red);
    line-height: 0.6;
    margin-bottom: 20px;
    opacity: 0.5;
}
.testi-text { font-size: 14px; color: var(--gray); line-height: 1.7; font-style: italic; }
.testi-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--red);
    border: 1px solid var(--border);
}
.testi-name { font-family: var(--font-condensed); font-size: 15px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--gray); }
.stars { color: var(--yellow); font-size: 12px; margin-bottom: 12px; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
    background: var(--red);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: 'Hanuman Automobiles';
    position: absolute;
    font-family: var(--font-display);
    font-size: 100px;
    color: rgba(255,255,255,0.05);
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    pointer-events: none;
}
.cta-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    letter-spacing: 2px;
    line-height: 1;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 8px; }
.btn-white {
    padding: 16px 40px;
    background: white;
    color: var(--red);
    text-decoration: none;
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
}
.btn-white:hover { background: var(--yellow); }

/* ══════════════════════════════════════════
   PAGE HERO SHARED
══════════════════════════════════════════ */
.page-hero {
    padding: 140px 24px 70px;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40%;
    background: radial-gradient(ellipse at right, var(--red-glow), transparent 70%);
    pointer-events: none;
}
.page-hero-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-condensed);
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 10px; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 48px; padding-top: 100px; }
    .hero-tyre-bg { display: none; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .products-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.open { display: flex; }
    .categories-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .metric-row { grid-template-columns: 1fr; }
    .ai-panel { width: 300px; right: -8px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
