/* JLR Engineering - JLR Dark Green Theme */

:root {
  --jlr-dark: #0A1F15;
  --jlr-dark-2: #0D2B1C;
  --jlr-green: #004225;
  --jlr-green-light: #005A33;
  --jlr-green-mid: #006B3C;
  --jlr-gold: #C8A645;
  --jlr-gold-light: #D4B96A;
  --jlr-gold-dark: #9C7F2E;
  --jlr-white: #F5F5F0;
  --jlr-gray: #E8E8E3;
  --jlr-mid-gray: #A0A5A0;
  --jlr-dark-gray: #4A5A4A;
  --text-primary: #F5F5F0;
  --text-secondary: #A0A5A0;
  --text-dark: #1A1A1A;
  --bg-primary: #0A1F15;
  --bg-secondary: #0D2B1C;
  --bg-card: #111E15;
  --border-color: #1A3A2A;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--jlr-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--jlr-gold-light); }

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

.text-gold { color: var(--jlr-gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ============ LAYOUT ============ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--jlr-gold), var(--jlr-gold-dark));
  border-radius: 2px;
}

/* ============ HEADER ============ */

.header {
  background-color: rgba(10, 31, 21, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.logo:hover { color: var(--jlr-gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background-color: rgba(200, 166, 69, 0.1);
}

.nav-cta {
  background-color: var(--jlr-gold);
  color: var(--bg-primary) !important;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background-color: var(--jlr-gold-light);
  color: var(--bg-primary) !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #0F2E1C 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 166, 69, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
}

.hero-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.hero-stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--jlr-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--jlr-gold);
  color: var(--bg-primary);
  border-color: var(--jlr-gold);
}

.btn-primary:hover {
  background-color: var(--jlr-gold-light);
  border-color: var(--jlr-gold-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 166, 69, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--jlr-mid-gray);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--jlr-gold);
  color: var(--jlr-gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ============ CARDS ============ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jlr-gold), var(--jlr-gold-dark));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--jlr-gold-dark);
  box-shadow: var(--shadow);
}

.card:hover::before { opacity: 1; }

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 166, 69, 0.1);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.card-icon .icon-svg {
  width: 24px;
  height: 24px;
  color: var(--jlr-gold);
}

/* ============ FEATURE GRID ============ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--jlr-gold-dark);
  background: rgba(200, 166, 69, 0.03);
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 166, 69, 0.1);
  border-radius: var(--radius);
}

.feature-icon .icon-svg {
  width: 20px;
  height: 20px;
  color: var(--jlr-gold);
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============ FEATURE LIST ============ */

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li strong { color: var(--text-primary); font-weight: 600; }

.check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 107, 60, 0.2);
  border-radius: 50%;
  margin-top: 1px;
}

.icon-check {
  width: 12px;
  height: 12px;
  color: var(--jlr-gold);
}

/* ============ PROCESS STEPS ============ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--jlr-gold), var(--jlr-gold-dark));
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(200, 166, 69, 0.3);
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============ TESTIMONIALS ============ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
}

.testimonial:hover {
  border-color: var(--jlr-gold-dark);
  transform: translateY(-2px);
}

.testimonial-rating {
  color: var(--jlr-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.testimonial-vehicle {
  font-size: 0.8rem;
  color: var(--jlr-mid-gray);
  margin-bottom: 0;
}

/* ============ BLOG CARDS ============ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--jlr-gold-dark);
  transform: translateY(-2px);
}

.blog-date {
  font-size: 0.75rem;
  color: var(--jlr-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-title a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.blog-title a:hover { color: var(--jlr-gold); }

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

/* ============ CTA SECTION ============ */

