/* ==========================================================================
   DOST FORD ORİJİNAL YEDEK PARÇA - RESMİ WEB SİTESİ
   Tasarım Sistemi & Stil Dosyası
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-orange: #FF5A00;
  --primary-orange-hover: #E04E00;
  --primary-orange-light: #FFF4ED;
  --primary-orange-glow: rgba(255, 90, 0, 0.28);

  --ford-blue: #003478;
  --ford-blue-dark: #001F4D;
  --ford-blue-light: #EBF3FC;

  --dark-bg: #0B132B;
  --dark-card: #131E3D;
  --dark-border: #1E2D5A;

  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #F8FAFC;

  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --border-light: #E2E8F0;

  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 8px 24px rgba(255, 90, 0, 0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* ==========================================================================
   LAYOUT & CONTAINERS
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 900px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
  position: relative;
}

.section-light {
  background-color: #F1F5F9;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.topbar {
  background-color: #070D1E;
  color: #94A3B8;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-info, .topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.topbar-item a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseAnimation 1.8s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.navbar {
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-orange);
  background-color: var(--primary-orange-light);
}

.nav-link.active {
  color: var(--primary-orange);
  background-color: var(--primary-orange-light);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: var(--radius-full);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background-color: #0B132B;
  color: #FFFFFF;
  z-index: 2000;
  padding: 30px 24px;
  overflow-y: auto;
  transition: right 0.35s ease-in-out;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  display: block;
  opacity: 1;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #E2E8F0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a.active, .mobile-nav-links a:hover {
  background: rgba(255, 90, 0, 0.18);
  color: var(--primary-orange);
}

.mobile-nav-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6A00 0%, #FF5A00 60%, #E64A00 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(255, 90, 0, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF7B1A 0%, #FF640A 60%, #EB5200 100%);
  box-shadow: 0 8px 24px rgba(255, 90, 0, 0.5);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-ford {
  background: linear-gradient(135deg, #00459E 0%, #003478 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 52, 120, 0.3);
}

.btn-ford:hover {
  background: linear-gradient(135deg, #0052BC 0%, #003C8A 100%);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--dark-bg);
}

.btn-outline-orange {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

.btn-outline-orange:hover {
  background: var(--primary-orange);
  color: #FFFFFF;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-orange {
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
}

.badge-ford {
  background-color: var(--ford-blue-light);
  color: var(--ford-blue);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #152754 0%, #0B132B 65%, #050A17 100%);
  color: #FFFFFF;
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 90, 0, 0.15);
  border: 1px solid rgba(255, 90, 0, 0.35);
  color: #FFA366;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span.highlight-orange {
  color: var(--primary-orange);
  position: relative;
  display: inline-block;
}

.hero-title span.highlight-ford {
  color: #60A5FA;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.82rem;
  color: #94A3B8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Media Card */
.hero-media {
  position: relative;
  z-index: 2;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--dark-card);
}

.hero-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-card:hover img {
  transform: scale(1.03);
}

.hero-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 90, 0, 0.4);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(7, 13, 30, 0.95) 0%, rgba(7, 13, 30, 0.7) 60%, transparent 100%);
}

.hero-card-footer h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.hero-card-footer p {
  font-size: 0.88rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   MODEL TICKER / BADGE STRIP
   ========================================================================== */

.model-strip {
  background: #060B18;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.model-strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.model-strip-inner::-webkit-scrollbar {
  display: none;
}

.model-strip-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.model-pill {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.model-pill:hover {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header.text-left {
  text-align: left;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.section-header.text-left .section-subtitle {
  margin: 0;
}

.section-dark .section-subtitle {
  color: #94A3B8;
}

/* ==========================================================================
   CATEGORIES GRID
   ========================================================================== */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 90, 0, 0.3);
}

.category-card:hover::before {
  background: var(--primary-orange);
}

.cat-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.cat-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.category-card:hover .cat-icon-wrapper {
  background: var(--primary-orange);
  color: #FFFFFF;
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.category-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.category-card:hover .category-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition-normal);
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 90, 0, 0.4);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 90, 0, 0.15);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ==========================================================================
   STORE SPOTLIGHT SECTION
   ========================================================================== */

.store-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.store-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.store-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.store-img-wrapper:hover img {
  transform: scale(1.02);
}

.store-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary-orange);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(255, 90, 0, 0.4);
}

.store-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.store-info p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.store-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.store-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.store-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-contact-icon svg {
  width: 20px;
  height: 20px;
}

.store-contact-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.store-contact-text span, .store-contact-text a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.store-contact-text a:hover {
  color: var(--primary-orange);
}

/* ==========================================================================
   CHASSIS INQUIRY BANNER / FORM
   ========================================================================== */

.vin-inquiry-box {
  background: linear-gradient(135deg, #101E42 0%, #070D1E 100%);
  border: 1px solid rgba(255, 90, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.vin-inquiry-box::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5E1;
}

.form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.25);
}

.form-control::placeholder {
  color: #64748B;
}

/* Light form for Contact Page */
.form-light .form-group label {
  color: var(--text-dark);
}

.form-light .form-control {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.form-light .form-control:focus {
  border-color: var(--primary-orange);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.15);
}

/* ==========================================================================
   PRODUCTS / CATALOG PAGE
   ========================================================================== */

.catalog-search-bar {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.search-input-wrapper {
  flex-grow: 1;
  position: relative;
  min-width: 260px;
}

.search-input-wrapper svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 12px 14px 12px 44px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-body);
}

.search-input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.15);
}

.filter-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: thin;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.filter-pill:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.filter-pill.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(255, 90, 0, 0.3);
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}

