/* ============================================
   Pahadi Car Rental — Anti-Gravity Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --bg-deep:       #0f172a;
  --bg-matte:      #020617;
  --primary:       #38bdf8;
  --primary-glow:  rgba(56, 189, 248, .35);
  --accent-cyan:   #22d3ee;
  --accent-grad:   linear-gradient(135deg, #38bdf8, #22d3ee);
  --whatsapp:      #25D366;
  --white:         #f8fafc;
  --text-muted:    #94a3b8;
  --glass-bg:      rgba(15, 23, 42, .55);
  --glass-border:  rgba(56, 189, 248, .18);
  --glass-shadow:  0 8px 32px rgba(0, 0, 0, .45);
  --radius:        16px;
  --radius-sm:     10px;
  --transition:    .35s cubic-bezier(.25, .46, .45, .94);
  --font-heading:  'Outfit', sans-serif;
  --font-body:     'Outfit', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Utility ---------- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 110px 0; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 60px;
  font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--bg-deep);
  background: var(--accent-grad);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 24px var(--primary-glow);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: var(--accent-grad);
  filter: blur(14px);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px var(--primary-glow);
}
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-outline:hover {
  background: rgba(56, 189, 248, .1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 24px var(--primary-glow);
}

/* ---------- Glass Card ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

/* ---------- Floating Keyframes ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 12px var(--primary-glow); }
  50% { box-shadow: 0 0 28px var(--primary-glow), 0 0 56px rgba(56, 189, 248, .15); }
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(2, 6, 23, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--primary); font-weight: 400; }
.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-grad);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); background: var(--primary); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); background: var(--primary); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(56, 189, 248, .08), transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(34, 211, 238, .06), transparent 50%),
              var(--bg-deep);
}
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .3;
}
.hero-bg-orbs .orb-1 { width: 450px; height: 450px; background: var(--primary); top: -10%; left: -5%; }
.hero-bg-orbs .orb-2 { width: 350px; height: 350px; background: var(--accent-cyan); bottom: 5%; right: 2%; }
.hero-bg-orbs .orb-3 { width: 250px; height: 250px; background: #6366f1; top: 40%; left: 55%; opacity: .15; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 60px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: .9rem;
  font-weight: 500;
  font-family: var(--font-heading);
  background: rgba(56, 189, 248, .1);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: .5px;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-text h1 .highlight {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-stat span {
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 400;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper img {
  max-width: 600px;
  width: 100%;
  animation: floatSlow 7s ease-in-out infinite;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,.6));
}

/* Floating Booking Card */
.hero-booking-card {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 320px;
  padding: 32px 28px;
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}
.hero-booking-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.5px;
}
.hero-booking-card input,
.hero-booking-card select {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, .7);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: var(--transition);
}
.hero-booking-card input::placeholder { color: #64748b; }
.hero-booking-card input:focus,
.hero-booking-card select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
  background: rgba(15, 23, 42, .9);
}
.hero-booking-card .btn-primary {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--bg-matte);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 32px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.trust-icon {
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, .08);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  flex-shrink: 0;
  color: var(--primary);
}
.trust-text {
  font-size: .95rem;
  color: var(--text-muted);
  white-space: nowrap;
  line-height: 1.4;
}
.trust-text strong {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-image:hover img { transform: scale(1.05); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  pointer-events: none;
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.about-text h2 span { color: var(--primary); }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.1rem;
  font-weight: 300;
}
.about-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.about-card {
  padding: 24px;
  flex: 1;
  min-width: 160px;
  text-align: center;
  animation: floatSlow 5s ease-in-out infinite;
}
.about-card:nth-child(2) { animation-delay: .8s; }
.about-card:nth-child(3) { animation-delay: 1.6s; }
.about-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.about-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.about-card p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.service-card {
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: var(--accent-grad);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(56, 189, 248, .12), var(--glass-shadow);
  border-color: rgba(56, 189, 248, .35);
}
.service-card:hover::before { opacity: 1; width: 100%; }
.service-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: rgba(56, 189, 248, .08);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.service-card:hover .icon {
  background: rgba(56, 189, 248, .15);
  box-shadow: 0 0 32px var(--primary-glow);
  transform: scale(1.1);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
}

/* ============================================
   OUR FLEET
   ============================================ */
.fleet-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.fleet-tab {
  padding: 12px 32px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.fleet-tab:hover {
  border-color: var(--primary);
  color: var(--white);
  background: rgba(56, 189, 248, .08);
}
.fleet-tab.active {
  background: var(--accent-grad);
  color: var(--bg-deep);
  border-color: transparent;
  box-shadow: 0 0 24px var(--primary-glow);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.fleet-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.fleet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0;
  transition: var(--transition);
}
.fleet-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 60px rgba(56, 189, 248, .15), var(--glass-shadow);
  border-color: rgba(56, 189, 248, .4);
}
.fleet-card:hover::before { opacity: 1; }

.fleet-card.hidden {
  opacity: 0;
  transform: scale(.9);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.fleet-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, .06),  transparent);
}
.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.fleet-card:hover .fleet-card-image img {
  transform: scale(1.08);
}
.fleet-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .8rem;
  border-radius: 50px;
  background: rgba(15, 23, 42, .8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--primary);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.fleet-badge.premium {
  background: linear-gradient(135deg, rgba(251, 191, 36, .2), rgba(245, 158, 11, .15));
  border-color: rgba(251, 191, 36, .3);
  color: #fbbf24;
}

