/* ===== GO INTERCITY — Dark Navy Theme ===== */

/* Override Tailwind Preflight for dark theme */
html, body { background-color: #07101E !important; color: #ffffff !important; }

:root {
  --bg:          #07101E;
  --bg-section:  #090F1F;
  --bg-alt:      #0C1829;
  --bg-card:     #0E1F38;
  --bg-card2:    #102244;
  --orange:      #F97316;
  --orange-dark: #EA6A0B;
  --green:       #22C55E;
  --green-dark:  #16A34A;
  --white:       #FFFFFF;
  --text-sub:    rgba(255,255,255,0.62);
  --text-muted:  rgba(255,255,255,0.38);
  --border:      rgba(255,255,255,0.07);
  --border-med:  rgba(255,255,255,0.12);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.55);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  all 0.38s cubic-bezier(0.25,0.46,0.45,0.94);

  /* Backwards-compat aliases for shared components */
  --primary:    #07101E;
  --secondary:  #0C1829;
  --accent:     #F97316;
  --highlight:  #22C55E;
  --bg-light:   #0E1F38;
  --text-light: rgba(255,255,255,0.62);
}

/* ===== Reset ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  font-family: 'Inter','Segoe UI',sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--orange); color: #fff; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }

/* ===== Utility ===== */
.text-orange   { color: var(--orange) !important; }
.text-green    { color: var(--green)  !important; }
.fw-900        { font-weight: 900; }
.text-center   { text-align: center; }

.container-xl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 480px) { .container-xl { padding: 0 14px; } }

/* ===== Loading Screen ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.loading-screen.hide { opacity: 0; visibility: hidden; }
.loader {
  width: 46px; height: 46px;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
.loading-text { color: var(--text-sub); font-size: 0.85rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Page Transition ===== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.77,0,0.18,1);
  pointer-events: none;
}
.page-transition.active { transform: translateY(0); }

/* ===== Mobile Menu ===== */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.mobile-overlay.show { opacity:1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 80vw); height: 100vh;
  background: #050D1D;
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 90px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.46s cubic-bezier(0.77,0,0.18,1);
}
.mobile-menu.open { right: 0; }

.mobile-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
}
.mobile-link:hover { color: var(--orange); padding-left: 10px; }

