/* =============================================
   AUTO PART WORLD — Custom Stylesheet
   Font: Inter + Rajdhani
   Colors: #111827 (dark), #F59E0B (yellow/warning), #1E293B (card bg)
============================================= */

:root {
  --primary: #111827;
  --secondary: #1E293B;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --text: #374151;
  --text-light: #6B7280;
  --white: #ffffff;
  --light-bg: #F8FAFC;
  --border: #E5E7EB;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* =============================================
   PRELOADER
============================================= */
@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes preloaderBarFill {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}
@keyframes preloaderFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderLogoIn {
  0%   { opacity: 0; transform: scale(0.6) rotate(-15deg); }
  60%  { transform: scale(1.08) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes preloaderOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
  animation: preloaderOut 0.6s ease forwards;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.preloader-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: preloaderLogoIn 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
  opacity: 0;
  filter: drop-shadow(0 0 24px rgba(245,158,11,0.5));
}

.preloader-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  animation: preloaderFadeUp 0.7s ease 0.4s forwards;
  opacity: 0;
}

.preloader-title .hl { color: #F59E0B; }

.preloader-tagline {
  font-size: 0.78rem;
  color: #64748B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: preloaderFadeUp 0.7s ease 0.6s forwards;
  opacity: 0;
}

.preloader-bar-wrap {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  animation: preloaderFadeUp 0.7s ease 0.5s forwards;
  opacity: 0;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #F59E0B, #FCD34D, #F59E0B);
  background-size: 200%;
  border-radius: 4px;
  animation: preloaderBarFill 1.8s ease 0.5s forwards, shimmer 1.5s infinite linear;
}

.preloader-gears {
  position: absolute;
  font-size: 6rem;
  color: rgba(245,158,11,0.04);
  animation: preloaderSpin 8s linear infinite;
  top: 10%;
  right: 8%;
}

.preloader-gears-2 {
  position: absolute;
  font-size: 4rem;
  color: rgba(245,158,11,0.04);
  animation: preloaderSpin 6s linear infinite reverse;
  bottom: 12%;
  left: 6%;
}

/* ===== GLOBAL ===== */
*, *::before, *::after { box-sizing: border-box; }

html, body { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* =============================================
   TOP BAR
============================================= */
.topbar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 2px solid var(--accent);
}

.topbar-link {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.topbar-link:hover { color: var(--accent); }

.topbar-divider { color: #374151; }

.topbar-badge {
  background: rgba(245,158,11,0.15);
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  font-size: 0.75rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
============================================= */
.main-navbar {
  background: var(--primary) !important;
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  z-index: 1000;
}

.main-navbar.scrolled {
  padding: 8px 0;
  background: rgba(17,24,39,0.98) !important;
  backdrop-filter: blur(12px);
}

/* LOGO IMAGE */
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.footer-logo .logo-img {
  height: 66px;
}

/* LOGO (legacy icon+text — kept for reference) */
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
}

/* NAV LINKS */
.main-navbar .nav-link {
  color: #CBD5E1 !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--accent) !important;
  background: rgba(245,158,11,0.1);
}

.main-navbar .dropdown-menu {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow-hover);
  animation: dropDown 0.2s ease;
}

@keyframes dropDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.main-navbar .dropdown-item {
  padding: 10px 16px;
  font-size: 0.88rem;
  transition: var(--transition);
}

.main-navbar .dropdown-item:hover {
  background: rgba(245,158,11,0.1);
  color: var(--accent) !important;
  padding-left: 22px;
}

/* NAV ICON BUTTON */
.btn-nav-icon {
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-nav-icon:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.05);
}

.btn-call-now {
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  padding: 8px 18px;
}

/* =============================================
   SEARCH MODAL
============================================= */
.search-modal-content {
  background: rgba(17,24,39,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
}

.search-modal-group .form-control {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: white;
  font-size: 1rem;
  padding: 14px 20px;
}

.search-modal-group .form-control::placeholder { color: #6B7280; }
.search-modal-group .form-control:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
  color: white;
}

.badge-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.08);
  color: #CBD5E1;
  border-radius: 20px;
  font-size: 0.8rem;
  margin: 3px;
  transition: var(--transition);
}

.badge-tag:hover {
  background: var(--accent);
  color: var(--primary);
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #0F172A 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(59,130,246,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.min-vh-hero { min-height: auto; }

/* HERO BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent), #FDE68A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: #94A3B8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

/* HERO QUOTE CARD */
.hero-quote-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

.quote-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.5px;
}

.quote-field {
  margin-bottom: 10px;
}

.quote-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #E2E8F0;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.quote-input::placeholder { color: #64748B; }

.quote-input:focus {
  background: rgba(245,158,11,0.07);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

.quote-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.quote-select option {
  background: #1E293B;
  color: #E2E8F0;
}

.btn-get-quote {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 6px;
}

.btn-get-quote:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}

/* HERO TRUST BADGES */
.hero-trust-badges { }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CBD5E1;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}

