/* ============================================
   BEMUZ TRANSPORTES — Global Styles
   ============================================ */

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

:root {
  --red: #CC0000;
  --red-dark: #a80000;
  --red-light: #e60000;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gray: #444444;
  --gray2: #666666;
  --gray3: #999999;
  --light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --font-main: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

.section-title {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title span { color: var(--red); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-title { font-size: 2.2rem; }
.section-header p {
  color: var(--gray2);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 12px 0 0;
}
.divider-center { margin: 12px auto 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,0,0,0.3); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar-logo .logo-bt {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}
.navbar-logo .logo-bt span { color: var(--red); }
.navbar-logo .logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gray2);
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--dark); }
.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.navbar-cta { margin-left: 16px; }

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray);
  border-radius: var(--radius);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--red); background: #fff5f5; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://bemuz.cl/wp-content/uploads/2026/05/HERO-_-BANNER-PRINCIPAL.webp');
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 32px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: #ff4444; }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--dark2);
  padding: 0;
}
.stats-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; stroke: white; fill: none; }
.stat-value {
  font-family: var(--font-condensed);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-icon-badge {
  position: absolute;
  bottom: -18px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.service-icon-badge svg { width: 18px; height: 18px; stroke: white; fill: none; }
.service-body { padding: 28px 20px 20px; }
.service-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.service-body p { font-size: 0.875rem; color: var(--gray2); line-height: 1.6; }

/* ============================================
   FLEET GRID
   ============================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fleet-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
}
.fleet-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fleet-card:hover img { transform: scale(1.08); }
.fleet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.fleet-card-overlay h3 { color: var(--white); font-size: 1.1rem; font-weight: 800; line-height: 1.2; }
.fleet-card-overlay span { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 2px; }
.fleet-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.destination-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  cursor: pointer;
}
.destination-tag svg { width: 16px; height: 16px; stroke: var(--red); fill: none; }
.destination-tag:hover { border-color: var(--red); color: var(--red); background: #fff5f5; }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section { background: var(--light); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 40px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--red);
  line-height: 1;
  opacity: 0.15;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { font-weight: 700; color: var(--dark); }
.testimonial-company { font-size: 0.85rem; color: var(--gray2); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://bemuz.cl/wp-content/uploads/2026/05/CTA-BANNER-fondo.webp');
  background-size: cover;
  background-position: center;
}
.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.82);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.cta-banner-text h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-banner-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-logo .logo-bt {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}
.footer-logo .logo-bt span { color: var(--red); }
.footer-logo .logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  margin-bottom: 16px;
}
.footer-logo p { font-size: 0.875rem; line-height: 1.7; max-width: 240px; }
.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--red); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 32px;
  max-width: 1300px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 32px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.about-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
}
.about-stat-value {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label { font-size: 0.8rem; color: var(--gray2); line-height: 1.4; }

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.why-icon {
  width: 48px; height: 48px;
  background: #fff0f0;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; }
.why-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; color: var(--gray2); line-height: 1.6; }

/* MAP */
.map-section { background: var(--light); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.coverage-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.coverage-tag {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 100px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.coverage-tag svg { width: 24px; height: 24px; stroke: var(--red); fill: none; }
.coverage-tag span { font-size: 0.8rem; font-weight: 700; color: var(--dark); }
.coverage-tag:hover { border-color: var(--red); background: #fff5f5; }
.map-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-placeholder img { width: 100%; height: 380px; object-fit: cover; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question svg { width: 20px; height: 20px; stroke: var(--red); fill: none; flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--gray2);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.form-card h3 span { color: var(--red); }
.form-card > p { font-size: 0.9rem; color: var(--gray2); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; font-size: 1rem; }
.form-privacy {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--gray2); margin-top: 12px;
}
.form-privacy svg { width: 14px; height: 14px; stroke: var(--gray2); fill: none; flex-shrink: 0; }

/* SERVICES PAGE */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.service-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-full-img { height: 200px; overflow: hidden; }
.service-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-full-card:hover .service-full-img img { transform: scale(1.05); }
.service-full-body { padding: 28px; }
.service-full-body .service-tag {
  display: inline-block;
  background: #fff0f0;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.service-full-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.service-full-body p { font-size: 0.875rem; color: var(--gray2); line-height: 1.7; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--dark);
}
.service-feature svg { width: 16px; height: 16px; stroke: var(--red); fill: none; flex-shrink: 0; }

/* HOW WE WORK */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--dark2);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  border: 3px solid transparent;
  transition: var(--transition);
}
.process-step:hover .process-number { background: var(--red); border-color: var(--red); }
.process-step h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--gray2); line-height: 1.6; }

/* FLEXIBILITY TAGS */
.flex-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.flex-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem; font-weight: 600;
  transition: var(--transition);
}
.flex-tag svg { width: 18px; height: 18px; stroke: var(--red); fill: none; }
.flex-tag:hover { border-color: var(--red); background: #fff5f5; }

/* FLEET PAGE */
.fleet-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fleet-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.fleet-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.fleet-full-img { height: 220px; overflow: hidden; position: relative; }
.fleet-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.fleet-full-card:hover .fleet-full-img img { transform: scale(1.05); }
.fleet-capacity-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--dark2); color: var(--white);
  font-size: 0.75rem; font-weight: 700;
  padding: 6px 12px; border-radius: 100px;
}
.fleet-full-body { padding: 24px; }
.fleet-full-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.fleet-full-body .fleet-passengers {
  color: var(--red); font-size: 0.85rem; font-weight: 700; margin-bottom: 12px;
}
.fleet-full-body p { font-size: 0.875rem; color: var(--gray2); line-height: 1.6; margin-bottom: 16px; }
.fleet-amenities { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: var(--light);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--gray);
}
.amenity-tag svg { width: 13px; height: 13px; stroke: var(--gray2); fill: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-full-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-inner { padding: 0 20px; }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  .services-grid, .fleet-grid, .why-grid, .process-grid,
  .services-full-grid, .fleet-full-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .cta-banner-content { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .faq-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }

  .container, .container-wide { padding: 0 16px; }
  .page-hero-content, .hero-content { padding: 56px 20px; }
  .form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .stat-item { flex: 1 1 100%; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-card { height: 160px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
