/* Pak Watan Wheels — Dark Premium UI */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #080c0a;
  --bg-elevated: #0f1512;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --green-dark: #0f3d2e;
  --green: #1a5c44;
  --green-mid: #2d7a5a;
  --green-bright: #34d399;
  --green-glow: rgba(52, 211, 153, 0.25);
  --green-glow-strong: rgba(52, 211, 153, 0.45);
  --red: #ef4444;
  --red-glow: rgba(239, 68, 68, 0.4);
  --text: #eef2f0;
  --text-muted: #8fa396;
  --text-dim: #5c6e64;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(52, 211, 153, 0.35);
  --glass: rgba(8, 12, 10, 0.75);
  --glass-light: rgba(15, 21, 18, 0.9);
  --shadow-glow: 0 0 40px rgba(52, 211, 153, 0.08);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --radius-sm: 12px;
  --font: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scroll Reveal ─── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.reveal { transform: translateY(50px); filter: blur(6px); }
.reveal-left { transform: translateX(-50px); filter: blur(4px); }
.reveal-right { transform: translateX(50px); filter: blur(4px); }
.reveal-scale { transform: scale(0.92); filter: blur(4px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
  filter: blur(0);
}

/* ─── Top Bar ─── */
.top-bar {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 0;
  font-size: 0.82rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .phone {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.top-bar .phone:hover { color: var(--green-bright); }

.top-bar .phone::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red-glow);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--red-glow); }
  50% { opacity: 0.6; transform: scale(1.4); box-shadow: 0 0 20px var(--red-glow); }
}

.social-icons { display: flex; gap: 10px; }

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.35s var(--ease);
}

.social-icons a svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: var(--white);
}

.social-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}

.social-ig:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-color: #dd2a7b;
  box-shadow: 0 8px 20px rgba(221, 42, 123, 0.35);
}

.social-tiktok:hover {
  background: #010101;
  border-color: #25f4ee;
  box-shadow: 0 8px 20px rgba(37, 244, 238, 0.2);
}

.footer-social-label {
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.footer-social {
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease);
}

.header:not(.scrolled) .nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.8);
}

.header:not(.scrolled) .nav a:not(.nav-cta):hover,
.header:not(.scrolled) .nav a:not(.nav-cta).active {
  color: var(--white);
}

.header:not(.scrolled) .nav-toggle span { background: var(--white); }

.header.scrolled {
  top: 0;
  background: var(--glass-light);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.header.scrolled .nav a:not(.nav-cta) { color: var(--text-muted); }
.header.scrolled .nav a:not(.nav-cta):hover,
.header.scrolled .nav a:not(.nav-cta).active { color: var(--green-bright); }

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo {
  display: inline-flex;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s var(--ease-spring);
}

.logo:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.logo img { height: 50px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.35s var(--ease);
  position: relative;
}

.nav a:hover { background: rgba(52, 211, 153, 0.08); }

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--green-bright));
  border-radius: 2px;
  animation: nav-underline 0.4s var(--ease);
}

@keyframes nav-underline {
  from { width: 0; opacity: 0; }
  to { width: 20px; opacity: 1; }
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright)) !important;
  color: var(--bg) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px var(--green-glow-strong) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(45, 122, 90, 0.25) 0%, transparent 50%),
              linear-gradient(180deg, #0a1210 0%, var(--bg) 100%);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(52, 211, 153, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(45, 122, 90, 0.1) 0%, transparent 50%);
  animation: mesh-shift 14s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(45, 122, 90, 0.3);
  top: 5%; right: 0%;
  animation: orb-drift 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(52, 211, 153, 0.15);
  bottom: 10%; right: 20%;
  animation: orb-drift 10s -4s ease-in-out infinite;
}

.hero-orb-3 {
  width: 250px; height: 250px;
  background: rgba(239, 68, 68, 0.1);
  top: 35%; left: 10%;
  animation: orb-drift 8s -2s ease-in-out infinite;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 25px) scale(0.9); }
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.04;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  animation: road-line 10s linear infinite;
}

.hero-lines::before { top: 28%; }
.hero-lines::after { top: 72%; animation-delay: -5s; }

@keyframes road-line {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { color: var(--text); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--green-bright);
  animation: fadeDown 0.9s var(--ease) both;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-glow);
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeDown 0.9s 0.1s var(--ease) both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--green-bright), #6ee7b7, var(--green-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeDown 0.9s 0.2s var(--ease) both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeDown 0.9s 0.3s var(--ease) both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeLeft 1.1s 0.4s var(--ease) both;
}