.cta-section {
  background: linear-gradient(135deg, var(--jlr-green) 0%, var(--jlr-green-light) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200, 166, 69, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.cta-section p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

.cta-section .hero-buttons {
  justify-content: center;
  margin-bottom: 0;
}

/* ============ PAGE HEADER ============ */

.page-header {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(200, 166, 69, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  max-width: 700px;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 600px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ============ BREADCRUMB ============ */

.breadcrumb {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.breadcrumb .container { display: flex; gap: 0.5rem; align-items: center; }

.breadcrumb a { color: var(--text-secondary); font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--jlr-gold); }

.breadcrumb .sep { color: var(--jlr-dark-gray); }
.breadcrumb .current { color: var(--jlr-mid-gray); }

/* ============ CONTENT PAGE ============ */

.content-page {
  padding: 2.5rem 0 4rem;
}

.content-page h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-page h2:first-child { margin-top: 0; }

.content-page h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-page p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-page ul,
.content-page ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-page ul li,
.content-page ol li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-page ul li::marker { color: var(--jlr-gold); }
.content-page ol li::marker { color: var(--jlr-gold); font-weight: 600; }

.content-page a { color: var(--jlr-gold); text-decoration: underline; text-underline-offset: 2px; }
.content-page a:hover { color: var(--jlr-gold-light); }

/* ============ TABLES ============ */

.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.table-responsive table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table-responsive th,
.table-responsive td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.table-responsive th {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.table-responsive tr:last-child td { border-bottom: none; }

.table-responsive td {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.table-responsive tr:hover td {
  background-color: rgba(200, 166, 69, 0.03);
  color: var(--text-primary);
}

/* ============ TWO-COLUMN LAYOUT ============ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ============ INFO BOXES ============ */

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.info-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.info-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.warning-box {
  border-color: var(--jlr-gold-dark);
  background: rgba(200, 166, 69, 0.05);
}

/* ============ VIN CHECKER ============ */

.vin-checker {
  display: flex;
  gap: 0.75rem;
  max-width: 600px;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.vin-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.vin-input:focus {
  border-color: var(--jlr-gold);
  box-shadow: 0 0 0 3px rgba(200, 166, 69, 0.15);
}

.vin-input::placeholder { color: var(--jlr-dark-gray); }

/* ============ VEHICLE GRID ============ */

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
  position: relative;
}

.vehicle-card:hover {
  border-color: var(--jlr-gold-dark);
  transform: translateY(-2px);
}

.vehicle-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.vehicle-card span {
  font-size: 0.8rem;
  color: var(--jlr-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ============ PRODUCT CARDS ============ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--jlr-gold-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-img {
  height: 160px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-img .icon-svg {
  width: 48px;
  height: 48px;
  color: var(--jlr-gold);
  opacity: 0.8;
}

.product-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jlr-gold);
  margin-bottom: 0.75rem;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.product-card-features li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.product-card-features li:last-child { border-bottom: none; }

.product-card-features li svg {
  width: 16px;
  height: 16px;
  color: var(--jlr-gold);
  flex-shrink: 0;
}

.buy-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.buy-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
}

.buy-amazon {
  background: #FF9900;
  color: #000;
  border-color: #FF9900;
}

.buy-amazon:hover {
  background: #FFAD33;
  color: #000;
  transform: translateY(-1px);
}

.buy-aliexpress {
  background: #FF4747;
  color: #fff;
  border-color: #FF4747;
}

.buy-aliexpress:hover {
  background: #FF6B6B;
  color: #fff;
  transform: translateY(-1px);
}

/* ============ CONTACT ============ */

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--jlr-gold-dark);
  background: rgba(200, 166, 69, 0.03);
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 166, 69, 0.1);
  border-radius: var(--radius);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--jlr-gold);
}

.contact-details h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.1rem;
  line-height: 1.4;
}

.contact-details a { color: var(--jlr-gold); font-size: 0.9rem; }

/* ============ FAQ ============ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--jlr-gold-dark); }

.faq-item.active { border-color: var(--jlr-gold); }

.faq-question {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: var(--transition);
  position: relative;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--jlr-gold);
  font-weight: 400;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer { display: block; }

/* ============ FOOTER ============ */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}


  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li { margin-bottom: 0.5rem; }

.footer-column a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover { color: var(--jlr-gold); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--jlr-dark-gray);
  margin-bottom: 0;
}

/* ============ CHAT WIDGET ============ */

.jlr-chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.jlr-chat-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
}

