/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f9;
  color: #222;
  line-height: 1.5;
}

/* ================= GLOBAL ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: #0b2b4b;
}

/* ================= HEADER ================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo img {
  max-height: 38px;
}

.main-nav a {
  margin-left: 20px;
  font-weight: 600;
  color: #333;
}

/* ================= HERO ================= */
.hero {
  background: #0b2b4b;
  color: #fff;
  padding: 80px 0;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.trust-points {
  list-style: none;
  margin-top: 20px;
}

.trust-points li {
  margin-bottom: 8px;
}

/* ================= BOOKING BOX ================= */
.booking-box {
  background: #fff;
  color: #222;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.booking-box h3 {
  margin-bottom: 15px;
}

.booking-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: bold;
}

.btn-primary {
  background: #f04e23;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* ================= SERVICES ================= */
.services {
  padding: 70px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ================= WHY US ================= */
.why-us {
  background: #fff;
  padding: 70px 0;
}

/* ================= CTA ================= */
.final-cta {
  background: #f04e23;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #111;
  color: #aaa;
  padding: 30px 0;
  text-align: center;
  margin-top: 60px;
}

/* =====================================================
   VEHICLE PAGES (OVERVIEW / TYRES / BATTERY / ETC)
===================================================== */

.vehicle-overview {
  padding: 40px 0;
}

.vehicle-header {
  margin-bottom: 30px;
}

.vehicle-header h1 {
  font-size: 34px;
  margin-bottom: 6px;
}

.vehicle-header p {
  font-size: 15px;
  color: #555;
}

/* ================= SECTION BLOCK ================= */
.vehicle-section {
  margin-bottom: 40px;
}

.vehicle-section h2 {
  margin-bottom: 16px;
  font-size: 22px;
  color: #0b2b4b;
}

/* ================= STATUS / TYRES / INFO CARDS ================= */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.status-card {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.status-card h4 {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.status-card strong {
  font-size: 18px;
  color: #0b2b4b;
}

/* ================= TABLES (BATTERY / TYRES / VALUATION) ================= */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  text-align: left;
}

th {
  background: #f9fafb;
  font-weight: bold;
}

tr:last-child td {
  border-bottom: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .vehicle-header h1 {
    font-size: 26px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 13px;
  }
}

/* ================= VEHICLE IMAGES ================= */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.vehicle-image-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
}

.vehicle-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  padding: 10px;
  font-size: 13px;
  color: #555;
}
