/* ============================================================
   CozyCar Rental – style.css
   Premium Luxury Car Rental Website
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg: #f8f7f5;
  --bg2: #ffffff;
  --surface: #ffffff;
  --border: #e8e4df;
  --text: #1a1a1a;
  --text2: #5a5a5a;
  --text3: #9a9a9a;
  --accent: #d4af37;
  --accent2: #e9c664;
  --accent-light: #fdfbf7;
  --accent-glow: rgba(212, 175, 55, 0.18);
  --gold: #c59b27;
  --dark-nav: rgba(255, 255, 255, 0.95);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
  --font-alt: "Montserrat", sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #0f0e0d;
  --bg2: #181614;
  --surface: #1e1c1a;
  --border: #2e2c2a;
  --text: #f0ece6;
  --text2: #b0a898;
  --text3: #706860;
  --dark-nav: rgba(15, 14, 13, 0.96);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
  --accent-light: rgba(212, 175, 55, 0.12);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition:
    background var(--transition),
    color var(--transition);
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
  font-size: 0.9rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237c5cbf' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea {
  resize: vertical;
}

/* ---- Scroll Progress ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---- Loading Screen ---- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0f0e0d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  text-align: center;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #f0ece6;
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
}
.loader-logo span {
  color: var(--accent2);
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 99px;
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.loader-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---- Container ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-alt);
  letter-spacing: 0.02em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
  background: var(--accent2);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary.w-full {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-alt);
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ---- Navbar ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: var(--dark-nav);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo {
  color: var(--text);
}
.nav-logo span {
  color: var(--accent2);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition);
  font-family: var(--font-alt);
  letter-spacing: 0.03em;
}
#navbar.scrolled .nav-link {
  color: var(--text2);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
  color: var(--accent);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.dark-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.85rem;
}
#navbar.scrolled .dark-toggle {
  border-color: var(--border);
  color: var(--text2);
}
.dark-toggle:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-book {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-alt);
  transition: all var(--transition);
}
.btn-book:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: all 0.3s ease;
}
#navbar.scrolled .hamburger span {
  background: var(--text);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1476304884326-cd2c88572c5f?w=1800&q=80")
    center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 1.5rem 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 8, 6, 0.82) 0%,
    rgba(20, 14, 10, 0.7) 60%,
    rgba(30, 18, 12, 0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  animation: heroFadeIn 1s ease 0.5s both;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-tagline {
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.8s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.4rem;
  min-height: 1.3em;
}
.hero-title .cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent2);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.2s both;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.4s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.6s both;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.stat span:last-of-type {
  font-size: 1.5rem;
  color: var(--gold);
}
.stat p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ---- Booking Card ---- */
.booking-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.5rem;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.booking-title {
  font-family: var(--font-alt);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.booking-title i {
  color: var(--accent2);
}
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.booking-form label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-alt);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.booking-form label i {
  color: var(--accent2);
  font-size: 0.7rem;
}
.booking-form input,
.booking-form select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px rgba(124, 92, 191, 0.25);
  background: rgba(255, 255, 255, 0.15);
}
.booking-form select option {
  color: #1a1a1a;
  background: #fff;
}
.btn-book-form {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-alt);
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}
.btn-book-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(124, 92, 191, 0.4);
}
.btn-book-form::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-book-form:hover::after {
  transform: translateX(100%);
}

