@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,500&display=swap');

:root {
  /* Sophisticated Midnight Navy & Champagne Gold Luxury Theme */
  --primary: #c5a880;          /* Muted Champagne Gold */
  --primary-dark: #b5945b;     /* Deep Gold */
  --secondary: #0f172a;        /* Midnight Navy (Trust & Luxury) */
  --dark: #1e293b;             /* Charcoal Slate */
  --dark2: #fafaf9;            /* Warm Ivory Background */
  --dark3: #f4f4f5;            /* Soft Cream Gray */
  --light: #ffffff;
  --gold: #b5945b;
  --green: #15803d;            /* Safe Forest Green */
  --gradient: linear-gradient(135deg, #0f172a, #1e293b);
  --gold-gradient: linear-gradient(135deg, #c5a880, #b5945b);
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.03);
  --shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #ffffff;
  color: #475569;
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
  max-width: 100vw;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Elegant Background Layout */
.hero, .section {
  position: relative;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(16px);
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo .brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.nav-logo .brand-sub {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #64748b;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 14.5px;
  color: #475569;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--secondary);
  border: 1px solid var(--primary);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: .3s;
}

.nav-cta:hover {
  background: var(--primary);
  color: var(--secondary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: .25s ease;
}

/* Navigation Overlay & Mobile Drawer Helpers */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 998;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.drawer-footer-item {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 60%, #f5f5f4 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 40%;
  width: 80%;
  height: 75%;
  background: url('../images/car.png') no-repeat center / contain;
  opacity: 0.22;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 50px;
  font-size: 12.5px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge svg {
  stroke: var(--primary-dark);
}

.hero h1 {
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--secondary);
  letter-spacing: -0.8px;
}

.hero h1 .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--primary-dark);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero p {
  font-size: 16.5px;
  color: #64748b;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 13px 32px;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 13px 32px;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  border-radius: 50px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--secondary);
  background: #fafaf9;
  transform: translateY(-1px);
}

.btn-secondary svg {
  stroke: var(--secondary);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  padding: 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.hero-card .car-icon {
  margin-bottom: 16px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 72px;
  background: none;
  border: none;
  overflow: visible;
  transition: all 0.3s ease;
}

.hero-card:hover .car-icon {
  background: none;
  transform: translateY(-2px);
}

.hero-card .car-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scaleX(-1);
  transition: transform 0.3s ease;
}

.hero-card:hover .car-icon img {
  transform: scaleX(-1) scale(1.05);
}

.hero-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary);
}

.hero-card p {
  color: #64748b;
  font-size: 13.5px;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e4e4e7;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary);
}

.stat-item .label {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
  font-weight: 500;
}

.floating-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--secondary);
  box-shadow: var(--shadow);
  z-index: 3;
}

.floating-badge svg {
  stroke: var(--primary-dark);
}

.floating-badge.b1 {
  top: 20px;
  right: -24px;
}

.floating-badge.b2 {
  bottom: 110px;
  left: -24px;
}

/* Sections */
.section {
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 50px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--secondary);
}

.section-header p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  font-size: 15.5px;
}

/* Services / Courses */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  background: rgba(15, 23, 42, 0.03);
  color: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: .25s ease;
}

.service-card:hover .icon {
  background: var(--secondary);
  color: var(--primary);
}

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

.service-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  flex-grow: 1;
}

.service-card .price {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 14px;
  background: rgba(21, 128, 61, 0.06);
  border: 1px solid rgba(21, 128, 61, 0.12);
  border-radius: 50px;
  color: var(--green);
  font-weight: 600;
  font-size: 12.5px;
}

/* Why Choose Us */
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.why-card .why-icon {
  width: 54px;
  height: 54px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 20px;
  transition: .25s ease;
}

.why-card:hover .why-icon {
  background: var(--secondary);
  color: var(--primary);
}

.why-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary);
}

.why-card p {
  color: #64748b;
  font-size: 13.5px;
}

/* Process Steps */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 10px;
  bottom: 10px;
  width: 1.5px;
  background: #e4e4e7;
}

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--secondary);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  z-index: 2;
}

.step-content {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  padding: 24px 28px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  transition: .25s ease;
}

.step:hover .step-content {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.step-content h3 {
  font-size: 17.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--secondary);
}

.step-content p {
  color: #64748b;
  font-size: 13.5px;
}

