@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&display=swap");

:root {
  --bg-dark: #0f0c29;
  --bg-mid: #1a1442;
  --accent-1: #ff6b6b;
  --accent-2: #4ecdc4;
  --accent-3: #ffe66d;
  --gold-dark: #8b6914;
  --gold-rich: #a67c00;
  --yellow-bold: #ffdd00;
  --text-light: #f8f9ff;
  --text-muted: #e8e4d4;
  --card-bg: rgba(15, 12, 20, 0.72);
  --card-border: rgba(255, 255, 255, 0.15);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  min-height: 100vh;
  color: var(--text-light);
  overflow-x: hidden;
  background-color: #1a1510;
  background-image: url("images/highway-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.55) 0%,
    rgba(15, 12, 10, 0.7) 50%,
    rgba(10, 8, 6, 0.82) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

header {
  text-align: center;
  margin-bottom: 2.5rem;
}

header h1.brand-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--yellow-bold);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 221, 0, 0.4);
}

header .tagline {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.35rem 1.1rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--yellow-bold);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 221, 0, 0.55);
  border-radius: 999px;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(255, 221, 0, 0.35);
}

header p.subtitle {
  color: var(--text-muted);
  margin-top: 0.85rem;
  font-size: 1.05rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.tab-btn {
  flex: 1;
  min-width: 100px;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  text-decoration: none;
  text-align: center;
}

.tab-btn:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  color: #1a1510;
  background: linear-gradient(135deg, #c9a227, #e8c547);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.45);
}

.page-content {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.card h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--accent-2);
}

.card p {
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.highlight {
  color: var(--accent-3);
  font-weight: 700;
}

.home-page {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-hero {
  text-align: center;
  padding: 3rem 2.5rem;
  background:
    linear-gradient(135deg, rgba(255, 221, 0, 0.1) 0%, transparent 45%),
    linear-gradient(225deg, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    var(--card-bg);
  border-color: rgba(255, 221, 0, 0.22);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.35rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-bold);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 221, 0, 0.45);
  border-radius: 999px;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.home-hero .page-lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-hero {
  display: inline-block;
  padding: 0.95rem 1.85rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero:hover {
  transform: translateY(-2px);
}

.btn-hero-primary {
  color: #1a1510;
  background: linear-gradient(135deg, #c9a227, #e8c547);
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.45);
}

.btn-hero-primary:hover {
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.55);
}

.btn-hero-secondary {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-2);
}

.home-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.home-feature {
  text-align: center;
  padding: 1.2rem 0.85rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: transform 0.2s, border-color 0.2s;
}

.home-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 221, 0, 0.35);
}

.home-feature strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--yellow-bold);
}

.home-feature span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.home-explore-intro {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.home-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.home-quick-card {
  display: block;
  padding: 1.35rem 1.25rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.home-quick-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
  background: rgba(78, 205, 196, 0.06);
}

.home-quick-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.18rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(78, 205, 196, 0.12);
  border-radius: 999px;
}

.home-quick-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
  color: var(--text-light);
}

.home-quick-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.home-fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.home-fleet-card {
  padding: 1.5rem 1.35rem;
  background: linear-gradient(145deg, rgba(255, 221, 0, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 221, 0, 0.2);
  border-radius: 14px;
  transition: transform 0.2s;
}

.home-fleet-card:hover {
  transform: translateY(-3px);
}

.home-fleet-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  color: var(--text-light);
}

.home-fleet-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.home-cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(90deg, rgba(78, 205, 196, 0.12), rgba(255, 221, 0, 0.08));
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.home-cta-text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

.home-cta-text span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.about-lead,
.page-lead {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.about-values {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.about-mission {
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--yellow-bold);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, rgba(255, 221, 0, 0.08), transparent);
}

.about-mission p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  font-style: italic;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-item {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  transition: transform 0.2s, border-color 0.2s;
}

.service-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
}

.service-item h3 {
  font-size: 1.1rem;
  color: var(--accent-1);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.9rem;
  margin: 0;
}

.service-tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(78, 205, 196, 0.12);
  border: 1px solid rgba(78, 205, 196, 0.35);
  border-radius: 999px;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1.75rem;
}

.service-highlight {
  flex: 1;
  min-width: 140px;
  padding: 0.85rem 1rem;
  text-align: center;
  background: rgba(255, 221, 0, 0.06);
  border: 1px solid rgba(255, 221, 0, 0.25);
  border-radius: 12px;
}

.service-highlight strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow-bold);
}

.service-highlight span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-cta {
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--accent-2);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, rgba(78, 205, 196, 0.1), transparent);
}

.service-cta p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-light);
}

.service-cta a {
  color: var(--yellow-bold);
  font-weight: 700;
  text-decoration: none;
}

.service-cta a:hover {
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-card {
  flex: 1;
  min-width: 180px;
  padding: 1.1rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: transform 0.2s, border-color 0.2s;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-2);
}

.contact-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow-bold);
}

.contact-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-card a {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--accent-2);
}

.contact-form-note {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-1), #ff8e8e);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 107, 0.4);
}

.fare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.fare-table th,
.fare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
}

.fare-table th {
  color: var(--accent-3);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
}

.fare-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.fare-table td:last-child {
  color: var(--accent-2);
  font-weight: 600;
}

.fare-updated {
  font-size: 0.9rem;
  color: var(--yellow-bold);
  margin-bottom: 0.5rem;
}

.fare-updated strong {
  font-weight: 700;
}

.fare-loading {
  color: var(--text-muted);
  font-style: italic;
}

.fare-error {
  color: #ff8a8a;
  font-weight: 600;
}

footer {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-line {
  width: 100%;
  max-width: 480px;
  height: 2px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(90deg, transparent, var(--yellow-bold), transparent);
  border-radius: 2px;
}

.footer-address,
.footer-phone {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-phone a {
  color: var(--yellow-bold);
  font-weight: 700;
  text-decoration: none;
  margin: 0 0.15rem;
}

.footer-phone a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  header h1.brand-title {
    font-size: 2rem;
  }

  header .tagline {
    font-size: 0.95rem;
    padding: 0.3rem 0.85rem;
  }

  body {
    background-attachment: scroll;
  }

  .tab-btn {
    min-width: calc(50% - 0.25rem);
  }

  .card {
    padding: 1.5rem;
  }

  .home-hero {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .home-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-quick-grid,
  .home-fleet-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-bar {
    flex-direction: column;
    text-align: center;
  }

  .home-cta-bar .btn-hero {
    width: 100%;
    text-align: center;
  }
}