/* HERO STAT CARD */
.hero-stat-card-wrap {
  position: relative;
  width: 300px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-plus {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  color: #94A3B8;
  font-size: 0.8rem;
  margin-top: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.hero-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hero-badge-float-1 { top: -16px; left: -20px; animation: floatBadge 3s ease-in-out infinite; }
.hero-badge-float-2 { bottom: -16px; right: -20px; animation: floatBadge 3s ease-in-out 1.5s infinite; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* SCROLL DOWN */
.scroll-down-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border: 2px solid rgba(245,158,11,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  animation: bounce 2s ease-in-out infinite;
  font-size: 0.85rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* =============================================
   MARQUEE STRIP
============================================= */
.marquee-strip {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-dark));
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* =============================================
   SECTION COMMONS
============================================= */
.section-pad { padding: 90px 0; }

.section-tag {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  color: var(--accent-dark);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* =============================================
   CATEGORY CARDS
============================================= */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow-hover);
  background: linear-gradient(135deg, #FFFBEB, var(--white));
}

.cat-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(245,158,11,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
  transition: var(--transition);
}

.category-card:hover .cat-icon-wrap {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  transform: scale(1.1);
}

.cat-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.88rem;
  margin: 0 0 4px;
}

.cat-count {
  font-size: 0.75rem;
  color: var(--text-light);
}

.cat-card-more .cat-icon-wrap { background: linear-gradient(135deg, #0F172A, #1E293B); color: var(--white); }
.cat-card-more .cat-name { color: var(--primary); }
.cat-card-more:hover .cat-icon-wrap { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary); }

/* =============================================
   PROMO BANNERS
============================================= */
.promo-banner-section {
  background: var(--primary);
  padding: 48px 0;
}

.promo-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}

.promo-card:hover { transform: translateY(-4px); }

.promo-red {
  background: linear-gradient(135deg, #7F1D1D, #B91C1C);
  border: 1px solid rgba(255,255,255,0.1);
}

.promo-dark {
  background: linear-gradient(135deg, #1E293B, #374151);
  border: 2px solid var(--accent);
}

.promo-blue {
  background: linear-gradient(135deg, #1E3A5F, #1D4ED8);
  border: 1px solid rgba(255,255,255,0.1);
}

.promo-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: white;
}

.promo-icon {
  font-size: 2rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.promo-card h5 { font-weight: 700; margin: 0 0 4px; font-size: 1.1rem; }
.promo-card p { margin: 0; font-size: 0.85rem; opacity: 0.8; }

/* =============================================
   SERVICE CARDS
============================================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-featured {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--accent);
}

.service-card-featured .service-title,
.service-card-featured .service-desc { color: var(--white) !important; }
.service-card-featured .service-desc { opacity: 0.7; }
.service-card-featured .service-icon { color: var(--accent); background: rgba(245,158,11,0.12); }
.service-card-featured .service-link { color: var(--accent); }

.featured-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(245,158,11,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-dark);
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-link {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.service-link:hover { gap: 10px; color: var(--accent); }

/* =============================================
   INVENTORY CTA
============================================= */
.inventory-cta-section {
  position: relative;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  padding: 100px 0;
  overflow: hidden;
}

.inventory-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.inventory-cta-overlay { }

.inventory-stat {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

/* =============================================
   WHY CHOOSE US / ABOUT
============================================= */
.about-visual {
  position: relative;
  height: 420px;
}

.about-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
  font-size: 3rem;
}

.about-img-placeholder span {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 500;
}

.about-img-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--card-shadow-hover);
}

.about-img-placeholder-sm {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #374151, #1E293B);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent);
  font-size: 2rem;
}

.about-img-placeholder-sm span {
  font-size: 0.85rem;
  color: #6B7280;
  font-weight: 500;
}

.about-years-badge {
  position: absolute;
  left: 55%;
  top: 40%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(245,158,11,0.5);
  border: 4px solid var(--white);
  z-index: 2;
  text-align: center;
}

.years-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.years-text {
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

/* WHY LIST */
.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(245,158,11,0.05);
  transform: translateX(4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
}

.why-title { font-weight: 700; color: var(--primary); margin-bottom: 4px; font-size: 0.95rem; }
.why-desc { color: var(--text-light); font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* =============================================
   HOW IT WORKS
============================================= */
.how-section {
  background: linear-gradient(135deg, #0F172A, #1E293B);
}

.how-section .section-title { color: var(--white); }

.how-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  color: var(--white);
}

.how-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: rgba(245,158,11,0.05);
}

.how-card-featured {
  border-color: var(--accent) !important;
  background: rgba(245,158,11,0.08) !important;
}

.how-step {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.how-card-featured .how-step { color: rgba(245,158,11,0.1); }

.how-icon {
  width: 68px;
  height: 68px;
  background: rgba(245,158,11,0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--accent);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.how-card:hover .how-icon {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.1);
}

.how-card h5 { font-weight: 700; margin-bottom: 12px; }
.how-card p { color: #94A3B8; font-size: 0.9rem; line-height: 1.6; margin: 0; }

.how-arrow { padding: 0 12px; }

/* =============================================
   BRANDS GRID
============================================= */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.brand-logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.brand-logo-card i { font-size: 1.5rem; color: var(--text-light); transition: var(--transition); }

.brand-logo-card:hover {
  border-color: var(--accent);
  background: #FFFBEB;
  transform: translateY(-3px);
  box-shadow: var(--card-shadow);
}

.brand-logo-card:hover i { color: var(--accent-dark); }

.brand-more {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.brand-more i { color: var(--accent); }
.brand-more:hover { background: var(--secondary); border-color: var(--accent); }
.brand-more:hover i { color: var(--accent); }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section { background: var(--light-bg); }

.stars-display { color: var(--accent); font-size: 1.1rem; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(245,158,11,0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent);
}

.testimonial-featured {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--accent);
}

.testimonial-featured .review-text,
.testimonial-featured .reviewer-info strong { color: var(--white); }
.testimonial-featured .reviewer-info .text-muted { color: #94A3B8 !important; }
.testimonial-featured .verified-badge { background: rgba(245,158,11,0.15); color: var(--accent); }

.review-stars { color: var(--accent); }

.review-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(34,197,94,0.1);
  color: #16A34A;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  color: var(--white);
}

.contact-info-card h5 { color: var(--white); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-label {
  display: block;
  color: #6B7280;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.contact-info-value {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

a.contact-info-value:hover { color: var(--accent); }

.contact-info-note {
  display: block;
  color: #6B7280;
  font-size: 0.78rem;
  margin-top: 2px;
}

.contact-social-links { display: flex; gap: 10px; }

.contact-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-social:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* CONTACT FORM */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--card-shadow);
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.85rem;
  z-index: 2;
  pointer-events: none;
}

.input-icon-wrap select { padding-left: 40px !important; }

.form-control-custom {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 14px 12px 40px !important;
  font-size: 0.9rem !important;
  transition: var(--transition) !important;
  color: var(--primary) !important;
}

textarea.form-control-custom {
  padding-left: 14px !important;
  resize: vertical;
  min-height: 120px;
}

.form-control-custom:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12) !important;
}

.btn-submit-form {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 14px !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--transition) !important;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}

/* MAP */
.map-placeholder {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
}

.map-placeholder-inner { text-align: center; }

/* =============================================
   CTA STRIP
============================================= */
.cta-strip-section {
  background: linear-gradient(90deg, #0F172A, var(--accent-dark), #0F172A);
  padding: 48px 0;
}

/* =============================================
   SEARCH / LEAD CAPTURE PAGE
============================================= */
.sp-hero {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  padding: 70px 0 50px;
  overflow: hidden;
}

.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(245,158,11,0.1) 0%, transparent 60%);
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F59E0B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sp-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sp-hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin: 12px 0 14px;
  line-height: 1.1;
}

.sp-hero-sub {
  color: #94A3B8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* STEPS */
.sp-steps { margin-bottom: 32px; }

.sp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sp-step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.sp-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-step-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(245,158,11,0.3));
  align-self: center;
  min-width: 40px;
  max-width: 80px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* FORM CARD */
.sp-form-section {
  background: var(--light-bg);
  padding: 56px 0 80px;
}

.sp-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}

@media (max-width: 576px) {
  .sp-form-card { padding: 24px 18px; }
}

/* SECTION HEAD */
.sp-section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.sp-section-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.sp-section-title {
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 4px;
  font-size: 1rem;
}

.sp-section-sub {
  color: var(--text-light);
  font-size: 0.83rem;
  margin: 0;
}

/* INPUTS */
.sp-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.sp-label-hint {
  font-weight: 400;
  text-transform: none;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0;
}

.sp-input-wrap {
  position: relative;
}

.sp-input-wrap > i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.85rem;
  pointer-events: none;
}

