/* =========================================
   KVB RENT A VAN — STYLES
   2018 Ford Transit 150 Rental
   ========================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #e94560;
  --primary-dark: #c73652;
  --secondary: #1a1a2e;
  --accent: #16213e;
  --dark: #0f0f23;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--secondary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--dark);
  color: var(--gray-light);
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 24px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left a {
  color: var(--gray-light);
}

.top-bar-left a:hover {
  color: var(--primary);
}

.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right a {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.top-bar-right a:hover {
  color: var(--primary);
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 0;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: var(--secondary);
}

.logo i {
  font-size: 1.6rem;
  color: var(--primary);
}

.logo strong {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(15, 15, 35, 0.85), rgba(26, 26, 46, 0.8)),
    url('https://images.unsplash.com/photo-1534430480872-3498386e7856?w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.highlight {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* ---- BOOKING WIDGET ---- */
.booking-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
  color: var(--secondary);
  text-align: left;
}

.bw-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.bw-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bw-field label i {
  color: var(--primary);
}

.bw-field select,
.bw-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--secondary);
  transition: var(--transition);
  background: var(--white);
}

.bw-field select:focus,
.bw-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}

.bw-pickup-note {
  background: var(--light);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bw-pickup-note i {
  color: var(--primary);
}

.proximity-tags {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.proximity-tags .tag {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.proximity-tags .tag i {
  font-size: 0.72rem;
}

.btn-search {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 1.05rem;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--light);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-light);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--primary);
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--secondary);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- VEHICLE FEATURE LAYOUT ---- */
.vehicle-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.vehicle-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.vehicle-main-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.vehicle-main-img:hover img {
  transform: scale(1.03);
}

.vehicle-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.vehicle-details h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}

.car-category {
  font-size: 0.85rem;
  color: var(--gray);
}

.vehicle-badge {
  background: #27ae60;
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.vehicle-description {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---- VEHICLE SPECS GRID ---- */
.vehicle-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.spec-item:hover {
  background: var(--gray-light);
}

.spec-item i {
  font-size: 1.2rem;
  color: var(--primary);
  width: 24px;
  text-align: center;
}

.spec-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--secondary);
}

.spec-item span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ---- VEHICLE PRICING BOX ---- */
.vehicle-pricing-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-option {
  text-align: center;
  padding: 20px 12px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-light);
  transition: var(--transition);
}

.pricing-option:hover {
  border-color: var(--primary);
  background: #fff5f7;
}

.pricing-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.pricing-amount small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray);
}

.vehicle-cta {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
}

/* ---- PHOTO GALLERY ---- */
.gallery-section {
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  padding: 20px 16px 14px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---- DEALS SECTION ---- */
.deals-section {
  background: var(--white);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.deal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.deal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.deal-icon i {
  font-size: 1.6rem;
  color: var(--white);
}

.deal-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.deal-card p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.deal-card code {
  background: var(--light);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--primary);
}

.deal-tag {
  display: inline-block;
  background: var(--light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
}

/* ---- SINGLE LOCATION ---- */
.single-location {
  max-width: 700px;
  margin: 0 auto 40px;
}

.location-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.location-address {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.location-address i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 4px;
}

.location-address h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.location-address p {
  font-size: 0.92rem;
  color: var(--gray);
}

.location-proximity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.proximity-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
}

.proximity-item i {
  font-size: 1.3rem;
  color: var(--primary);
}

.proximity-item strong {
  display: block;
  font-size: 0.88rem;
}

.proximity-item span {
  font-size: 0.82rem;
  color: var(--gray);
}

.location-contact-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quick-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
}

.quick-contact-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.quick-contact-btn.directions {
  background: var(--primary);
  color: var(--white);
}

.quick-contact-btn.directions:hover {
  background: var(