/* ---- Section Shared ---- */
.section-pre {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--accent);
  font-style: italic;
}
.section-sub {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ---- Fleet ---- */
.fleet-section {
  padding: 100px 0;
  background: var(--bg);
}
.fleet-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.fleet-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  font-size: 0.83rem;
  font-weight: 600;
  font-family: var(--font-alt);
  color: var(--text2);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.fleet-search {
  position: relative;
  min-width: 220px;
}
.fleet-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  font-size: 0.85rem;
}
.fleet-search input {
  padding-left: 2.5rem;
  border-radius: 99px;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.car-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.car-card.hidden {
  display: none;
}

.car-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.car-card:hover .car-img-wrap img {
  transform: scale(1.05);
}
.car-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-alt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.car-badge.economy {
  background: linear-gradient(135deg, #3a9e6e, #2ecc71);
}
.car-badge.suv {
  background: linear-gradient(135deg, #2c73d2, #4a9aff);
}
.car-badge.premium {
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
}
.car-badge.van {
  background: linear-gradient(135deg, #c9a84c, #f0c060);
}

.car-info {
  padding: 1.4rem;
}
.car-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.car-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.car-specs span {
  font-size: 0.8rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-alt);
}
.car-specs i {
  color: var(--accent);
  font-size: 0.7rem;
}
.car-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.car-rating i {
  color: var(--gold);
  font-size: 0.8rem;
}
.car-rating span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
  margin-left: 0.2rem;
}
.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.car-price .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.car-price .per {
  font-size: 0.78rem;
  color: var(--text3);
  margin-left: 0.2rem;
}
.car-actions {
  display: flex;
  gap: 0.5rem;
}
.btn-view,
.btn-rent {
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-alt);
  transition: all var(--transition);
}
.btn-view {
  border: 1.5px solid var(--border);
  color: var(--text2);
}
.btn-view:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-rent {
  background: var(--accent);
  color: #fff;
}
.btn-rent:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--text3);
  font-size: 1rem;
}

/* ---- Car Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.5);
}
.modal-img-wrap {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-img-wrap .car-badge {
  top: 1.2rem;
  left: 1.2rem;
  position: absolute;
}
.modal-body {
  padding: 2rem;
}
.modal-body h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.modal-desc {
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.93rem;
}
.modal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-alt);
}
.feature-tag i {
  font-size: 0.7rem;
}
.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.spec-item {
  text-align: center;
}
.spec-item span {
  font-size: 0.72rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-alt);
  display: block;
  margin-bottom: 0.3rem;
}
.spec-item strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
}

/* ---- Testimonials ---- */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg2);
}
.testimonials-swiper {
  padding-bottom: 3rem !important;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin: 0.5rem;
  transition: box-shadow var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
}
.testi-stars {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}
.testi-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}
.testi-text {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-light);
}
.testi-author strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text3);
  font-family: var(--font-alt);
}
.swiper-pagination-bullet {
  background: var(--border) !important;
}
.swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

/* ---- FAQ ---- */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.faq-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.acc-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.acc-item.open {
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.acc-header span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.acc-icon {
  color: var(--accent);
  font-size: 0.8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.acc-item.open .acc-icon {
  transform: rotate(45deg);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 1.4rem;
}
.acc-item.open .acc-body {
  max-height: 300px;
  padding: 0 1.4rem 1.2rem;
}
.acc-body p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
}

/* ---- Contact ---- */
.contact-section {
  padding: 100px 0;
  background: var(--bg2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-item:hover .contact-icon {
  background: var(--accent);
  color: #fff;
}
.contact-item strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
.contact-item p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
}
.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.contact-socials a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.map-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 200px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap .form-group {
  margin-bottom: 1.2rem;
}
.contact-form-wrap label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 0.4rem;
  font-family: var(--font-alt);
}

/* ---- Footer ---- */
footer {
  background: #121110;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}
.footer-gradient-line {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--gold),
    var(--accent2)
  );
  margin-bottom: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  color: rgba(255, 255, 255, 0.95) !important;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.footer-col h4 {
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}
.footer-col ul li i {
  color: var(--accent);
  font-size: 0.75rem;
}
.footer-col ul li a,
.footer-col ul a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}
.footer-col ul li:hover,
.footer-col ul a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.footer-col > p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}
.newsletter-form input {
  background: transparent;
  border: none;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  flex: 1;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.newsletter-form input:focus {
  box-shadow: none;
}
.newsletter-form button {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 0 99px 99px 0;
  transition: background var(--transition);
}
.newsletter-form button:hover {
  background: var(--accent2);
}
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-bottom i {
  color: #e05252;
}

/* ---- Back to Top ---- */
#backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 18px var(--accent-glow);
}
#backTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backTop:hover {
  transform: translateY(-3px);
  background: var(--accent2);
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-family: var(--font-alt);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  z-index: 3000;
  transition: all 0.35s ease;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast i {
  color: #4ade80;
}
[data-theme="dark"] .toast {
  background: #2a2825;
}

