:root {
  --buss-blue: #1d4ed8;
  --buss-dark-blue: #0f1e4a;
  --buss-light-blue: #60a5fa;
  --buss-ink: #0b1220;
  --buss-charcoal: #1e293b;
  --buss-slate: #475569;
  --buss-mute: #64748b;
  --buss-line: rgba(15, 23, 42, 0.08);
  --buss-tint: #f1f5f9;
  --buss-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

.topbar {
  height: 40px;
  background-color: var(--buss-dark-blue);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease;
}

#navbar {
  top: 40px;
  height: 80px;
  background-color: var(--buss-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  will-change: transform;
}

.navbar-logo {
  height: 50px;
  width: auto;
}

.nav-link {
  position: relative;
  color: #1f2937;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--buss-blue);
  background-color: rgba(37, 99, 235, 0.05);
}

.nav-link.active {
  color: var(--buss-blue);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 3px;
  background-color: var(--buss-blue);
  border-radius: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 200px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cta-button {
  background-color: var(--buss-blue);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-left: 8px;
}

.cta-button:hover {
  background-color: var(--buss-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.mobile-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--buss-blue);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.mobile-call-btn:hover {
  background-color: var(--buss-dark-blue);
  transform: scale(1.05);
}

.mobile-call-btn:active {
  transform: scale(0.95);
}

#mobile-menu {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  z-index: 40;
}

#mobile-menu.active {
  transform: translateY(0);
}

#mobile-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  transition: background-color 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

#mobile-menu-button:hover,
#mobile-menu-button:focus-visible {
  background-color: rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.3);
}

.hamburger {
  width: 22px;
  height: 16px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--buss-blue);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1), top 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0.1s, opacity 0.2s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: top 0.3s cubic-bezier(0.65, 0, 0.35, 1), transform 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.4);
}

.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: top 0.3s cubic-bezier(0.65, 0, 0.35, 1), transform 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}

.hero-section {
  height: calc(100vh - 120px);
  margin-top: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}

.hero-image.active {
  opacity: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.01em;
}

.hero-text {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 48px;
  font-weight: 400;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--buss-blue);
  color: white;
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: var(--buss-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--buss-dark-blue);
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (max-width: 1024px) {
  .nav-link {
    padding: 8px 14px;
    font-size: 14px;
  }
  
  .cta-button {
    padding: 10px 24px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  body .topbar {
    padding: 0 12px;
    height: 36px;
    font-size: 12px;
    transform: translateY(0);
  }

  body #navbar {
    height: 70px;
    top: 36px;
  }
  
  .navbar-logo {
    height: 40px;
  }
  
  #mobile-menu {
    top: 106px;
    max-height: calc(100vh - 106px);
  }
  
  .hero-section {
    margin-top: 106px;
    height: calc(100vh - 106px);
  }
  
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.1;
  }
  
  .hero-text {
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 400;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
  }
  
  .hero-dots {
    bottom: 20px;
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .hamburger {
    padding: 4px;
    -webkit-tap-highlight-color: transparent;
  }
}

.services-section {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
}

@media (min-width: 768px) {
  .services-section {
    background: var(--buss-tint);
  }
}

.services-section h2 {
  color: #0f172a;
}

.services-section p {
  color: #334155;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.service-card-new {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid rgba(37, 99, 235, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.service-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.25);
}

.service-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  flex-shrink: 0;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-new:hover .service-image {
  transform: scale(1.06);
}

.service-content {
  padding: 22px 22px 24px;
  background: white;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.service-title-new {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e40af;
  margin: 0;
  line-height: 1.3;
}

.service-desc-new {
  color: #475569;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  color: var(--buss-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: gap 0.25s ease, color 0.25s ease;
}

.service-btn:hover {
  gap: 10px;
  color: var(--buss-ink);
}

.about-image img {
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.78), rgba(15, 30, 74, 0.78));
}

.footer-section {
  background: var(--buss-ink);
  color: white;
  position: relative;
}