.fleet-card-body {
  padding: 28px;
}
.fleet-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.fleet-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.fleet-specs span {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  background: rgba(56, 189, 248, .06);
  border: 1px solid rgba(56, 189, 248, .1);
  border-radius: 8px;
}
.fleet-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, .1);
}
.fleet-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fleet-price small {
  font-size: .8rem;
  font-weight: 500;
  -webkit-text-fill-color: var(--text-muted);
}
.fleet-book-btn {
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--accent-grad);
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
  border: none;
}
.fleet-book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px var(--primary-glow);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid var(--glass-border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  pointer-events: none;
}
.gallery-item:hover img {
  transform: scale(1.12);
}
.gallery-item:hover::after {
  border-color: var(--primary);
  box-shadow: inset 0 0 40px rgba(56, 189, 248, .15), 0 0 24px var(--primary-glow);
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, .8) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
  font-weight: 300;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(56, 189, 248, .1);
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
  color: var(--primary);
}
.contact-detail div span {
  display: block;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-detail div strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, .6);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #64748b; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
  background: rgba(15, 23, 42, .9);
}
.contact-form {
  padding: 40px;
}
.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  padding: 16px;
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-matte);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.footer-brand h3 span { color: var(--primary); font-weight: 400; }
.footer-brand p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 320px;
  font-weight: 300;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); transform: translateX(4px); }
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, .1);
  color: var(--text-muted);
  font-size: .9rem;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  animation: wa-pulse 2s ease-in-out infinite;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .6);
}
.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */

/* TABLET (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 140px; gap: 40px; }
  .hero-text p { margin: 0 auto 40px; }
  .hero-stats { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-image-wrapper { margin-top: 20px; flex-direction: column-reverse; align-items: center; width: 100%; }
  .hero-image-wrapper img { max-width: 500px; width: 100%; object-fit: contain; }
  .hero-booking-card { 
    position: relative; 
    right: 0; 
    bottom: 0; 
    margin: 30px auto 0; 
    width: 100%; 
    max-width: 360px; 
    transform: none; 
  }
  
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* MOBILE PRO (max-width: 768px) */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, .98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--glass-border);
    animation: fadeInUp .3s ease;
  }
  .nav-hamburger { display: flex; }
  
  .hero-text h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); line-height: 1.15; }
  .hero-stats { flex-direction: row; gap: 16px; justify-content: space-around; width: 100%; }
  .hero-stat h3 { font-size: 1.5rem; }
  .hero-stat span { font-size: 0.8rem; }
  
  /* Trust Strip Scrollable */
  .trust-strip { padding: 24px 0; }
  .trust-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px; /* Scrollbar space */
    -webkit-overflow-scrolling: touch;
    gap: 16px;
  }
  .trust-inner::-webkit-scrollbar { height: 4px; }
  .trust-inner::-webkit-scrollbar-track { background: transparent; }
  .trust-inner::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 4px; }
  .trust-item {
    scroll-snap-align: center;
    flex: 0 0 65%; /* Show part of next item to hint scrolling */
  }

  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .footer-col a { justify-content: center; }
  .footer-col a:hover { transform: translateY(-2px); padding-left: 0; }
}

/* SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {
  .section-pad { padding: 80px 0; }
  .hero-booking-card { width: 100%; padding: 24px 20px; }
  
  .about-cards { flex-direction: column; gap: 16px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-cta-group .btn-primary, .hero-cta-group .btn-outline { width: 100%; }
  
  .fleet-tabs { gap: 10px; margin-bottom: 40px; }
  .fleet-tab { padding: 10px 24px; font-size: .9rem; flex: 1 1 40%; text-align: center; }
  
  .trust-item { flex: 0 0 85%; }
  
  .contact-form { padding: 24px 20px; }
  .form-group input, .form-group textarea { padding: 14px 16px; }
  
  .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
