/* ============================================================
   GoRoute Cabs - fleet.css
   Fleet page styles (fleet.html only)
   ============================================================ */

/* ── FLEET SECTION ── */
.fleet-hero-section {
  background: var(--bg-2);
  padding: var(--section-py) 0;
}

/* ── 6-COLUMN GRID (3 cards/row, last row centered) ── */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.vehicle-card {
  grid-column: span 2;
}
.vehicle-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.vehicle-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* ── CARD BASE ── */
.vehicle-card {
  background: white;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-border);
}

.vehicle-card.featured {
  border-color: var(--primary);
  box-shadow:
    0 0 0 1px rgba(255, 69, 0, 0.25),
    0 8px 32px rgba(255, 69, 0, 0.08);
}

/* ── IMAGE AREA ── */
.vehicle-img {
  position: relative;
  height: 210px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #ffe8dc 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px 24px 8px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Subtle bottom fade into card */
.vehicle-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, white);
  z-index: 2;
}

/* ── BADGE ── */
.vc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(255, 69, 0, 0.35);
}

/* ── CARD BODY ── */
.vehicle-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vehicle-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 3px;
}

.vehicle-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

/* ── SPEC STRIP ── */
.vehicle-spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.spec-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.sc-icon {
  font-size: 16px;
  line-height: 1;
}
.sc-label {
  font-size: 9px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sc-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}

/* ── USE TAGS ── */
.vehicle-use-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.v-tag {
  background: var(--bg-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
}

.v-tag.green {
  background: #dcfce7;
  color: #16a34a;
  border-color: #bbf7d0;
}

/* ── CARD FOOTER ── */
.vehicle-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.vf-best {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.vf-label {
  font-size: 11px;
  color: var(--text-muted);
}
.vf-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.vehicle-btns {
  display: flex;
  gap: 8px;
}

.vehicle-btns .btn {
  flex: 1;
  justify-content: center;
  padding: 11px;
  font-size: 14px;
  border-radius: 10px;
}

/* ── PRICING NOTE ── */
.pricing-note {
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 36px;
}

.pricing-note-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.pricing-note strong {
  color: var(--primary);
}

/* ── COMPARISON TABLE ── */
.comparison-section {
  background: white;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border);
  margin-top: 40px;
}

.compare-table thead th {
  background: var(--secondary);
  color: white;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.compare-table thead th:first-child {
  border-radius: 13px 0 0 0;
}
.compare-table thead th:last-child {
  border-radius: 0 13px 0 0;
}

.compare-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  vertical-align: middle;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody tr:nth-child(even) td {
  background: var(--bg-2);
}

.compare-table tbody tr:hover td {
  background: var(--primary-light);
  transition: background 0.15s;
}

.compare-table .vehicle-name-cell {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
  white-space: nowrap;
}

.compare-table .check {
  color: #16a34a;
  font-size: 15px;
  font-weight: 700;
}

.compare-table .dash {
  color: var(--text-light);
  font-size: 14px;
}

.compare-table .rate-tbd {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 13px;
}

.compare-table .book-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--wa-green, #25d366);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.compare-table .book-link:hover {
  text-decoration: underline;
}

/* ── ORANGE CARD CTA ── */
.cta-orange-section {
  background: white;
  padding: 72px 0;
}

.cta-orange-card {
  background: linear-gradient(135deg, #ff5520 0%, #ff3d00 100%);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.cta-orange-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-orange-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-oc-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-oc-desc {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.cta-oc-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-oc-btn-wa,
.cta-oc-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.cta-oc-btn-wa {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cta-oc-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  color: var(--primary);
}

.cta-oc-btn-call {
  background: #111827;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-oc-btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  background: #1f2937;
  color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .vehicle-card,
  .vehicle-card:nth-child(4),
  .vehicle-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vehicle-img {
    height: 180px;
  }
  .compare-table thead th,
  .compare-table tbody td {
    padding: 10px 12px;
    font-size: 12px;
  }
  .cta-orange-card {
    padding: 48px 24px;
  }
  .cta-oc-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-oc-btn-wa,
  .cta-oc-btn-call {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   FLEET PAGE - ENHANCEMENT LAYER
   ============================================================ */

/* ── FARE BADGE ON VEHICLE CARDS ── */
.fleet-fare-badge {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 12px;
}
.fleet-fare-rate {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ff4500;
  line-height: 1;
}
.fleet-fare-rate small {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-left: 1px;
}
.fleet-fare-label {
  font-size: 0.72rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fleet-fare-badge--request .fleet-fare-rate {
  font-size: 1rem;
  color: #6b7280;
}

/* ── TRUST STRIP ── */
.fleet-trust-strip {
  background: #111827;
  padding: 14px 0;
}
.fleet-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
}
.fleet-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 18px;
}
.fleet-trust-icon {
  font-size: 15px;
}
.fleet-trust-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PER-KM PRICING OVERVIEW ── */
.fleet-pricing-overview {
  background: #f8f9fa;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 40px 44px;
  margin: 48px 0 8px;
}
.fleet-pricing-header {
  margin-bottom: 28px;
}
.fleet-pricing-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin: 6px 0 8px;
}
.fleet-pricing-header p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 560px;
}
.fleet-pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.fleet-pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 20px;
  flex: 1 1 180px;
  min-width: 160px;
}
.fleet-pricing-item--request {
  border-color: #f0f0f0;
  background: #fafafa;
}
.fleet-pricing-vehicle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}
.fleet-pricing-km {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ff4500;
}
.fleet-pricing-km small {
  font-size: 0.72rem;
  font-weight: 500;
  color: #9ca3af;
}
.fleet-pricing-km--sm {
  font-size: 0.85rem;
  color: #6b7280;
}
.fleet-pricing-note {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.65;
  margin: 0;
}