.mobile-menu-cta { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(34,197,94,0.32);
}
.btn-green:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 28px rgba(34,197,94,0.42);
  transform: translateY(-2px);
  color: #fff;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 18px rgba(249,115,22,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 28px rgba(249,115,22,0.45);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--border-med);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(249,115,22,0.08);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1da851;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transform: translateY(-2px);
  color: #fff;
}
.btn-sm { padding: 9px 20px; font-size: 0.82rem; border-radius: var(--radius-sm); }
/* Backwards-compat alias — inner pages use btn-primary, btn-dark */
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 18px rgba(249,115,22,0.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); color: #fff; }
.btn-dark { background: #0E1F38; color: #fff; border: 1px solid var(--border-med); }
.btn-dark:hover { background: #102244; transform: translateY(-2px); color: #fff; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(6,12,27,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 60px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: clamp(0.52rem, 1.2vw, 0.6rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  margin-top: 1px;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 992px) {
  .desktop-nav { display: flex !important; }
  .hamburger  { display: none !important; }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 4px 0;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.nav-active { color: var(--white); }
.nav-link:hover::after,
.nav-link.nav-active::after { width: 100%; }

/* Hamburger */
.hamburger {
  width: 26px; height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: #fff;
  position: absolute;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; width: 70%; }
.hamburger span:nth-child(3) { top: 16px; }
.hamburger.active span:nth-child(1) { top: 8px; transform: rotate(45deg); background: var(--orange); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { top: 8px; transform: rotate(-45deg); background: var(--orange); }

/* ===== Hero Section ===== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #050C1A;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(15,40,80,0.7) 0%, transparent 65%),
    linear-gradient(175deg, #04090F 0%, #071028 45%, #0B1830 100%);
  z-index: 0;
}

.hero-cityscape-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(249,115,22,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 100%);
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%);
  animation: glow-pulse 5s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 65%);
  animation: glow-pulse 7s ease-in-out infinite reverse;
}
@keyframes glow-pulse {
  0%,100% { opacity:0.6; transform:scale(1); }
  50%      { opacity:1;   transform:scale(1.08); }
}

.hero-content-wrap {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 120px;
  padding-bottom: 160px;
}
@media (max-height: 700px) {
  .hero-content-wrap { padding-top: 100px; padding-bottom: 120px; }
}

.hero-text { max-width: 540px; }

.hero-heading {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.22;
  color: #fff;
  letter-spacing: -0.03em;
}

/* Hero car display */
.hero-car-area { flex-shrink: 0; }

.hero-car-display {
  position: relative;
  width: clamp(260px, 28vw, 340px);
  height: clamp(180px, 20vw, 240px);
}

@media (max-width: 900px) {
  .hero-car-area { display: none; }
  .hero-content-wrap { padding-bottom: 200px; }
}

.hero-car-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-car-badge img {
  height: 28px; width: auto;
  border-radius: 4px;
}
.hero-car-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
}

.hero-car-visual {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  text-align: center;
  font-size: 9rem;
  color: rgba(255,255,255,0.92);
  filter: drop-shadow(0 8px 30px rgba(249,115,22,0.3));
  animation: car-float 3s ease-in-out infinite;
}
.hero-car-visual img { max-width: 100%; height: auto; }
@keyframes car-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-car-road {
  position: absolute;
  bottom: 0; left: -20px; right: -20px;
  height: 28px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(249,115,22,0.25) 20%,
    rgba(249,115,22,0.35) 50%,
    rgba(249,115,22,0.25) 80%,
    transparent 100%);
  border-radius: 4px;
  filter: blur(6px);
}

/* ===== Booking Form Bar ===== */
.booking-bar {
  position: relative;
  z-index: 10;
  padding: 0 0 50px;
  margin-top: -80px;
}

.booking-form {
  display: flex;
  align-items: stretch;
  background: rgba(10,20,42,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.55);
  min-height: 60px;
}

.booking-field-group {
  display: flex;
  flex: 2;
  align-items: stretch;
}

.booking-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 18px;
  position: relative;
}

.booking-field-select { min-width: 180px; flex: 1; }

.booking-field-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}
.pickup-icon { color: var(--orange); }
.drop-icon   { color: var(--green);  }
.booking-field .fas.fa-calendar-alt,
.booking-field .fas.fa-car { color: var(--text-sub); }

.booking-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.875rem;
  font-family: inherit;
  padding: 18px 0;
  width: 100%;
  min-width: 0;
}
.booking-input::placeholder { color: var(--text-sub); }
.booking-input::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }

.booking-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.booking-select option { background: #0D1B35; color: #fff; }

.booking-field-arrow {
  font-size: 0.7rem;
  color: var(--text-muted);
  flex-shrink: 0;
  pointer-events: none;
}

/* Separators */
.booking-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 10px 0;
  flex-shrink: 0;
}
.booking-sep-v {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 8px 0;
  flex-shrink: 0;
}

.btn-book-now {
  background: var(--green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0 36px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-book-now:hover {
  background: var(--green-dark);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
  .booking-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .booking-field-group { flex-direction: column; }
  .booking-sep { width: 100%; height: 1px; margin: 0 16px; }
  .booking-sep-v { width: 100%; height: 1px; margin: 0 16px; }
  .booking-field-select { min-width: unset; }
  .btn-book-now { padding: 18px; text-align: center; }
}
@media (max-width: 480px) {
  .booking-bar { padding: 0 0 24px; margin-top: -40px; }
  .booking-field { padding: 0 14px; }
  .booking-input { font-size: 0.82rem; padding: 14px 0; }
  .btn-book-now { padding: 16px; font-size: 0.9rem; }
}

/* ===== Section Shared ===== */
.section-dark     { background: var(--bg-section); padding: 80px 0; }
.section-dark-alt { background: var(--bg-alt);     padding: 80px 0; }

.section-head { margin-bottom: 52px; }

.sec-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

/* ===== Our Services ===== */
.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .services-row { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.svc-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  background: var(--bg-card2);
}

.svc-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.2);
  transition: var(--transition);
}
.svc-card:hover .svc-icon-wrap {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(1.08);
}