/* Testimonials — Premium Redesign */
.testimonials-section {
  background: var(--dark3) !important;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-section .section-header h2 {
  color: var(--secondary);
}

.testimonials-section .section-header p {
  color: #64748b;
}

.testimonials-section .section-tag {
  background: rgba(197, 168, 128, 0.15);
  border-color: rgba(197, 168, 128, 0.3);
}

/* Rating Overview Badge */
.rating-overview {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.big-rating {
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -1px;
}

.rating-stars-row {
  display: flex;
  gap: 3px;
}

.rating-count {
  color: #64748b;
  font-size: 12.5px;
  font-weight: 500;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 50px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.google-review-btn:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

/* Testimonial Slider Wrapper */
.testimonials-slider-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Testimonial Cards Track */
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

@media (max-width: 1050px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 700px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 100%;
  }
}

/* Google Badge on each card */
.tc-google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #4285F4;
  background: rgba(66,133,244,0.08);
  border: 1px solid rgba(66,133,244,0.2);
  border-radius: 20px;
  padding: 3px 9px 3px 5px;
  letter-spacing: 0.2px;
}

/* Slider Nav */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.rev-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #475569;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.rev-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.08);
}

.rev-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.rev-dot.active {
  background: var(--primary);
  width: 22px;
  border-radius: 4px;
}


.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Featured card */
.testimonial-card.featured-review {
  border-color: rgba(197, 168, 128, 0.4);
  background: rgba(197, 168, 128, 0.04);
}

.testimonial-card.featured-review:hover {
  border-color: var(--primary-dark);
  box-shadow: var(--shadow);
}

/* Card header */
.tc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.quote-icon {
  color: rgba(197, 168, 128, 0.4);
  flex-shrink: 0;
}

.tc-stars {
  display: flex;
  gap: 2px;
}

/* Quote */
.testimonial-card .quote {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
}

/* Card footer */
.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}

.testimonial-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.testimonial-card .author-info .name {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--secondary);
}

.testimonial-card .author-info .vehicle {
  color: #64748b;
  font-size: 11px;
}

/* Verified tag */
.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(21, 128, 61, 0.08);
  border: 1px solid rgba(21, 128, 61, 0.15);
  border-radius: 50px;
  color: #16a34a;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.verified-tag svg {
  stroke: #22c55e;
}

/* Contact */
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  min-width: 0; /* Allow flex child to shrink below content size */
}

.contact-item .ci-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--secondary);
}

.contact-item h4 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--secondary);
}

/* Contact item text wrapper must allow shrink */
.contact-item > div:last-child {
  min-width: 0;
  flex: 1;
}

.contact-item p {
  color: #64748b;
  font-size: 13px;
  word-break: break-all;
  overflow-wrap: break-word;
  min-width: 0;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #475569;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  border-radius: 8px;
  color: var(--secondary);
  font-family: inherit;
  font-size: 14.5px;
  transition: all 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: .25s ease;
}

.form-submit:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

/* Footer */
.footer {
  background: var(--secondary);
  padding: 80px 24px 28px;
  color: #cbd5e1;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 13.5px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  color: #cbd5e1;
  font-size: 13.5px;
  transition: .25s ease;
}

.footer ul a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #94a3b8;
}

/* CTA Banner */
.cta-banner {
  background: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 28px;
}

.cta-banner .btn-white {
  display: inline-block;
  padding: 13px 40px;
  background: #ffffff;
  color: var(--secondary);
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  transition: .25s ease;
}

.cta-banner .btn-white:hover {
  background: transparent;
  color: #ffffff;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 14px 24px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 13.5px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: .35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  background: var(--green);
}

.toast.error {
  background: #ef4444;
}

/* Floating Call FAB */
.call-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  height: 52px;
  padding: 0 20px;
  background: var(--secondary);
  border: 1.5px solid var(--primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-fab:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.25);
}

.call-fab svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.call-fab:hover svg {
  fill: var(--secondary);
  transform: scale(1.1);
}

.call-fab span {
  display: inline-block;
  line-height: 1;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  border-radius: 50%;
  color: var(--secondary);
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  border-color: var(--secondary);
  background: #fafaf9;
}

/* Sections with alt bg */
.section-alt {
  background: var(--dark2);
}

/* ── Card Click / Tap Animations ── */
.service-card,
.why-card,
.testimonial-card,
.fleet-frontend-card,
.step-content,
.contact-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Press-down effect on click/tap */
.service-card:active,
.why-card:active,
.testimonial-card:active,
.fleet-frontend-card:active,
.contact-item:active {
  transform: scale(0.97) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform 0.1s ease, box-shadow 0.1s ease !important;
}

.step:active .step-content {
  transform: scale(0.97);
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.step:active .step-num {
  transform: scale(0.9);
  transition: transform 0.1s ease;
}

/* Ripple effect */
.card-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.18);
  transform: scale(0);
  animation: cardRipple 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 10;
}