.part-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.part-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 90, 0, 0.3);
}

.part-card-header {
  padding: 16px 20px;
  background: #FAFBFD;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.part-category-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-orange);
}

.part-oem-tag {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--ford-blue-light);
  color: var(--ford-blue);
  padding: 2px 8px;
  border-radius: 4px;
}

.part-card-body {
  padding: 22px 20px;
  flex-grow: 1;
}

.part-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.part-models-list {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.part-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.part-feat-badge {
  font-size: 0.76rem;
  background: #F1F5F9;
  color: #475569;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.part-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ==========================================================================
   PHOTO GALLERY
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.84rem;
  color: #CBD5E1;
}

.gallery-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 24, 0.92);
  backdrop-filter: blur(10px);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  color: #E2E8F0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-btn:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* ==========================================================================
   PAGE HERO (SUBPAGES)
   ========================================================================== */

.page-hero {
  background: radial-gradient(circle at 80% 30%, #152754 0%, #0B132B 70%);
  color: #FFFFFF;
  padding: 60px 0;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #94A3B8;
  margin-bottom: 14px;
}

.breadcrumb a {
  color: #CBD5E1;
}

.breadcrumb a:hover {
  color: var(--primary-orange);
}

.breadcrumb span.current {
  color: var(--primary-orange);
  font-weight: 700;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: #CBD5E1;
  max-width: 680px;
}

/* ==========================================================================
   CONTACT PAGE & MAP
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-card-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-channel:last-child {
  border-bottom: none;
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-icon svg {
  width: 24px;
  height: 24px;
}

.contact-channel-info h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-channel-info a, .contact-channel-info p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.map-bar {
  padding: 18px 24px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & CALL)
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wa-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
}

.wa-btn svg {
  width: 34px;
  height: 34px;
}

.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.8;
  animation: waPulse 2s infinite cubic-bezier(0.25, 0, 0, 1);
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.45); opacity: 0; }
}

.wa-tooltip {
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  white-space: nowrap;
  pointer-events: none;
  transition: var(--transition-fast);
}

.wa-tooltip-sub {
  font-size: 0.74rem;
  color: #25D366;
  font-weight: 600;
}

/* Mobile Quick Call Button */
.floating-call {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 4000;
  display: none;
}

.call-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6A00 0%, #E64A00 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 90, 0, 0.45);
}

.call-btn svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background-color: #060B18;
  color: #94A3B8;
  padding: 70px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #CBD5E1;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  color: #94A3B8;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary-orange);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: #CBD5E1;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}

.footer-bottom p span {
  color: var(--primary-orange);
  font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* ==========================================================================
   PWA & MOBILE APP STYLES
   ========================================================================== */

/* Mobile Bottom Navigation Bar (App Bar) */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 19, 43, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 4500;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 500px;
  margin: 0 auto;
}

.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #94A3B8;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.bottom-bar-item svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.bottom-bar-item:active {
  transform: scale(0.92);
}

.bottom-bar-item.active, .bottom-bar-item:hover {
  color: var(--primary-orange);
}

.bottom-bar-item.active svg {
  color: var(--primary-orange);
}

/* Floating Raised Center Button in Mobile Bar */
.bottom-bar-item.highlight-wa {
  color: #25D366;
  position: relative;
  top: -12px;
}

.bottom-bar-item.highlight-wa .wa-bar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  border: 3px solid #0B132B;
}

.bottom-bar-item.highlight-wa .wa-bar-circle svg {
  width: 26px;
  height: 26px;
  color: #FFFFFF;
}

/* PWA Install Banner */
.pwa-install-banner {
  position: fixed;
  bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  left: 14px;
  right: 14px;
  max-width: 440px;
  margin: 0 auto;
  background: #0B132B;
  border: 1px solid rgba(255, 90, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 4600;
  animation: slideUpBanner 0.4s ease forwards;
}

@keyframes slideUpBanner {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pwa-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.pwa-banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pwa-banner-text {
  flex-grow: 1;
}

.pwa-banner-text h5 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.pwa-banner-text p {
  font-size: 0.75rem;
  color: #94A3B8;
  line-height: 1.2;
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pwa-btn-install {
  background: var(--primary-orange);
  color: #FFFFFF;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.pwa-btn-close {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card img {
    height: 360px;
  }

  .store-spotlight {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .store-img-wrapper img {
    height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Prevent iOS zoom on input focus */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* Safe space for bottom navigation bar */
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-bottom-bar {
    display: block;
  }

  /* Hide floating desktop WhatsApp and floating call since bottom app bar has both */
  .floating-whatsapp, .floating-call {
    display: none !important;
  }

  .topbar {
    display: none;
  }

  .nav-links, .nav-cta a.btn-whatsapp {
    display: none;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-phone-shortcut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
  }

  .mobile-phone-shortcut svg {
    width: 18px;
    height: 18px;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: #F1F5F9;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    padding: 36px 0 46px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.18;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 10px;
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .section {
    padding: 45px 0;
  }

  .section-sm {
    padding: 32px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-hero {
    padding: 40px 0;
  }

  .page-hero-title {
    font-size: 2.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    padding: 45px 0 20px;
  }

  .vin-inquiry-box {
    padding: 22px 18px;
  }

  .store-spotlight {
    padding: 18px;
    gap: 24px;
  }

  .store-img-wrapper img {
    height: 250px;
  }

  .hero-card img {
    height: 250px;
  }

  .contact-card-box {
    padding: 24px 18px;
  }

  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-content { max-width: 96vw; }
}