.svc-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.svc-card p {
  font-size: 0.82rem;
  color: var(--text-sub);
}

/* ===== Choose Your Cab ===== */
.cabs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cabs-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .cabs-row { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (max-width: 420px) { .cabs-row { grid-template-columns: 1fr; gap: 16px; } }

.cab-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.cab-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.cab-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cab-img-mini    { background: linear-gradient(135deg, #1a2a4a 0%, #2a4070 100%); }
.cab-img-sedan   { background: linear-gradient(135deg, #1e1e2e 0%, #2d2d4a 100%); }
.cab-img-suv     { background: linear-gradient(135deg, #0f1e30 0%, #1a3050 100%); }
.cab-img-luxury  { background: linear-gradient(135deg, #1a1200 0%, #2a2010 100%); }

.cab-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(249,115,22,0.12) 0%, transparent 65%);
}

.cab-vehicle-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cab-vehicle-icon {
  font-size: 5rem;
  color: rgba(255,255,255,0.88);
  filter: drop-shadow(0 4px 16px rgba(249,115,22,0.25));
  display: block;
}
.cab-img-mini   .cab-vehicle-icon { color: rgba(200,225,255,0.9); }
.cab-img-sedan  .cab-vehicle-icon { color: rgba(200,210,230,0.9); }
.cab-img-suv    .cab-vehicle-icon { color: rgba(180,210,255,0.9); }
.cab-img-luxury .cab-vehicle-icon { color: rgba(255,215,100,0.9); }

.cab-info { padding: 16px 16px 20px; }

.cab-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.cab-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.cab-calc-label {
  font-size: 0.62rem;
  color: var(--green);
  line-height: 1.3;
  text-align: right;
  flex-shrink: 0;
}

.cab-desc {
  font-size: 0.78rem;
  color: var(--text-sub);
  margin-bottom: 10px;
}

.cab-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cab-seats {
  font-size: 0.78rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cab-from {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-select {
  display: block;
  width: 100%;
  padding: 9px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-select:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(34,197,94,0.35);
}

/* ===== Why Choose ===== */
.why-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 130px;
  padding: 8px;
  text-align: center;
}

.why-icon-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border-med);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}
.why-icon-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.why-item:hover .why-icon-ring {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,0.08);
  transform: scale(1.08);
}

.why-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-sub);
  line-height: 1.4;
}

/* ===== Testimonials ===== */
.testi-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.testi-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-med);
  background: var(--bg-card);
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-arrow:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,0.08);
}

.testi-viewport {
  flex: 1;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.testi-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  text-align: center;
}

.testi-stars-row {
  color: #FBBF24;
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testi-text {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testi-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .testi-wrapper { gap: 8px; }
  .testi-slide { padding: 20px 16px; }
  .testi-arrow { width: 36px; height: 36px; font-size: 0.75rem; }
  .testi-stars-row { font-size: 1.1rem; margin-bottom: 12px; }
  .testi-text { font-size: 0.88rem; }
}
@media (max-width: 420px) {
  .testi-slide { padding: 16px 12px; }
  .testi-text { font-size: 0.82rem; }
}

/* ===== Download App ===== */
.app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .app-row { grid-template-columns: 1fr; gap: 40px; }
  .app-right { display: flex; justify-content: center; }
}

.app-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 24px 0 6px;
}
.app-tagline {
  font-size: 0.95rem;
  color: var(--text-sub);
  margin-bottom: 28px;
}