.footer-content {
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1200px) {
  .footer-content {
    padding: 56px 0 40px;
  }
}

.footer-brand {
  text-align: left;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  max-width: 32ch;
}


.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  align-items: flex-start;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 4px 0;
}

.footer-link:hover {
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-contact a svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.footer-contact a:hover svg {
  color: white;
}

.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.footer-meta-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-meta-row svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 40px 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding-bottom: 32px;
    margin-bottom: 20px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 12px;
    height: 44px;
  }

  .footer-brand p {
    font-size: 0.9rem;
    margin: 0 auto;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-meta {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .service-card-new {
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    height: calc(100vh - 120px);
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 16px;
  }

  .about-section .grid {
    gap: 48px;
  }

  .footer-content {
    padding: 32px 0;
  }

  .footer-top {
    gap: 32px;
    padding-bottom: 24px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1600px) {
  .hero-section {
    height: calc(90vh - 120px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .service-content {
    padding: 20px;
  }
}

.fleet-hero {
  position: relative;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
}

.fleet-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.fleet-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.fleet-hero-text {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
}

.bus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.bus-grid-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
}

.bus-grid-item.bus-grid-wide {
  grid-column: span 2;
  height: 320px;
}

.bus-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bus-grid-item:hover img {
  transform: scale(1.05);
}

.bus-grid-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.bus-grid-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: block;
}

.bus-grid-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.bus-grid-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bus-grid-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.sizes-row {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.size-item {
  flex: 1;
  min-width: 100px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.size-item:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.size-item-green {
  background: var(--buss-tint);
  border-color: rgba(15, 23, 42, 0.16);
}

.size-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--buss-ink);
  display: block;
}

.size-item-green .size-num {
  color: var(--buss-ink);
}

.size-label {
  font-size: 0.85rem;
  color: var(--buss-mute);
  display: block;
}

.size-tag {
  display: inline-block;
  background: var(--buss-ink);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-top: 6px;
}

.size-tag-green {
  display: inline-block;
  background: var(--buss-charcoal);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-top: 6px;
}

.env-card {
  padding: 24px;
  background: var(--buss-tint);
  border: 1px solid var(--buss-line);
  border-radius: 14px;
}

.env-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--buss-blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.env-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--buss-ink);
  margin-bottom: 8px;
}

.env-card-text {
  color: var(--buss-slate);
  line-height: 1.55;
  margin: 0;
}

.spec-list {
  display: flex;
  flex-direction: column;
  margin: 0 0 28px 0;
  border-top: 1px solid var(--buss-line);
}

.spec-list > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--buss-line);
  align-items: baseline;
}

.spec-list dt {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--buss-blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--buss-charcoal);
  font-size: 0.98rem;
  line-height: 1.55;
}

.fleet-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--buss-line);
  table-layout: auto;
}

.fleet-table caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 14px 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--buss-blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fleet-table th,
.fleet-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--buss-line);
}

@media (max-width: 640px) {
  .fleet-table th,
  .fleet-table td {
    padding: 12px 14px;
    font-size: 0.92rem;
  }
}

.fleet-table th {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--buss-mute);
  background: var(--buss-tint);
}

.fleet-table tbody tr:last-child td {
  border-bottom: none;
}

.fleet-table tbody td {
  color: var(--buss-charcoal);
  font-weight: 500;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--buss-line);
}

@media (min-width: 900px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--buss-line);
}

@media (min-width: 900px) {
  .value-item {
    padding: 40px 32px 40px 0;
    border-right: 1px solid var(--buss-line);
    border-bottom: none;
  }
  .value-item + .value-item {
    padding-left: 32px;
  }
  .value-item:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.services-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  background: var(--buss-ink);
  color: white;
  border-radius: 24px;
  padding: 48px 32px;
}

@media (min-width: 900px) {
  .services-band {
    grid-template-columns: 5fr 7fr;
    padding: 64px 56px;
    gap: 80px;
  }
}