.jlr-chat-widget.active .jlr-chat-buttons {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.jlr-chat-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.jlr-chat-btn:hover {
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.jlr-chat-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.jlr-chat-whatsapp { background: #25D366; }
.jlr-chat-whatsapp:hover { background: #20BD5A; }
.jlr-chat-telegram { background: #0088cc; }
.jlr-chat-telegram:hover { background: #0077b3; }
.jlr-chat-email { background: var(--jlr-gold); color: var(--bg-primary); }
.jlr-chat-email:hover { background: var(--jlr-gold-light); }
.jlr-chat-phone { background: var(--jlr-green); }
.jlr-chat-phone:hover { background: var(--jlr-green-light); }

.jlr-chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--jlr-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
}

.jlr-chat-toggle:hover {
  background: var(--jlr-gold-light);
  transform: scale(1.05);
}

.jlr-chat-toggle svg {
  width: 24px;
  height: 24px;
  position: absolute;
  transition: var(--transition);
}

.jlr-chat-icon-open { opacity: 1; }
.jlr-chat-icon-close { opacity: 0; transform: rotate(90deg); }

.jlr-chat-widget.active .jlr-chat-icon-open { opacity: 0; transform: rotate(-90deg); }
.jlr-chat-widget.active .jlr-chat-icon-close { opacity: 1; transform: rotate(0); }

/* ============ SCROLL TO TOP ============ */

.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--jlr-gold);
  color: var(--bg-primary);
  border-color: var(--jlr-gold);
  transform: translateY(-2px);
}

/* ============ SVG ICONS ============ */

.icon-svg {
  width: 24px;
  height: 24px;
  color: var(--jlr-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============ PRICE TAGS ============ */

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jlr-gold);
  margin-bottom: 1rem;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 31, 21, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .page-header h1 { font-size: 1.75rem; }
  .jlr-chat-widget { bottom: 1rem; right: 1rem; }
  .scroll-top { bottom: 1rem; left: 1rem; }
  .card-grid,
  .product-grid { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .vin-checker { flex-direction: column; }
  .vin-input { width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-buttons .btn { flex: 1; min-width: 140px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat-number { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .table-responsive th,
  .table-responsive td { padding: 0.5rem 0.75rem; font-size: 0.8rem; }
  .buy-buttons { flex-direction: column; }
  .buy-btn { width: 100%; }
}

/* ============ ANIMATIONS ============ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ============ PRINT ============ */

@media print {
  .header, .footer, .jlr-chat-widget, .scroll-top, .cta-section { display: none; }
  .page-header { padding: 1rem 0; }
  body { color: #000; background: #fff; }
}

/* Chaty Live Chat Widget */
.chaty-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  font-family: var(--font-body);
}
.chaty-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jlr-gold) 0%, var(--jlr-gold-light) 100%);
  color: var(--jlr-dark);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 166, 69, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.chaty-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(200, 166, 69, 0.6);
}
.chaty-toggle.active::after { content: '✕'; font-size: 1.25rem; }
.chaty-toggle:not(.active)::after { content: '💬'; }
.chaty-toggle span { display: none; }
.chaty-channels {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.chaty-channels.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.chaty-channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s;
}
.chaty-channel:hover { transform: translateX(4px); }
.chaty-channel:hover .chaty-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.chaty-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.chaty-whatsapp { background: #25D366; }
.chaty-telegram { background: #0088cc; }
.chaty-email { background: var(--jlr-dark); border: 2px solid var(--jlr-gold); }
.chaty-phone { background: var(--jlr-gold); color: var(--jlr-dark) !important; }
.chaty-tooltip {
  background: #1A1A1A;
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.2s;
  position: relative;
}
.chaty-tooltip::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #1A1A1A;
}
@media (max-width: 768px) {
  .chaty-widget { bottom: 1rem; left: 1rem; }
  .chaty-toggle { width: 52px; height: 52px; }
  .chaty-icon { width: 44px; height: 44px; }
}


/* Footer Navigation Menu */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
.footer-brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jlr-gold);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand .footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-column h4 {
  color: var(--jlr-gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 0.5rem;
}
.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-column a:hover {
  color: var(--jlr-gold);
}
.footer-bottom-bar, .footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-bar p, .footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer-social a.whatsapp {
  background: #1A1A1A;
  border: 1px solid #C8A645;
}
.footer-social a.whatsapp:hover {
  transform: scale(1.1);
  filter: brightness(1.15);
}
.footer-social a.telegram {
  background: #1A1A1A;
  border: 1px solid #C8A645;
}
.footer-social a.telegram:hover {
  transform: scale(1.1);
  filter: brightness(1.15);
}
.footer-social a.email {
  background: #1A1A1A;
  border: 1px solid #C8A645;
}
.footer-social a.email:hover {
  transform: scale(1.1);
  filter: brightness(1.15);
}
.footer-social a:hover {
  color: var(--jlr-gold);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom-bar, .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* Unified gold theme color for Shop by Solutions emoji icons */
.solution-icon {
  filter: grayscale(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(0.9);
}