.app-store-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
}
.store-btn:hover {
  background: rgba(249,115,22,0.1);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.store-btn-icon { font-size: 1.8rem; color: var(--white); }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-text span { font-size: 0.7rem; color: var(--text-sub); }
.store-btn-text strong { font-size: 0.95rem; font-weight: 700; }

/* Phone mockups */
.phones-display {
  position: relative;
  width: clamp(200px, 50vw, 240px);
  height: clamp(240px, 60vw, 300px);
}

.phone-mock {
  position: absolute;
  width: clamp(110px, 28vw, 140px);
  height: clamp(200px, 52vw, 260px);
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  background: #0A1528;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}
.phone-mock-back {
  left: 0; top: 0;
  transform: rotate(-6deg);
  z-index: 1;
}
.phone-mock-front {
  right: 0; bottom: 0;
  transform: rotate(4deg);
  z-index: 2;
}

.phone-notch {
  width: 50px; height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin: 10px auto 0;
}

.phone-screen-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: calc(100% - 28px);
}

.phone-app-ui {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.phone-app-logo img { width: 44px; height: auto; border-radius: 8px; }
.phone-app-label { font-size: 0.65rem; color: var(--text-sub); }
.phone-app-bar {
  width: 80%; height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-top: 4px;
}
.phone-app-bar-sm { width: 55%; height: 6px; }

.phone-car-icon { font-size: 2.2rem; color: var(--orange); }
.phone-book-label { font-size: 0.65rem; color: var(--text-sub); }
.phone-green-btn {
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  margin-top: 4px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-bar { flex-direction: column; text-align: center; gap: 16px; }
}

.footer-logo { text-decoration: none; }
.footer-logo .logo-img { height: 50px; }

/* ===== How It Works ===== */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  position: relative;
  transition: var(--transition);
}
@media (max-width: 420px) { .step-card { min-width: 100%; max-width: 100%; padding: 32px 20px; } }
.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
}
.step-num {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid var(--bg-section);
}
.section-dark-alt .step-num { border-color: var(--bg-alt); }
.step-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 20px;
  margin-top: 10px;
}
.step-card h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* ===== Stats ===== */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-card {
  text-align: center;
  flex: 1;
  min-width: 150px;
}
.stat-card h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 5px;
  line-height: 1;
}
.stat-card p {
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--orange);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question i {
  color: var(--orange);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  background: rgba(0,0,0,0.15);
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.footer-copy-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-policy-link {
  color: var(--text-sub);
  text-decoration: none;
  transition: var(--transition);
}
.footer-policy-link:hover { color: var(--orange); }

.footer-star-icon {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.12);
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 990;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: wa-float 3.5s ease-in-out infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  color: #fff;
}
@keyframes wa-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ===== Scroll Animations ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"]   { transform: translateY(36px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-left"]  { transform: translateX(36px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(-36px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-down"]  { transform: translateY(-36px); }
[data-aos="fade-down"].aos-animate  { transform: translateY(0); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate    { transform: scale(1); }

/* ===== Page Header (for inner pages) ===== */
.page-header {
  padding: 150px 0 70px;
  background: linear-gradient(160deg, #050C1A 0%, #0B1830 100%);
  position: relative;
  overflow: hidden;
}
.page-header .page-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  z-index: 0;
}
.page-header .content { position: relative; z-index: 1; }
.page-header h1 { color:#fff; font-size:clamp(1.8rem,3.5vw,3rem); font-weight:800; }
.page-header p  { color:var(--text-sub); font-size:1rem; max-width:580px; margin-top:10px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Section Padding (inner pages) ===== */
.section-padding { padding: 80px 0; }

/* ===== Form Inputs (contact page etc.) ===== */
.form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-med);
  background: var(--bg-card);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 110px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 6px;
}

/* ===== Cards (inner pages) ===== */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: #fff; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-card p  { font-size: 0.88rem; color: var(--text-sub); line-height: 1.7; margin-bottom: 18px; }
.service-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; }

/* Package Cards */
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.package-image {
  height: 200px;
  background: linear-gradient(135deg, #0C1829 0%, #102244 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.package-image .icon { font-size: 3.5rem; color: rgba(255,255,255,0.12); }
.package-image .badge {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 12px; border-radius: 50px;
  background: var(--orange);
  color: #fff; font-size: 0.72rem; font-weight: 600;
}
.package-body { padding: 24px; flex:1; display:flex; flex-direction:column; }
.package-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.package-features { list-style: none; padding: 0; margin-bottom: 20px; flex:1; }
.package-features li {
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--text-sub);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.package-features li:last-child { border-bottom: none; }
.package-features li::before {
  content: '✓';
  color: var(--green); font-weight: 700; font-size: 0.8rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Pricing Cards */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.pricing-card.popular {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(249,115,22,0.15);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 20px; border-radius: 50px;
  background: var(--orange); color: #fff;
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.pricing-card .plan-name { font-size: 0.85rem; font-weight: 600; color: var(--text-sub); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.pricing-card .price span { font-size: 1rem; color: var(--text-sub); font-weight: 500; }
.pricing-card .description { color: var(--text-sub); font-size: 0.85rem; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.pricing-features { list-style: none; padding: 0; margin-bottom: 28px; flex:1; }
.pricing-features li {
  padding: 9px 0;
  font-size: 0.85rem; color: var(--text-sub);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(34,197,94,0.1); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.65rem;
}
.pricing-features li.disabled { opacity: 0.38; }
.pricing-features li.disabled .check { background: rgba(255,255,255,0.06); color: var(--text-muted); }

/* Counter */
.counter-item { text-align: center; }
.counter-number { font-size: 2.5rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.counter-label  { font-size: 0.85rem; color: var(--text-sub); font-weight: 500; }

/* Testimonial Cards (inner pages) */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.testimonial-stars { color: #FBBF24; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text  { font-size: 0.9rem; line-height: 1.7; color: var(--text-sub); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.testimonial-role { font-size: 0.75rem; color: var(--text-sub); }

/* Testimonial Dots */
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonial-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.15); cursor: pointer; border: none; transition: var(--transition);
}
.testimonial-dot.active { background: var(--orange); width: 28px; border-radius: 5px; }

/* FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(249,115,22,0.2); }
.faq-question {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--white);
  transition: var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.8rem; color: var(--orange); transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 22px; color: var(--text-sub); font-size: 0.9rem; line-height: 1.75;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 22px 18px; }

/* Section Tag */
.section-tag {
  display: inline-block;
  padding: 5px 16px; border-radius: 50px;
  background: rgba(249,115,22,0.1); color: var(--orange);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}

/* Section Title (inner pages, light mode override removed) */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em;
}
.section-subtitle { font-size: 1rem; color: var(--text-sub); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* Contact info cards */
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 26px; text-align: center;
  transition: var(--transition); height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.contact-info-card .icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.3rem; color: var(--orange); transition: var(--transition);
}
.contact-info-card:hover .icon-wrap { background: var(--orange); color: #fff; }
.contact-info-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.contact-info-card p  { font-size: 0.85rem; color: var(--text-sub); margin: 0; }

/* Map */
.map-placeholder { width: 100%; height: 380px; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 480px) { .map-placeholder { height: 220px; } }

/* About Image */
.about-image-wrap { border-radius: var(--radius-lg); overflow: hidden; }

/* Why Card (inner pages) */
.why-card {
  text-align: center; padding: 28px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: var(--transition); height: 100%;
}
.why-card:hover { box-shadow: var(--shadow-card); transform: translateY(-5px); }
.why-card .icon {
  width: 66px; height: 66px; border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: rgba(249,115,22,0.1); color: var(--orange); transition: var(--transition);
}
.why-card:hover .icon { background: var(--orange); color: #fff; transform: scale(1.1); }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p  { font-size: 0.85rem; color: var(--text-sub); line-height: 1.7; margin: 0; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #050C1A, #0B1830);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 70%);
  top: -200px; right: -200px;
}

/* Footer extended (inner pages) */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text-sub);
  padding: 70px 0 0;
}
.footer h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 22px; }
.footer p   { font-size: 0.85rem; line-height: 1.7; color: var(--text-sub); }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-sub); text-decoration: none;
  font-size: 0.85rem; transition: var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact li {
  display: flex; align-items: flex-start;
  gap: 10px; margin-bottom: 14px;
  font-size: 0.85rem; color: var(--text-sub);
}
.footer-contact li .icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0; margin-top: 50px;
}
.footer-bottom p { font-size: 0.8rem; }

/* ===== Fleet Card Enhanced ===== */
.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(249,115,22,0.3);
}
.fleet-card .fleet-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fleet-card .fleet-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}
.fleet-card .fleet-icon {
  font-size: 4.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.fleet-card:hover .fleet-icon { transform: scale(1.1) rotate(-3deg); }
.fleet-card .fleet-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fleet-card .fleet-badge.popular { background: var(--orange); color: #fff; }
.fleet-card .fleet-badge.basic { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.fleet-card .fleet-badge.premium { background: #2563EB; color: #fff; }
.fleet-card .fleet-badge.luxury { background: #D97706; color: #fff; }
.fleet-card .fleet-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fleet-card .fleet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}
.fleet-card .fleet-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}
.fleet-card .fleet-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}
.fleet-card .fleet-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.fleet-card .fleet-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.fleet-card .fleet-rating i { color: #FBBF24; font-size: 0.75rem; }
.fleet-card .fleet-rating span { color: var(--text-muted); font-size: 0.72rem; margin-left: 4px; }
.fleet-card .fleet-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  flex: 1;
}
.fleet-card .fleet-features li {
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.fleet-card .fleet-features li:last-child { border-bottom: none; }
.fleet-card .fleet-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fleet-card .btn-fleet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.fleet-card .btn-fleet:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) { .section-padding { padding: 60px 0; } }
@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .section-dark, .section-dark-alt { padding: 60px 0; }
  .booking-bar { padding: 0 0 36px; margin-top: -60px; }
  .fleet-card .fleet-img { height: 150px; }
  .fleet-card .fleet-icon { font-size: 3.5rem; }
}
@media (max-width: 480px) {
  .section-dark, .section-dark-alt { padding: 44px 0; }
  .section-head { margin-bottom: 32px; }
  .svc-card { padding: 24px 16px; }
  .svc-icon-wrap { width: 52px; height: 52px; font-size: 1.3rem; }
  .cab-info { padding: 12px 12px 16px; }
  .cab-img { height: 130px; }
  .cab-vehicle-icon { font-size: 4rem; }
  .why-icon-ring { width: 64px; height: 64px; font-size: 1.4rem; }
  .why-item { min-width: 100px; }
  .floating-whatsapp { width: 48px; height: 48px; font-size: 1.4rem; bottom: 16px; right: 16px; }
  .fleet-card .fleet-img { height: 130px; }
  .fleet-card .fleet-icon { font-size: 3rem; }
  .fleet-card .fleet-body { padding: 16px 16px 20px; }
}
@media (max-width: 420px) {
  .stats-row { gap: 20px; }
  .stat-card { min-width: 120px; }
  .why-item { min-width: 80px; }
  .why-icon-ring { width: 54px; height: 54px; font-size: 1.2rem; }
  .why-label { font-size: 0.72rem; }
  .mobile-menu { padding: 80px 24px 24px; }
  .mobile-link { font-size: 1rem; padding: 11px 0; }
  .page-header { padding: 120px 0 50px; }
  .page-header h1 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .page-header p { font-size: 0.85rem; }
}