.services-band-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.services-band-title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.services-band-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 38ch;
}

.services-band-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-band-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left 0.3s ease;
}

.services-band-list li:hover {
  padding-left: 8px;
}

.services-band-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.services-band-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
}

.trailer-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #f8fafc;
  border-radius: 24px;
  overflow: hidden;
}

.trailer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.trailer-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .fleet-hero {
    height: 300px;
  }

  .fleet-hero-title {
    font-size: 2.5rem;
  }

  .bus-grid-item {
    height: 240px;
  }

  .bus-grid-item.bus-grid-wide {
    height: 260px;
  }
}

.page-hero {
  position: relative;
  padding-top: 120px;
  height: calc(40vh + 120px);
  min-height: 320px;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.page-hero-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  max-width: 600px;
}

.page-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-hero-cta:hover {
  background: white;
  color: var(--buss-blue);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founders-figure {
  margin: 0;
}

.founders-figure figcaption {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--buss-line);
}

.founders-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--buss-ink);
}

.founders-role {
  font-size: 0.85rem;
  color: var(--buss-mute);
  margin-top: 2px;
}

#contact-form {
  max-width: 100%;
  overflow: hidden;
}

.contact-form-shell {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.contact-form-shell input,
.contact-form-shell textarea,
.contact-form-shell select {
  border-radius: 8px;
}

.contact-form-shell button[type="submit"] {
  align-self: flex-start;
}

#contact-form .g-recaptcha {
  transform-origin: left center;
  max-width: 100%;
}

#booking-section {
  min-width: 0;
  scroll-margin-top: 140px;
}

@media (max-width: 1024px) {
  .grid > div,
  .grid > #booking-section {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  #contact-form .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 340px) {
  #contact-form .g-recaptcha {
    transform: scale(0.75);
  }
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--buss-line);
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  border-color: rgba(15, 23, 42, 0.2);
}

.contact-rows {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  border-top: 1px solid var(--buss-line);
}

.contact-rows li {
  border-bottom: 1px solid var(--buss-line);
}

.contact-rows a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  color: var(--buss-charcoal);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-rows a:hover {
  color: var(--buss-blue);
}

.contact-row-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--buss-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-row-value {
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

.contact-row-static {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  color: var(--buss-charcoal);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--buss-line);
}

.bullet-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--buss-line);
  color: var(--buss-charcoal);
  font-size: 0.98rem;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--buss-blue);
  border-radius: 50%;
}

.cancel-rules-card {
  background: var(--buss-ink);
  color: white;
  border-radius: 24px;
  padding: 40px 24px;
}

@media (min-width: 768px) {
  .cancel-rules-card {
    padding: 64px 48px;
  }
}

.cancel-rules-card h2,
.cancel-rules-card h3 {
  color: white;
}

.cancel-rules-card > p {
  color: rgba(255, 255, 255, 0.65);
}

.cancel-rule-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.cancel-rule-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 14px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.cancel-rule-box:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.cancel-rule-box-warning {
  background: white;
  border-color: white;
}

.cancel-rule-box-warning .cancel-rule-num {
  color: var(--buss-ink);
}

.cancel-rule-num {
  font-size: 1.85rem;
  font-weight: 700;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cancel-rule-num-warning {
  color: white;
}

.cancel-rule-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  padding-left: 4px;
}

.protection-card {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.protection-card h3 {
  color: white;
}

.protection-card p {
  color: rgba(255, 255, 255, 0.75);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--buss-line);
}

.destination-card {
  padding: 28px 24px;
  border-bottom: 1px solid var(--buss-line);
  border-right: 1px solid var(--buss-line);
  transition: background 0.25s ease;
  position: relative;
}

.destination-card:nth-child(3n) {
  border-right: none;
}

.destination-card:hover {
  background: var(--buss-tint);
}

@media (max-width: 768px) {
  .destination-card {
    border-right: none;
  }
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--buss-ink);
  position: relative;
}