@keyframes cardRipple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Icon bounce on card click */
.service-card.clicked .icon,
.why-card.clicked .why-icon {
  animation: iconBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes iconBounce {
  0% { transform: scale(1); }
  40% { transform: scale(0.8); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Border glow flash on click */
.service-card.clicked,
.why-card.clicked,
.testimonial-card.clicked,
.fleet-frontend-card.clicked,
.contact-item.clicked {
  animation: borderGlow 0.5s ease forwards;
}

@keyframes borderGlow {
  0% { border-color: #e4e4e7; }
  30% { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.12); }
  100% { border-color: #e4e4e7; box-shadow: var(--shadow-sm); }
}

/* Responsive Grid and Menu Adjustments */
@media (max-width: 992px) {
  .hero-container {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 0;
  }
  .nav-logo .brand-name {
    font-size: 16px;
  }
  .nav-logo .brand-sub {
    font-size: 8px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 290px;
    height: 100vh;
    background: var(--secondary); /* Premium Midnight Navy */
    flex-direction: column;
    padding: 96px 28px 32px;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -15px 0 40px rgba(15, 23, 42, 0.25);
    border-left: 1px solid rgba(197, 168, 128, 0.15);
    transform: translateX(100%);
    z-index: 999;
    counter-reset: nav-counter;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-links.active li:nth-child(1) { transition-delay: 0.08s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.12s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.16s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.24s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.28s; }
  .nav-links.active li:nth-child(7) { transition-delay: 0.32s; }

  .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    transition: all 0.25s ease;
  }
  .nav-links a::after {
    display: none; /* Disable desktop hover line */
  }
  .nav-links a::before {
    content: "0" counter(nav-counter) ".";
    counter-increment: nav-counter;
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    opacity: 0.8;
    margin-right: 12px;
    width: 20px;
  }
  .nav-links a:hover {
    color: var(--primary);
    padding-left: 8px;
  }

  .drawer-footer-item {
    display: block;
    width: 100%;
    margin-top: auto;
  }
  .nav-drawer-footer {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .nav-drawer-phone {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6) !important;
    border-bottom: none !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
  }
  .nav-drawer-phone::before {
    display: none !important;
  }
  .nav-drawer-phone:hover {
    color: var(--primary) !important;
    padding-left: 0 !important;
  }
  .nav-drawer-cta {
    display: block !important;
    text-align: center;
    padding: 12px 24px !important;
    background: var(--primary-dark);
    color: var(--secondary) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px !important;
    border-bottom: none !important;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
    transition: all 0.3s ease;
  }
  .nav-drawer-cta::before {
    display: none !important;
  }
  .nav-drawer-cta:hover {
    background: var(--primary);
    color: var(--secondary) !important;
    transform: translateY(-2px);
    padding-left: 24px !important;
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }
  .menu-toggle.active span {
    background: var(--primary) !important;
  }
  .nav-cta.desktop {
    display: none;
  }

  /* ── Compact Hero ── */
  .hero {
    min-height: auto;
    padding: 100px 16px 48px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .hero h1 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .hero p {
    font-size: 14.5px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
    gap: 10px;
  }
  .hero-card {
    max-width: 100%;
    padding: 24px 20px;
  }
  .hero-card .car-icon {
    height: 56px;
    margin-bottom: 10px;
  }
  .hero-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .hero-card p {
    font-size: 12.5px;
  }
  .floating-badge {
    display: none;
  }
  .stat-row {
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .stat-item .num {
    font-size: 20px;
  }
  .stat-item .label {
    font-size: 10px;
  }

  /* ── Compact Sections ── */
  .section {
    padding: 56px 16px;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .section-header p {
    font-size: 13.5px;
  }
  .section-tag {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  /* ── Compact Service Cards ── */
  .service-card {
    padding: 24px 20px;
  }
  .service-card .icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }
  .service-card .icon svg {
    width: 24px;
    height: 24px;
  }
  .service-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .service-card p {
    font-size: 13px;
    line-height: 1.55;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* ── Compact Why Cards (2-col grid on mobile) ── */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .why-card {
    padding: 22px 18px;
  }
  .why-card .why-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  .why-card .why-icon svg {
    width: 24px;
    height: 24px;
  }
  .why-card h3 {
    font-size: 14.5px;
    margin-bottom: 4px;
  }
  .why-card p {
    font-size: 12.5px;
  }

  /* ── Compact Process Steps ── */
  .step {
    gap: 16px;
    margin-bottom: 20px;
  }
  .step-num {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 15px;
  }
  .step-content {
    padding: 18px 16px;
  }
  .step-content h3 {
    font-size: 15px;
    margin-bottom: 3px;
  }
  .step-content p {
    font-size: 12.5px;
  }
  .process-steps::before {
    left: 20px;
  }

  /* ── Compact Testimonials ── */
  .testimonial-card {
    padding: 22px;
  }
  .testimonial-card .stars {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .testimonial-card .quote {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .testimonial-card .avatar {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .testimonial-card .author-info .name {
    font-size: 13px;
  }
  .testimonial-card .author-info .vehicle {
    font-size: 10.5px;
  }
  .testimonials-track {
    gap: 14px;
  }

  /* ── Compact CTA Banner ── */
  .cta-banner {
    padding: 44px 16px;
  }
  .cta-banner h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .cta-banner p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .cta-banner .btn-white {
    padding: 11px 32px;
    font-size: 14px;
  }

  /* ── Compact Contact ── */
  .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-item {
    padding: 16px;
    gap: 12px;
  }
  .contact-item .ci-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .contact-item .ci-icon svg {
    width: 18px;
    height: 18px;
  }
  .contact-item h4 {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .contact-item p {
    font-size: 12.5px;
    line-height: 1.55;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .contact-form h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .form-group {
    margin-bottom: 12px;
  }
  .form-group label {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 13.5px;
  }
  .form-group textarea {
    min-height: 70px;
  }
  .form-submit {
    padding: 12px;
    font-size: 14px;
  }

  /* ── Compact Footer ── */
  .footer {
    padding: 48px 16px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .footer ul {
    gap: 6px;
  }
  .footer ul a {
    font-size: 12.5px;
  }
  .footer-brand p {
    font-size: 12.5px;
    margin-top: 10px;
  }
  .footer-bottom {
    padding-top: 16px;
    font-size: 11px;
  }

  /* ── Compact Fleet ── */
  .fleet-frontend-grid {
    gap: 14px;
  }
  .fleet-image-box {
    height: 150px;
  }
  .fleet-info {
    padding: 14px 16px;
  }
  .fleet-info h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 88px 14px 40px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 11px 24px;
    font-size: 14px;
  }
  .section {
    padding: 44px 14px;
  }
  .section-header {
    margin-bottom: 24px;
  }
  .section-header h2 {
    font-size: 21px;
  }
  .footer {
    padding: 32px 14px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-grid > div:last-child {
    grid-column: span 2;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-track {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-card {
    padding: 18px 14px;
  }
  .why-card h3 {
    font-size: 13px;
  }
  .why-card p {
    font-size: 11.5px;
  }
  .why-card .why-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }
  .why-card .why-icon svg {
    width: 20px;
    height: 20px;
  }
  .cta-banner {
    padding: 36px 14px;
  }
  .cta-banner h2 {
    font-size: 20px;
  }
  .contact-wrapper {
    gap: 20px;
  }
  .map-iframe-container {
    height: 200px;
  }
}

/* Redesigned Map Item inside Contact Grid */
.contact-item.map-item {
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  grid-column: span 1;
  padding: 24px;
}

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

.map-item-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-item-info h4 {
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--secondary);
  font-size: 16.5px;
}

.map-item-info p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

.btn-get-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 50px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(197, 168, 128, 0.05);
}

.btn-get-directions svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.btn-get-directions:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(181, 148, 91, 0.25);
}

.btn-get-directions:hover svg {
  transform: translate(2px, -2px);
}

.map-iframe-container {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e4e4e7;
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.02);
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none; /* Avoid scroll trap */
  transition: filter 0.3s ease;
}

.map-iframe-container.interactive iframe {
  pointer-events: auto; /* Allow interaction */
}

/* Tap to Interact Overlay */
.map-interaction-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.map-interaction-overlay span {
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-interaction-overlay span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.map-iframe-container.interactive .map-interaction-overlay {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Hover effects for overlay */
.map-iframe-container:hover .map-interaction-overlay {
  background: rgba(15, 23, 42, 0.08);
}

.map-iframe-container:hover .map-interaction-overlay span {
  transform: scale(1.05);
  background: rgba(15, 23, 42, 0.95);
}

@media (max-width: 768px) {
  .contact-item.map-item {
    padding: 16px;
    gap: 12px;
  }
  
  .map-item-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .map-iframe-container {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .map-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .btn-get-directions {
    width: 100%;
    justify-content: center;
    padding: 9px;
    font-size: 12px;
  }
}

/* Training Fleet Frontend Layout */
.fleet-frontend-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.fleet-frontend-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.fleet-frontend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.fleet-image-box {
  width: 100%;
  height: 220px;
  background: #f4f4f5;
  position: relative;
  overflow: hidden;
}

.fleet-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f4f4f5;
  transition: transform 0.5s ease;
}

.fleet-frontend-card:hover .fleet-image-box img {
  transform: scale(1.05);
}

.fleet-transmission-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.fleet-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.fleet-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.fleet-status {
  font-size: 12px;
  font-weight: 600;
}

.fleet-status.status-avail {
  color: var(--green);
}

.fleet-status.status-inuse {
  color: #d97706;
}

.fleet-dual-controls {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background: rgba(100, 116, 139, 0.06);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(100, 116, 139, 0.12);
}

@media (max-width: 480px) {
  .fleet-frontend-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SCROLL REVEAL (SLOW MOTION MOTION LOAD) ===== */
.scroll-reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.scroll-reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
