/* =========================================================================
   BHAGYASHREE EXPRESS CARGO - MODERN UI REDESIGN
   ========================================================================= */

:root {
  /* Modern Dark Theme */
  --bg-dark: #0A0D14;
  --bg-panel: linear-gradient(145deg, rgba(35, 42, 55, 0.8), rgba(20, 25, 34, 0.7));
  --bg-panel-hover: linear-gradient(145deg, rgba(42, 50, 65, 0.9), rgba(25, 30, 40, 0.8));
  
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  
  /* Vibrant Accents */
  --primary: #FF5E00;
  --primary-glow: rgba(255, 94, 0, 0.4);
  --primary-grad: linear-gradient(135deg, #FF7B00, #FF3D00);
  
  --secondary: #00E5FF;
  --secondary-glow: rgba(0, 229, 255, 0.3);
  --secondary-grad: linear-gradient(135deg, #00E5FF, #0077FF);
  
  --gold: #FFB300;
  
  /* Text */
  --text-main: #FFFFFF;
  --text-muted: #8F9BA8;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Effects */
  --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  --neon-shadow: 0 8px 30px var(--primary-glow);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: radial-gradient(circle at top center, #151A25 0%, var(--bg-dark) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background animated orbs */
body::before, body::after {
  content: ''; position: fixed; border-radius: 50%; filter: blur(140px); z-index: -1; pointer-events: none; opacity: 0.35;
}
body::before { width: 50vw; height: 50vh; background: var(--primary-glow); top: -20vh; right: -10vw; animation: drift 20s ease-in-out infinite alternate; }
body::after { width: 40vw; height: 40vh; background: rgba(0, 229, 255, 0.2); bottom: -15vh; left: -10vw; animation: drift 25s ease-in-out infinite alternate-reverse; }

@keyframes drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(8vw, 6vh); }
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 40px; left: 50%; transform: translate(-50%, 100px);
  background: rgba(255, 94, 0, 0.9); backdrop-filter: blur(20px);
  color: #fff; padding: 16px 32px; border-radius: 100px; font-weight: 600; font-family: var(--font-heading);
  z-index: 9999; opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--neon-shadow); text-align: center; font-size: 15px;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%); width: calc(100% - 48px); max-width: 1300px;
  background: rgba(10, 10, 14, 0.7); backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid var(--border); border-radius: 100px; height: 76px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 24px 0 16px; z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.nav-logo { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.nav-logo-icon { width: 48px; height: 48px; border-radius: 50%; object-fit: contain; background: #fff; padding: 4px; box-shadow: 0 0 15px rgba(255,255,255,0.1); }
.nav-brand { display: flex; flex-direction: column; justify-content: center; }
.nav-brand-name { font-family: var(--font-heading); font-size: 18px; font-weight: 800; letter-spacing: 1.5px; color: #fff; line-height: 1.1; text-transform: uppercase; }
.nav-brand-sub { font-size: 10px; font-weight: 600; color: var(--primary); letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 20px; list-style: none; margin: 0 16px; }
.nav-links a { font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: var(--text-muted); transition: 0.3s; position: relative; letter-spacing: 0.5px; white-space: nowrap; }
.nav-links a:hover { color: #fff; }
.nav-links a::after { content: ''; position: absolute; bottom: -8px; left: 50%; width: 0; height: 2px; background: var(--primary-grad); transition: 0.3s; transform: translateX(-50%); border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }

.nav-fuel-bar { display: flex; gap: 12px; align-items: center; }
.fuel-pill {
  display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 100px; padding: 6px 16px; backdrop-filter: blur(10px);
}
.fuel-pill .label { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.fuel-pill .price { font-size: 13px; font-weight: 800; color: var(--secondary); font-family: var(--font-heading); }

.nav-cta {
  background: var(--primary-grad); color: #fff; padding: 10px 24px; border-radius: 100px;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1.2px;
  transition: 0.3s; border: none; cursor: pointer; box-shadow: var(--neon-shadow); white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255, 94, 0, 0.6); }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; }
.hamburger span { width: 28px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

.mobile-nav {
  position: fixed; inset: 0; background: rgba(10,10,14,0.98); z-index: 999; backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateY(-100%); transition: 0.5s cubic-bezier(0.86, 0, 0.07, 1); opacity: 0;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a { font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.mobile-nav a:hover { color: var(--primary); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 160px 5% 120px; position: relative; text-align: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2); color: var(--secondary); padding: 8px 24px;
  border-radius: 100px; font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 32px; box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(48px, 9vw, 120px); font-weight: 900;
  line-height: 0.95; letter-spacing: -2px; text-transform: uppercase; color: #fff;
}
.hero h1 span {
  background: var(--primary-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block; filter: drop-shadow(0 0 40px var(--primary-glow));
}
.hero-sub {
  color: var(--text-muted); font-size: clamp(16px, 2vw, 20px); max-width: 650px; margin: 32px auto 0;
  font-weight: 400; line-height: 1.7;
}
.hero-btns { margin-top: 56px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary-grad); color: #fff; border: none; padding: 16px 36px;
  border-radius: 100px; font-family: var(--font-heading); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  cursor: pointer; transition: 0.3s; box-shadow: var(--neon-shadow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(255, 94, 0, 0.5); }
.btn-outline {
  background: rgba(255, 255, 255, 0.03); color: #fff; border: 1px solid var(--border-light);
  padding: 16px 36px; border-radius: 100px; font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: 0.3s; backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-3px); }

/* ─── FUEL PRICES (FLOATING BAR) ─── */
.fuel-section {
  max-width: 1200px; margin: -50px auto 0; position: relative; z-index: 10;
  background: rgba(15, 15, 20, 0.6); border: 1px solid var(--border); border-radius: 20px;
  padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  backdrop-filter: blur(30px); box-shadow: var(--glass-shadow); flex-wrap: wrap;
}
.fuel-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 14px; text-transform: uppercase;
  letter-spacing: 3px; color: #fff; display: flex; align-items: center; gap: 12px;
}
.fuel-title::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; box-shadow: 0 0 15px var(--secondary); }
.fuel-cards { display: flex; gap: 16px; flex: 1; justify-content: center; flex-wrap: wrap; }
.fuel-card {
  display: flex; align-items: center; gap: 12px; background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px; transition: 0.3s; flex: 1; min-width: 140px;
}
.fuel-card:hover { background: var(--bg-panel-hover); border-color: var(--border-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.fuel-icon { font-size: 24px; filter: grayscale(100%) brightness(200%); opacity: 0.6; }
.fuel-info { display: flex; flex-direction: column; }
.fname { font-size: 10px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.fprice { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: #fff; }
.fuel-controls { display: flex; align-items: center; gap: 16px; }
.fuel-city { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.fuel-dropdown {
  background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid var(--border);
  padding: 6px 24px 6px 12px; border-radius: 100px; font-family: var(--font-heading); font-size: 14px; font-weight: 600;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23ffffff' opacity='0.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; transition: 0.3s; outline: none;
  width: fit-content; max-width: 220px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
}
.fuel-dropdown:hover, .fuel-dropdown:focus { background-color: rgba(255, 255, 255, 0.1); border-color: var(--border-light); }
.fuel-dropdown option { background: var(--bg-dark); color: #fff; padding: 8px 10px; font-size: 14px; max-height: 240px; overflow-y: auto; scroll-behavior: smooth; }

/* ─── SECTIONS COMMON ─── */
.section { padding: 60px 5%; max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }
.section-label {
  color: var(--primary); font-family: var(--font-heading); font-size: 13px; font-weight: 800;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 16px;
}
.section-label::after { content: ''; height: 2px; width: 60px; background: var(--primary); opacity: 0.6; }
.section-title { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 32px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 12px; text-transform: uppercase; letter-spacing: -1px; }
.section-sub { color: var(--text-muted); font-size: 16px; max-width: 650px; margin-bottom: 40px; line-height: 1.6; }

/* ─── QUOTE CALCULATOR ─── */
.quote-card {
  background: var(--bg-panel); border: 1px solid var(--border); border-radius: 20px;
  padding: 24px; backdrop-filter: blur(24px); box-shadow: var(--glass-shadow); position: relative; overflow: hidden;
}
.quote-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--primary-grad); opacity: 0.5;
}
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.quote-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 12px; }
.form-label { font-family: var(--font-heading); font-size: 13px; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.form-input {
  background: rgba(0, 0, 0, 0.3); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 16px; font-family: var(--font-body); font-size: 14px; color: #fff; transition: 0.3s;
}
.form-input:focus { outline: none; border-color: var(--primary); background: rgba(255, 94, 0, 0.03); box-shadow: 0 0 0 4px rgba(255, 94, 0, 0.15); }
.form-input::placeholder { color: rgba(255, 255, 255, 0.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23ffffff' opacity='0.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 24px center; cursor: pointer; }
select.form-input option { background: var(--bg-dark); }

.autocomplete-list {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: rgba(15, 15, 20, 0.98);
  border: 1px solid var(--border-light); border-radius: 16px; max-height: 250px; overflow-y: auto;
  display: none; z-index: 100; backdrop-filter: blur(20px); box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.autocomplete-list.open { display: block; animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-15px); } to { opacity: 1; transform: translateY(0); } }
.ac-item { padding: 16px 24px; cursor: pointer; font-size: 15px; border-bottom: 1px solid var(--border); transition: 0.2s; color: #fff; }
.ac-item:hover { background: rgba(255, 94, 0, 0.1); color: var(--primary); padding-left: 32px; }

.truck-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.truck-btn {
  background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px;
  padding: 12px 16px; cursor: pointer; transition: 0.3s; text-align: center; flex: 1; min-width: 120px;
}
.truck-btn:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-3px); }
.truck-btn.selected { background: rgba(255, 94, 0, 0.1); border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary); }
.truck-size { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 6px; line-height: 1; }
.truck-payload { font-size: 13px; color: var(--text-muted); font-weight: 500; }

.cargo-types { display: flex; flex-wrap: wrap; gap: 12px; }
.cargo-chip {
  padding: 12px 24px; border-radius: 100px; background: var(--bg-panel); border: 1px solid var(--border);
  font-family: var(--font-heading); font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; color: var(--text-muted);
}
.cargo-chip:hover { border-color: rgba(255,255,255,0.3); color: #fff; transform: translateY(-2px); }
.cargo-chip.selected { background: #fff; border-color: #fff; color: #000; font-weight: 800; box-shadow: 0 5px 15px rgba(255,255,255,0.2); }

.quote-btn {
  background: var(--primary-grad); color: #fff; border: none; padding: 14px 28px; border-radius: 16px;
  font-family: var(--font-heading); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px;
  cursor: pointer; width: 100%; margin-top: 24px; transition: 0.3s; box-shadow: var(--neon-shadow);
}
.quote-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(255, 94, 0, 0.5); }

.quote-result { display: none; margin-top: 24px; padding: 24px; background: rgba(0, 229, 255, 0.03); border: 1px solid rgba(0, 229, 255, 0.2); border-radius: 24px; }
.quote-result.show { display: block; animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.result-card { background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; }
.r-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.r-value { font-family: var(--font-heading); font-size: 24px; font-weight: 900; color: #fff; line-height: 1; }

.result-total { text-align: center; margin-bottom: 32px; }
.result-highlight { font-family: var(--font-heading); font-size: 48px; font-weight: 900; background: var(--secondary-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.4)); margin-top: 8px; }

.result-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.book-btn { background: #fff; color: #000; border: none; padding: 14px 28px; border-radius: 100px; font-family: var(--font-heading); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; box-shadow: 0 10px 30px rgba(255,255,255,0.2); }
.book-btn:hover { background: #E0E0E0; transform: translateY(-3px); }
.wa-btn { background: #25D366; color: #fff; border: none; padding: 14px 28px; border-radius: 100px; font-family: var(--font-heading); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; display: flex; align-items: center; gap: 12px; transition: 0.3s; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.wa-btn:hover { transform: translateY(-3px); background: #20BA56; box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(15px); z-index: 2000; align-items: center; justify-content: center; }
.modal-box { background: var(--bg-dark); border: 1px solid var(--border-light); padding: 56px; border-radius: 40px; max-width: 500px; width: 90%; box-shadow: 0 30px 100px rgba(0,0,0,0.8); position: relative; overflow: hidden; }
.modal-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary-grad); }
.modal-box h3 { font-family: var(--font-heading); font-size: 36px; font-weight: 900; margin-bottom: 12px; color: #fff; line-height: 1.1; }
.btn-outline-dark { background: transparent; color: #fff; border: 1px solid var(--border-light); padding: 20px 48px; border-radius: 100px; font-family: var(--font-heading); font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; }
.btn-outline-dark:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

/* ─── FLEET ─── */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.fleet-card {
  background: var(--bg-panel); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); position: relative;
}
.fleet-card::after { content: ''; position: absolute; inset: 0; border: 2px solid transparent; border-radius: 12px; transition: 0.5s; pointer-events: none; }
.fleet-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.04); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.fleet-card:hover::after { border-color: rgba(255, 94, 0, 0.4); }
.fleet-card-top {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
  padding: 16px; display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--border);
}
.fleet-size-badge { font-family: var(--font-heading); font-size: 24px; font-weight: 900; line-height: 1; color: #fff; }
.fleet-mileage { background: rgba(255,255,255,0.1); color: #fff; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; border: 1px solid rgba(255,255,255,0.05); }
.fleet-card-body { padding: 16px; }
.fleet-name { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.fleet-specs { display: flex; flex-direction: column; gap: 10px; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.sk { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.sv { font-size: 13px; font-weight: 700; color: #fff; }
.fleet-rate {
  margin-top: 24px; background: rgba(255, 255, 255, 0.05); padding: 12px; border-radius: 12px;
  text-align: center; font-family: var(--font-heading); font-weight: 900; font-size: 16px; color: #fff; border: 1px solid var(--border);
}

/* ─── STATS ─── */
.stats-section { padding: 60px 5%; position: relative; z-index: 1; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 48px; font-weight: 900; background: var(--secondary-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 8px; filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.2)); }
.stat-label { color: #fff; font-family: var(--font-heading); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; }

/* ─── REVIEWS & QUERIES ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; margin-bottom: 40px; }
.review-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px; padding: 16px; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.review-card:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-6px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); border-color: var(--border-light); }
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; font-size: 14px; font-style: italic; }
.reviewer-name { font-family: var(--font-heading); font-weight: 800; color: #fff; font-size: 16px; margin-bottom: 4px; }
.reviewer-city { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.review-query-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review-form-card, .feedback-form-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px; padding: 24px; backdrop-filter: blur(10px); }
.review-form-card h3, .feedback-form-card h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 24px; letter-spacing: 1px; }

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; background: var(--bg-panel); border: 1px solid var(--border); position: relative; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); opacity: 0; transition: 0.4s; pointer-events: none; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-item:hover img { transform: scale(1.08); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--primary); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.contact-item:hover .contact-icon { background: var(--primary); color: #fff; transform: scale(1.1) rotate(5deg); border-color: var(--primary); box-shadow: var(--neon-shadow); }
.contact-item h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 500; }
.wa-contact-btn { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: #fff; padding: 10px 20px; border-radius: 100px; font-family: var(--font-heading); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-top: 16px; width: fit-content; transition: 0.3s; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2); }
.wa-contact-btn:hover { transform: translateY(-4px); background: #20BA56; box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); }

.owner-message-card { background: linear-gradient(135deg, rgba(255,94,0,0.08), transparent); border: 1px solid rgba(255,94,0,0.2); border-radius: 24px; padding: 24px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.owner-badge { display: inline-block; background: var(--primary); color: #fff; padding: 6px 16px; border-radius: 100px; font-family: var(--font-heading); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; width: fit-content; }
.owner-quote-icon { font-size: 100px; color: rgba(255,255,255,0.03); line-height: 1; position: absolute; top: 16px; right: 24px; font-family: serif; }
.owner-msg-text { color: #fff; line-height: 1.7; font-size: 16px; font-weight: 300; font-style: italic; margin-bottom: 24px; flex: 1; z-index: 1; }
.owner-sig { border-top: 1px solid var(--border-light); padding-top: 24px; z-index: 1; }
.owner-name { font-family: var(--font-heading); font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.owner-pos { font-size: 12px; color: var(--primary); text-transform: uppercase; letter-spacing: 3px; font-weight: 700; }
.success-msg{display:none;margin-top:16px;padding:12px;background:rgba(37,211,102,.1);border:1px solid rgba(37,211,102,.2);border-radius:12px;color:#25D366;font-size:13px;font-weight:600;}

/* ─── FOOTER ─── */
footer { background: #050507; padding: 24px 5% 12px; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 16px; }
.footer-brand { font-family: var(--font-heading); font-size: 14px; font-weight: 900; color: #fff; letter-spacing: 1px; margin-bottom: 8px; }
.footer-desc { font-size: 10px; line-height: 1.4; color: var(--text-muted); max-width: 400px; }
.footer-col h5 { color: #fff; font-family: var(--font-heading); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 4px; }
.footer-col a { color: var(--text-muted); font-size: 10px; font-weight: 500; transition: 0.3s; }
.footer-col a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom { max-width: 1400px; margin: 16px auto 0; padding-top: 12px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 500; }

.reveal { opacity: 0; transform: translateY(50px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── DRIVERS SLIDER ─── */
.driver-care-block { background: rgba(0, 229, 255, 0.03); border: 1px solid rgba(0, 229, 255, 0.15); border-radius: 16px; padding: 16px; display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.driver-care-icon { font-size: 24px; line-height: 1; }
.driver-care-text { color: #fff; line-height: 1.6; font-size: 14px; font-weight: 400; }
.driver-slider-wrap { position: relative; overflow: hidden; border-radius: 16px; }
.driver-slider { display: flex; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.driver-card { min-width: 100%; display: flex; align-items: center; gap: 24px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.driver-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); box-shadow: 0 10px 30px rgba(255,94,0,0.2); }
.driver-avatar-placeholder { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.driver-name { font-family: var(--font-heading); font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.driver-meta { font-size: 11px; color: var(--primary); letter-spacing: 3px; text-transform: uppercase; font-weight: 800; margin-bottom: 8px; }
.driver-quote { color: var(--text-muted); font-style: italic; line-height: 1.6; font-size: 14px; }
.driver-slider-dots { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border-light); border: none; cursor: pointer; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.slider-dot.active { background: var(--primary); transform: scale(1.6); box-shadow: 0 0 10px var(--primary-glow); }
.driver-slider-nav { display: flex; justify-content: center; gap: 16px; margin-top: 16px; }
.slider-btn { background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 16px; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.1); box-shadow: var(--neon-shadow); }

/* RESPONSIVE */
@media(max-width: 1024px) {
  nav { padding: 0 16px; }
  .nav-links, .nav-fuel-bar, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .driver-card { flex-direction: column; text-align: center; gap: 40px; padding: 40px; }
}
@media(max-width: 768px) {
  .hero h1 { font-size: 56px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .quote-grid, .result-grid, .contact-grid, .form-row, .review-query-row { grid-template-columns: 1fr; }
  .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
  .fuel-section { flex-direction: column; align-items: stretch; padding: 24px; }
  .fuel-cards { flex-direction: column; }
  .owner-message-card, .review-form-card, .feedback-form-card { padding: 32px; }
  .quote-card { padding: 32px 24px; }
}