/* ---- Form Groups (contact) ---- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-img {
    max-height: 260px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .booking-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.35s ease;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .nav-link {
    font-size: 1.2rem;
    color: var(--text2) !important;
  }
  .nav-link.active,
  .nav-link:hover {
    color: var(--accent) !important;
  }
  .hamburger {
    display: flex;
  }
  .btn-book {
    display: none;
  }

  .hero {
    padding: 90px 1.5rem 60px;
  }
  .hero-stats {
    gap: 1.5rem;
  }

  .cars-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .modal-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    justify-content: center;
  }
  .booking-card {
    padding: 1.5rem;
  }
  .modal-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- Scroll hidden state for filter ---- */
.car-card.hidden {
  display: none !important;
}

/* ---- Dark mode overrides ---- */
[data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
[data-theme="dark"] .booking-form input,
[data-theme="dark"] .booking-form select {
  color: #fff !important;
}

/* ---- Custom scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 99px;
}

/* ---- Why Choose Us Section ---- */
.features-section {
  padding: 100px 0;
  background: var(--bg2);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--bg);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: 0.3s;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.feature-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem auto;
  transition: 0.3s;
}
.feature-card:hover .feature-card-icon {
  background: var(--accent);
  color: #fff;
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ---- How It Works Section ---- */
.process-section {
  padding: 100px 0;
  background: var(--bg);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-sm);
}
.process-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
  padding: 0 1rem;
}

/* ---- 30+ Sections Extra Styles ---- */

/* Brands Partner */
.brands-section {
  padding: 40px 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}
.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text2);
  opacity: 0.5;
  transition: 0.3s;
}
.brand-logo:hover {
  opacity: 0.9;
  color: var(--accent);
}

/* About Us */
.about-section {
  padding: 100px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Services Highlight */
.services-section {
  padding: 100px 0;
  background: var(--bg2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
}

/* Fleet Highlight */
.fleet-highlight-section {
  padding: 100px 0;
  background: var(--bg);
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.highlight-content h2 {
  font-size: 2.5rem;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  color: var(--text);
}
.highlight-content p {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Pricing Packages */
.packages-section {
  padding: 100px 0;
  background: var(--bg2);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.package-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.package-card.featured {
  border-color: var(--accent);
}
.package-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent);
  color: #fff;
  padding: 4px 30px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}
.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2rem;
}
.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text2);
}

/* Safety Section */
.safety-section {
  padding: 100px 0;
  background: var(--bg);
}
.safety-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.safety-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 2rem;
}
.safety-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}
.safety-list li {
  background: var(--bg2);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.safety-list li i {
  color: var(--accent);
}

/* Loyalty Section */
.loyalty-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  text-align: center;
}
.loyalty-container {
  max-width: 700px;
  margin: 0 auto;
}
.loyalty-section h2 {
  color: #fff;
  font-size: 2.2rem;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}
.loyalty-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Media Section */
.media-section {
  padding: 40px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

/* Video Section */
.video-section {
  padding: 100px 0;
  background: var(--bg);
}
.video-wrapper {
  max-width: 850px;
  margin: 3rem auto 0 auto;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 4rem;
  cursor: pointer;
  transition: 0.3s;
}
.play-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  color: var(--accent);
  font-size: 4.5rem;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1200&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
}
.cta-container {
  max-width: 800px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 2.8rem;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

/* Requirements */
.requirements-section {
  padding: 100px 0;
  background: var(--bg2);
}
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.req-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.req-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.req-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.req-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: var(--bg);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.team-img-wrap {
  height: 280px;
  width: 100%;
  overflow: hidden;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info {
  padding: 1.5rem;
}
.team-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.team-info p {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* Coverage */
.coverage-section {
  padding: 100px 0;
  background: var(--bg2);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.city-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: 0.3s;
}
.city-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.city-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.city-card h3 {
  font-size: 1.1rem;
  color: var(--text);
}