@media (min-width: 1024px) {
  .cta-banner {
    grid-template-columns: 3fr 2fr;
  }
}

.cta-banner-content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .cta-banner-content {
    padding: 56px 48px;
  }
}

.cta-banner-visual {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.cta-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.cta-banner-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 18, 32, 0.7), rgba(11, 18, 32, 0));
}

@media (min-width: 1024px) {
  .cta-banner-visual::after {
    background: linear-gradient(to right, var(--buss-ink), rgba(11, 18, 32, 0));
  }
}

.booking-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 28px;
  background: var(--buss-ink);
  color: white;
  border-radius: 24px;
}

@media (min-width: 900px) {
  .booking-section {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 64px 56px;
    align-items: center;
  }
}

.booking-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.booking-title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 18px;
}

.booking-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 38ch;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-channel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left 0.3s ease;
}

.booking-channel:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-channel:hover {
  padding-left: 12px;
}

.booking-channel:hover .booking-channel-value {
  color: #60a5fa;
}

.booking-channel-arrow {
  display: none;
}

.booking-channel-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.booking-channel-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-channel-value {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.015em;
  transition: color 0.25s ease;
  word-break: break-word;
}

.trip-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--buss-ink);
  border-radius: 24px;
  overflow: hidden;
  color: white;
}

@media (min-width: 1024px) {
  .trip-card {
    grid-template-columns: 5fr 6fr;
  }
}

.trip-card-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--buss-ink);
}

.trip-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.trip-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(11, 18, 32, 0.7));
  pointer-events: none;
}

.trip-card-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.trip-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 1024px) {
  .trip-card-body {
    padding: 56px 48px;
  }
}

.trip-card-body h3 {
  color: white;
}

.trip-card-meta {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.trip-includes {
  display: flex;
  flex-direction: column;
  margin: 0 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trip-includes > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: baseline;
}

.trip-includes dt {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trip-includes dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.5;
}

.trip-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trip-price-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.trip-price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
}

.trip-price-unit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.trip-price-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.trip-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 14px 26px;
  background: white;
  color: var(--buss-ink);
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.trip-cta:hover {
  transform: translateY(-2px);
  background: var(--buss-blue);
  color: white;
}

.terms-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: white;
  border: 1px solid var(--buss-line);
  border-radius: 18px;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
  flex-wrap: wrap;
}

.terms-banner:hover {
  border-color: rgba(15, 23, 42, 0.25);
  transform: translateY(-2px);
}

.terms-banner-text {
  flex: 1;
  min-width: 220px;
}

.terms-banner-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--buss-ink);
  margin-bottom: 4px;
}

.terms-banner-desc {
  color: var(--buss-slate);
  font-size: 0.95rem;
  margin: 0;
}

.terms-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--buss-ink);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.terms-banner:hover .terms-banner-cta {
  background: var(--buss-blue);
}

.terms-banner:hover .terms-banner-cta svg {
  transform: translateX(4px);
}

.terms-banner-cta svg {
  transition: transform 0.25s ease;
}


@media (max-width: 768px) {
  .fleet-hero {
    height: 250px;
    border-radius: 16px;
  }

  .fleet-hero-overlay {
    padding: 24px;
  }

  .fleet-hero-title {
    font-size: 1.75rem;
  }

  .fleet-hero-text {
    font-size: 1rem;
  }

  .bus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bus-grid-item,
  .bus-grid-item.bus-grid-wide {
    grid-column: span 1;
    height: 220px;
  }

  .bus-grid-number {
    font-size: 2.5rem;
  }

  .sizes-row {
    gap: 8px;
  }

  .size-item {
    min-width: 80px;
    padding: 16px 8px;
  }

  .size-num {
    font-size: 1.5rem;
  }

  .trailer-section {
    grid-template-columns: 1fr;
  }

  .trailer-img {
    min-height: 200px;
  }

  .trailer-content {
    padding: 24px;
  }
}