.hero-logo-stage {
  position: relative;
  width: min(400px, 88vw);
  height: min(400px, 88vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-plate {
  position: relative;
  z-index: 3;
  background: var(--white);
  padding: 28px 32px;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.1);
  animation: logo-float 6s ease-in-out infinite;
}

.hero-logo-img { width: 100%; max-width: 280px; }

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(52, 211, 153, 0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-ring-1 { width: 100%; height: 100%; animation: ring-pulse 5s ease-in-out infinite; }
.hero-ring-2 { width: 78%; height: 78%; border-color: rgba(52, 211, 153, 0.1); animation: ring-pulse 5s 0.8s ease-in-out infinite; }
.hero-ring-3 { width: 55%; height: 55%; animation: ring-spin 25s linear infinite; }

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(0.5deg); }
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(40px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(50px); filter: blur(8px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::after { transform: translateX(100%); }
.btn:hover { transform: translateY(-4px); }
.btn:active { transform: translateY(-1px); }

.btn-red {
  background: linear-gradient(135deg, #dc2626, var(--red));
  color: var(--white);
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-red:hover { box-shadow: 0 16px 48px var(--red-glow); }

.btn-green {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: var(--bg);
  box-shadow: 0 8px 32px var(--green-glow);
}

.btn-green:hover { box-shadow: 0 16px 48px var(--green-glow-strong); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--green-bright);
  background: rgba(52, 211, 153, 0.08);
  box-shadow: 0 0 30px var(--green-glow);
}

/* ─── Stats ─── */
.stats {
  margin-top: -70px;
  position: relative;
  z-index: 10;
  padding: 0 24px;
}

.stats-inner {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 32px;
}

.stat-item {
  text-align: center;
  padding: 12px;
  position: relative;
  transition: transform 0.4s var(--ease);
}

.stat-item:hover { transform: translateY(-4px); }

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-bright), var(--text));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span { color: var(--red); -webkit-text-fill-color: var(--red); }

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ─── Sections ─── */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-elevated); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 50px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ─── Features ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(52,211,153,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.feature-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(52,211,153,0.15), rgba(45,122,90,0.1));
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 8px 24px var(--green-glow);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ─── Monthly Plans ─── */
.monthly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.monthly-grid--center {
  grid-template-columns: repeat(3, 1fr);
  max-width: calc(75% + 13.5px);
  margin: 0 auto 40px;
}

.monthly-grid:last-of-type {
  margin-bottom: 40px;
}

.monthly-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 130px;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}

.monthly-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.monthly-card:hover::before { transform: scaleX(1); }

.monthly-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  background: var(--bg-card-hover);
}

.monthly-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.monthly-price {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-bright), #6ee7b7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.monthly-price span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  margin-left: 4px;
}

.monthly-cta {
  text-align: center;
}