/* ── FLEET EYEBROW ── */
.fleet-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff4500;
  margin-bottom: 8px;
}

/* ── PICK BY TRIP TYPE SECTION ── */
.fleet-picker-section {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.fleet-picker-header {
  text-align: center;
  margin-bottom: 48px;
}
.fleet-picker-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #111827;
  margin: 6px 0 10px;
  line-height: 1.2;
}
.fleet-picker-header p {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}
.fleet-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fleet-picker-card {
  display: flex;
  gap: 16px;
  background: #f8f9fa;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 24px 22px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.fleet-picker-card:hover {
  border-color: #ff4500;
  box-shadow: 0 6px 24px rgba(255, 69, 0, 0.09);
  transform: translateY(-2px);
}
.fleet-picker-card--cta {
  background: #111827;
  border-color: #111827;
}
.fleet-picker-card--cta:hover {
  border-color: #ff4500;
}
.fleet-picker-card--cta h3,
.fleet-picker-card--cta p {
  color: rgba(255, 255, 255, 0.9) !important;
}
.fleet-picker-card--cta p {
  color: rgba(255, 255, 255, 0.6) !important;
}
.fleet-picker-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.fleet-picker-content h3 {
  font-size: 0.975rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
  line-height: 1.3;
}
.fleet-picker-content p {
  font-size: 0.855rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 14px;
}
.fleet-picker-rec {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fleet-picker-tag {
  display: inline-block;
  background: #fff0eb;
  border: 1px solid #ffddd0;
  color: #ff4500;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.fleet-picker-rate {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
}
.fleet-picker-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: 4px;
}
.fleet-picker-wa:hover {
  background: #1dbc5a;
  transform: translateY(-1px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .fleet-picker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .fleet-trust-inner {
    gap: 6px 0;
  }
  .fleet-trust-dot {
    display: none;
  }
  .fleet-trust-item {
    padding: 4px 12px;
    font-size: 12px;
  }
  .fleet-pricing-overview {
    padding: 28px 20px;
  }
  .fleet-picker-section {
    padding: 40px 0;
  }
  .fleet-picker-header {
    margin-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .fleet-picker-grid {
    grid-template-columns: 1fr;
  }
  .fleet-pricing-row {
    flex-direction: column;
  }
}

/* ── WHAT'S INCLUDED SECTION ── */
.fleet-included-section {
  padding: 60px 0;
  background: #f8f9fa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.fleet-included-header {
  text-align: center;
  margin-bottom: 48px;
}

.fleet-included-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #111827;
  margin: 6px 0 10px;
  line-height: 1.2;
}

.fleet-included-header p {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

.fleet-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fleet-inc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 20px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.fleet-inc-item:hover {
  border-color: #ff4500;
  box-shadow: 0 4px 18px rgba(255, 69, 0, 0.07);
}

.fleet-inc-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.fleet-inc-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
  line-height: 1.3;
}

.fleet-inc-item p {
  font-size: 0.845rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .fleet-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fleet-included-section {
    padding: 40px 0;
  }
}

@media (max-width: 600px) {
  .fleet-included-grid {
    grid-template-columns: 1fr;
  }
}