.sp-input {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.sp-input::placeholder { color: #9CA3AF; }

.sp-input:focus {
  border-color: var(--accent);
  background: #fffbeb;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}

.sp-input.is-invalid { border-color: #EF4444; }

.sp-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #F8FAFC;
  padding-right: 36px;
}

.sp-textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: 90px;
}

.sp-vin { text-transform: uppercase; letter-spacing: 1px; font-family: monospace; font-size: 0.95rem; }

.sp-divider {
  border-color: var(--border);
  margin: 28px 0;
}

/* SUBMIT */
.sp-submit-area { text-align: center; }

.sp-submit-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border: none;
  border-radius: 12px;
  padding: 18px 48px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  animation: pulsRing 2.5s infinite;
}

.sp-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.4);
  animation: none;
}

.sp-submit-btn:disabled { opacity: 0.7; animation: none; }

.sp-submit-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 12px 0 0;
}

/* CALL CTA BAR */
.sp-call-cta {
  background: var(--secondary);
  border-radius: 14px;
  padding: 20px 28px;
  border: 1px solid rgba(245,158,11,0.15);
}

.sp-call-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.sp-call-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  animation: pulsRing 2s infinite;
}

.sp-call-label { color: #94A3B8; font-size: 0.82rem; }
.sp-call-number { color: var(--accent); font-size: 1.3rem; font-weight: 800; letter-spacing: 0.5px; }
.sp-call-hours { color: #64748B; font-size: 0.78rem; margin: 0; display: flex; align-items: center; gap: 4px; }

/* SUCCESS MODAL */
.sp-success-modal {
  background: #0F172A;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 20px;
  overflow: hidden;
}

.sp-success-icon {
  width: 90px;
  height: 90px;
  background: rgba(34,197,94,0.1);
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #22C55E;
  margin: 0 auto;
  animation: pulsGreen 1.8s infinite;
}

.sp-success-title {
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
}

.sp-success-msg {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.sp-success-phone {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 12px 20px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* =============================================
   GET QUOTE MODAL
============================================= */
#quoteModal .modal-backdrop,
#quoteModal + .modal-backdrop { opacity: 0.4 !important; }

#quoteModal { --bs-backdrop-opacity: 0.35; }
.quote-modal-content {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 16px;
  overflow: hidden;
}

.quote-modal-header {
  background: rgba(30, 41, 59, 0.5);
  border-bottom: 1px solid rgba(245,158,11,0.15);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.quote-modal-title {
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 4px;
}

.quote-modal-sub {
  color: #64748B;
  font-size: 0.82rem;
}

.qm-label {
  display: block;
  color: #94A3B8;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qm-input-wrap {
  position: relative;
}

.qm-input-wrap > i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.85rem;
  pointer-events: none;
}

.qm-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 11px 14px 11px 38px;
  font-size: 0.88rem;
  color: #E2E8F0;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.qm-input::placeholder { color: #475569; }

.qm-input:focus {
  border-color: var(--accent);
  background: rgba(245,158,11,0.06);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}

.qm-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.qm-select option { background: #1E293B; color: #E2E8F0; }

.qm-textarea {
  padding: 11px 14px;
  resize: vertical;
  min-height: 80px;
}

.qm-submit-btn {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.qm-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}

/* =============================================
   FOOTER
============================================= */
.main-footer { background: #0F172A; }

.footer-top { padding: 72px 0 48px; }

.footer-logo { text-decoration: none; }

.footer-about {
  color: #6B7280;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social-links { display: flex; gap: 10px; }

.footer-social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social-links a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: #6B7280;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #6B7280;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-list i { margin-top: 2px; flex-shrink: 0; }

.footer-contact-list a {
  color: #6B7280;
  transition: var(--transition);
}

.footer-contact-list a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  color: #6B7280;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: #6B7280;
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--accent); }

/* =============================================
   BACK TO TOP
============================================= */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* =============================================
   WHATSAPP FLOAT
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulseGreen 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20B858;
  color: white;
}

@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* =============================================
   TOAST NOTIFICATION
============================================= */
.toast-success {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #16A34A;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.toast-success.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero-section {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}

.page-hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,158,11,0.08) 0%, transparent 60%);
}

.engine-hero-section::before {
  background: radial-gradient(ellipse at 60% 50%, rgba(245,158,11,0.12) 0%, transparent 60%);
}

.trans-hero-section::before {
  background: radial-gradient(ellipse at 40% 50%, rgba(29,78,216,0.15) 0%, transparent 60%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero-sub {
  color: #94A3B8;
  font-size: 1rem;
  margin-bottom: 0;
}

.breadcrumb-item a { color: #94A3B8; transition: var(--transition); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: #4B5563; }

/* =============================================
   PARTS SEARCH BAR (inner pages)
============================================= */
.parts-search-bar {
  background: var(--secondary);
  border-bottom: 3px solid var(--accent);
  padding: 20px 0;
}

.search-select-dark {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #E2E8F0 !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  font-size: 0.88rem !important;
}

.search-select-dark option { background: #1E293B; color: #E2E8F0; }
.search-select-dark:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15) !important;
}

/* =============================================
   ENGINE STATS STRIP
============================================= */
.engine-stats-strip {
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}

.engine-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.engine-stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.engine-stat-label {
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================
   FILTER SIDEBAR
============================================= */
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.filter-header {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.filter-group {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child { border-bottom: none; }

.filter-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.filter-check label { cursor: pointer; flex: 1; display: flex; justify-content: space-between; }
.filter-check label span { color: var(--text-light); }

.filter-check .form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.filter-check .form-check-input:focus { box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }

.filter-input {
  background: var(--light-bg) !important;
  border: 1px solid var(--border) !important;
  font-size: 0.85rem !important;
  color: var(--primary) !important;
}

.filter-range { accent-color: var(--accent); }

.quick-cat-link {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 20px;
  transition: var(--transition);
}

.quick-cat-link:hover { color: var(--accent); padding-left: 26px; }

/* =============================================
   SORT SELECT + VIEW TOGGLE
============================================= */
.sort-select {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.85rem !important;
  color: var(--text) !important;
}

.view-toggle { }
.view-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 6px;
  color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.75rem;
  transition: var(--transition);
}

.view-btn.active, .view-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}

/* =============================================
   PART CARDS (parts.html)
============================================= */
.part-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.part-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent);
}

.part-card-img {
  position: relative;
  background: #F8FAFC;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.part-img-placeholder {
  font-size: 3.5rem;
  color: #CBD5E1;
}

.part-condition-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(17,24,39,0.85);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.cond-reman { color: #60A5FA !important; }
.cond-used { color: var(--accent) !important; }

.part-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.part-card:hover .part-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.part-action-btn {
  width: 32px; height: 32px;
  background: var(--white);
  border: none;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: var(--transition);
}

.part-action-btn:hover { background: var(--accent); color: var(--primary); }

.part-card-body { padding: 16px; }

.part-category-tag {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.cat-body { background: rgba(239,68,68,0.1); color: #DC2626; }
.cat-elec { background: rgba(59,130,246,0.1); color: #2563EB; }
.cat-susp { background: rgba(139,92,246,0.1); color: #7C3AED; }
.cat-cool { background: rgba(20,184,166,0.1); color: #0D9488; }
.cat-wheel { background: rgba(16,185,129,0.1); color: #059669; }

.part-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.part-compat {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.4;
}

.part-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.part-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.part-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.part-old-price {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.part-buy-btn {
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 6px 14px;
}

/* =============================================
   ENGINE CARDS (engines.html)
============================================= */
.engine-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.engine-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent);
}

.engine-card-featured {
  border-color: var(--accent) !important;
  box-shadow: 0 4px 20px rgba(245,158,11,0.15);
}

.engine-featured-tag {
  background: var(--accent);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  text-align: center;
  letter-spacing: 0.5px;
}

.engine-card-header {
  position: relative;
  background: #F8FAFC;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.engine-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent);
}

.engine-badges {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.engine-badge-cond {
  background: rgba(17,24,39,0.9);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.cond-reman { color: #60A5FA !important; }

.engine-badge-miles {
  background: rgba(17,24,39,0.9);
  color: #CBD5E1;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.engine-card-body { padding: 18px; }

.engine-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.engine-compat {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
}

.engine-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.engine-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 500;
}

.engine-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.inc-badge {
  background: rgba(34,197,94,0.08);
  color: #16A34A;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(34,197,94,0.2);
}

.engine-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.engine-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.engine-old-price {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 6px;
}

.engine-savings {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #16A34A;
  margin-top: 2px;
}

.engine-why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
  padding: 0 20px;
}

.engine-why-item i { font-size: 0.9rem; }

/* =============================================
   FAQ ACCORDION
============================================= */
.faq-accordion .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-btn {
  background: var(--white) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  padding: 16px 20px !important;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  background: rgba(245,158,11,0.05) !important;
  color: var(--accent-dark) !important;
}

.faq-btn::after { filter: invert(0.3); }

.faq-body {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 16px 20px;
  background: var(--white);
}

/* =============================================
   INVENTORY TABLE
============================================= */
.inventory-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.85rem;
}

.inventory-table thead th {
  background: var(--primary);
  color: #CBD5E1;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border: none;
  white-space: nowrap;
}

.inventory-table tbody td {
  padding: 14px 16px;
  vertical-align: middle;
  border-color: var(--border);
}

.inventory-table tbody tr:hover { background: #FFFBEB; }

.inv-cat-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.cat-engine { background: rgba(245,158,11,0.1); color: var(--accent-dark); }
.cat-trans { background: rgba(59,130,246,0.1); color: #2563EB; }
.cat-body { background: rgba(239,68,68,0.1); color: #DC2626; }
.cat-elec { background: rgba(59,130,246,0.1); color: #2563EB; }
.cat-susp { background: rgba(139,92,246,0.1); color: #7C3AED; }
.cat-wheel { background: rgba(16,185,129,0.1); color: #059669; }

.inv-cond-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.inv-cond-badge.used { background: rgba(245,158,11,0.1); color: var(--accent-dark); }
.inv-cond-badge.reman { background: rgba(59,130,246,0.1); color: #2563EB; }

/* =============================================
   PAGINATION
============================================= */
.pagination-custom .page-link {
  color: var(--primary);
  border-color: var(--border);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 14px;
  transition: var(--transition);
}

.pagination-custom .page-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.pagination-custom .active .page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  font-weight: 700;
}

/* =============================================
   SERVICES PAGE
============================================= */
.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.service-feature-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.service-card-featured .service-feature-list li { color: rgba(255,255,255,0.7); }

.guarantee-card {
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent);
}

.guarantee-icon {
  width: 60px; height: 60px;
  background: rgba(245,158,11,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-dark);
  margin: 0 auto 16px;
  transition: var(--transition);
}

.guarantee-card:hover .guarantee-icon {
  background: var(--accent);
  color: var(--primary);
}

.guarantee-card h6 { font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.guarantee-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* =============================================
   ABOUT PAGE
============================================= */
.about-value-card {
  padding: 20px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.about-value-card:hover {
  border-color: var(--accent);
  background: #FFFBEB;
  transform: translateY(-2px);
}

/* TEAM CARDS */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 16px;
}

.team-avatar-alt { background: linear-gradient(135deg, #6366F1, #4F46E5); color: white; }
.team-avatar-blue { background: linear-gradient(135deg, #0EA5E9, #2563EB); color: white; }
.team-avatar-green { background: linear-gradient(135deg, #10B981, #059669); color: white; }

.team-name { font-weight: 700; color: var(--primary); font-size: 1rem; margin-bottom: 4px; }
.team-role { display: block; color: var(--accent-dark); font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }

.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.78rem;
  transition: var(--transition);
}

.team-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }

/* =============================================
   PRODUCT IMAGES
============================================= */
.part-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
  background: linear-gradient(135deg, #1E293B, #0F172A);
}

.part-card:hover .part-product-img { transform: scale(1.06); }

.engine-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
  background: linear-gradient(135deg, #1E293B, #0F172A);
}

.engine-card:hover .engine-product-img { transform: scale(1.06); }

/* Policy page styles */
.policy-section { padding: 72px 0; }

.policy-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-content h3 i { color: var(--accent); font-size: 1.1rem; }

.policy-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.policy-content ul {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-content ul li { margin-bottom: 6px; }

.policy-content ul li::marker { color: var(--accent); }

.policy-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.policy-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.policy-sidebar h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-bottom: 4px;
}

.policy-nav-link:hover,
.policy-nav-link.active {
  background: rgba(245,158,11,0.08);
  color: var(--accent-dark);
}

.policy-nav-link i { width: 16px; text-align: center; }

/* =============================================
   ACTIVE DROPDOWN ITEM
============================================= */
.dropdown-item.active-item {
  color: var(--accent) !important;
  background: rgba(245,158,11,0.08);
}

/* =============================================
   CALL REVENUE — ANIMATIONS & KEYFRAMES
============================================= */
@keyframes pulsRing {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

@keyframes pulsGreen {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ===== CALL NOW BUTTON PULSE ===== */
.btn-call-now {
  animation: pulsRing 2.2s infinite;
  font-weight: 700;
}

.btn-call-now:hover { animation: none; }

/* ===== TOPBAR PHONE LINK GLOW ===== */
.topbar-link[href^="tel"] {
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 0.88rem;
}

/* ===== LIVE INDICATOR DOT ===== */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  margin-right: 6px;
  animation: dotBlink 1.4s infinite;
  vertical-align: middle;
}

/* ===== FLOATING PHONE BUTTON (desktop) ===== */
.float-call-btn {
  position: fixed;
  bottom: 140px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(245,158,11,0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  animation: pulsRing 2.2s infinite;
}

.float-call-btn.show {
  opacity: 1;
  display: flex;
}

.float-call-btn:hover {
  transform: scale(1.12);
  animation: none;
  color: var(--primary);
}

/* ===== MOBILE STICKY CALL BAR ===== */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-call-bar.bar-visible { transform: translateY(0); }

.mobile-call-bar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #111827;
  padding: 14px 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.mobile-call-bar-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background-size: 200%;
  animation: shimmer 2s infinite linear;
}

.mobile-call-bar-link > i {
  font-size: 1.5rem;
  animation: floatY 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.call-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.call-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.call-bar-number {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ===== CARD GLOW HOVER ===== */
.service-card:hover {
  box-shadow: 0 0 0 1px rgba(245,158,11,0.3), 0 20px 48px rgba(245,158,11,0.12) !important;
}

.category-card:hover {
  box-shadow: 0 0 0 2px var(--accent), 0 16px 40px rgba(245,158,11,0.15) !important;
}

.part-card:hover {
  box-shadow: 0 0 0 1px rgba(245,158,11,0.25), 0 16px 40px rgba(0,0,0,0.15) !important;
  transform: translateY(-5px) !important;
}

.how-card:hover {
  box-shadow: 0 0 0 1px rgba(245,158,11,0.3), 0 20px 48px rgba(245,158,11,0.1) !important;
}

/* ===== HERO TITLE GRADIENT ===== */
.text-gradient {
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite linear;
}

/* ===== CTA STRIP SHIMMER ===== */
.cta-strip-section {
  position: relative;
  overflow: hidden;
}
.cta-strip-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  background-size: 200%;
  animation: shimmer 3s infinite linear;
  pointer-events: none;
}

/* ===== PART BUY BTN (phone) ===== */
.part-buy-btn {
  animation: pulsRing 2.5s infinite;
  font-weight: 700;
}
.part-buy-btn:hover { animation: none; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 992px) {
  .hero-section { min-height: auto; padding: 100px 0 80px; }
  .min-vh-hero { min-height: auto; padding: 40px 0; }
  .about-visual { height: 320px; }
  .about-years-badge { width: 80px; height: 80px; }
  .years-num { font-size: 1.2rem; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: 2.2rem; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .about-visual { height: auto; margin-bottom: 40px; }
  .about-img-main { position: relative; width: 100%; height: 240px; }
  .about-img-secondary { display: none; }
  .about-years-badge { top: 16px; right: 16px; left: auto; transform: none; }
  .hero-stat-card { padding: 24px 20px; }
  .how-arrow { display: none !important; }
  .brands-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}

@media (max-width: 576px) {
  .topbar { font-size: 0.75rem; }
  .topbar-left { gap: 10px; }
  .hero-title { font-size: 1.9rem; }
  .search-tabs { font-size: 0.8rem; }
  .category-card { padding: 20px 10px; }
  .cat-icon-wrap { width: 52px; height: 52px; font-size: 1.3rem; }
  .footer-top { padding: 48px 0 32px; }
}