/* ─── Fleet ─── */
.fleet-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 11px 24px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.filter-btn:hover {
  color: var(--green-bright);
  border-color: var(--border-hover);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: var(--bg);
  border-color: transparent;
  box-shadow: 0 6px 24px var(--green-glow);
  transform: scale(1.05);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.car-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.car-card.filtering-out {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

.car-card:hover {
  transform: translateY(-12px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.car-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.car-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,12,10,0.8) 100%);
  pointer-events: none;
}

.car-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.car-card:hover .car-img-wrap img { transform: scale(1.1); }

.car-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  background: rgba(8, 12, 10, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-hover);
  color: var(--green-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 2;
}

.car-price-tag {
  position: absolute;
  bottom: 16px; right: 16px;
  padding: 8px 16px;
  background: rgba(8, 12, 10, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 10px;
  z-index: 2;
}

.car-price-tag span { color: var(--green-bright); }

.car-card-body { padding: 24px; }

.car-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.price-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }

.price-table th, .price-table td { padding: 10px 12px; text-align: left; }

.price-table thead th {
  background: rgba(52, 211, 153, 0.06);
  color: var(--green-bright);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.price-table tbody tr:hover { background: rgba(52, 211, 153, 0.04); }
.price-table td { color: var(--text-muted); }

.car-card-footer { padding: 0 24px 24px; }

.car-book-btn {
  width: 100%;
  padding: 13px;
  background: transparent;
  border: 1.5px solid var(--border-hover);
  color: var(--green-bright);
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.car-book-btn:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: var(--bg);
  border-color: transparent;
  box-shadow: 0 8px 24px var(--green-glow);
  transform: translateY(-2px);
}

/* ─── Why Us ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}

.why-content p { color: var(--text-muted); margin-bottom: 28px; }

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease);
}

.why-list li:hover { padding-left: 8px; }
.why-list li:last-child { border-bottom: none; }

.why-check {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.why-list strong { color: var(--text); }

.why-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f4f4f4;
  transition: all 0.5s var(--ease);
}

.why-visual:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.why-visual img { width: 100%; height: 440px; object-fit: contain; object-position: center; transition: transform 0.7s var(--ease); }
.why-visual:hover img { transform: scale(1.05); }

.why-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,10,0.95) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.why-visual-overlay p {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-bright), var(--green-mid));
  transform: scaleY(0);
  transition: transform 0.4s var(--ease);
}

.service-card:hover::after { transform: scaleY(1); }

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateX(8px);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.service-num {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(52,211,153,0.2), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ─── Routes ─── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.route-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.35s var(--ease);
}

.route-chip:hover {
  border-color: var(--border-hover);
  background: rgba(52, 211, 153, 0.06);
  transform: translateY(-4px) translateX(4px);
  box-shadow: var(--shadow-glow);
}

.route-arrow {
  width: 40px; height: 40px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
}

.route-chip:hover .route-arrow {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: var(--bg);
  transform: rotate(-45deg);
}

.route-chip span:last-child {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

/* ─── CTA ─── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1a14 0%, var(--green-dark) 50%, #0a1210 100%);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(52,211,153,0.15) 0%, transparent 65%);
  top: -200px; right: -150px;
  animation: orb-drift 15s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(239,68,68,0.1) 0%, transparent 65%);
  bottom: -150px; left: -100px;
  animation: orb-drift 12s -5s ease-in-out infinite;
}

.cta-inner { position: relative; text-align: center; z-index: 1; }

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.1rem;
}

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
}

.faq-item.active {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--green-bright); }

.faq-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-bright);
  flex-shrink: 0;
  transition: all 0.4s var(--ease-spring);
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: var(--bg);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-answer-inner ul { margin-top: 10px; }
.faq-answer-inner li {
  padding: 5px 0 5px 20px;
  position: relative;
}

.faq-answer-inner li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-bright);
}

/* ─── Booking ─── */
.booking-section {
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(45,122,90,0.12) 0%, transparent 60%),
              var(--bg-elevated);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.booking-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}

.booking-info p { color: var(--text-muted); margin-bottom: 32px; }

.booking-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--text);
  font-weight: 500;
  transition: transform 0.3s var(--ease);
}

.booking-perks li:hover { transform: translateX(6px); }

.booking-perks li::before {
  content: '✓';
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.booking-form:focus-within {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 8px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.35s var(--ease);
}

.form-group input::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-bright);
  background: rgba(52, 211, 153, 0.05);
  box-shadow: 0 0 0 4px var(--green-glow);
}

.form-group select option { background: var(--bg-elevated); color: var(--text); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ─── Map ─── */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease);
}

.map-container:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.map-container iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(30%) contrast(1.1); }

/* ─── Footer ─── */
.footer {
  background: #050807;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-logo-wrap {
  display: inline-block;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.footer-logo-wrap img { height: 58px; }

.footer-brand p { font-size: 0.9rem; line-height: 1.9; max-width: 280px; }

.footer h4 {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer ul li { padding: 7px 0; font-size: 0.9rem; }

.footer a {
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
  display: inline-block;
}

.footer a:hover {
  color: var(--green-bright);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ─── Floating Buttons ─── */
.floating-actions {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.4s var(--ease-spring);
  animation: float-btn 3s ease-in-out infinite;
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}

.floating-btn:nth-child(2) { animation-delay: -1.5s; }

@keyframes float-btn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-btn:hover {
  transform: scale(1.15) translateY(-4px);
  animation: none;
}

.floating-call,
.floating-wa {
  background: linear-gradient(135deg, #128c7e, #25d366);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .monthly-grid { grid-template-columns: repeat(2, 1fr); }
  .monthly-grid--center {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header { top: 0; }
  .top-bar { display: none; }
  .hero { padding-top: 110px; min-height: auto; padding-bottom: 80px; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--glass-light);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-card);
  }
  .nav.open { display: flex; animation: slideDown 0.4s var(--ease); }
  .nav a { width: 100%; }
  .nav-toggle { display: flex; }
  .header .container { position: relative; }
  .stats { margin-top: -40px; }
  .stats-inner { padding: 28px 20px; grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2.2rem; }
  .features-grid, .cars-grid, .routes-grid { grid-template-columns: 1fr; }
  .monthly-grid, .monthly-grid--center { grid-template-columns: 1fr; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .booking-form { padding: 28px; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
