/* Metro Shuttle Services clean rebuild CSS
   Inspired by the QLS rebuild structure: simple static pages, responsive layout,
   and Corporate Car Online booking preserved.
*/

:root {
  --blue: #0f2f72;
  --blue-dark: #071a44;
  --blue-soft: #eaf1ff;
  --orange: #f59e0b;
  --orange-dark: #d97706;
  --text: #142033;
  --muted: #64748b;
  --light: #f7f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* TOP BAR */

.topbar {
  width: 100%;
  min-height: 42px;
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.5rem 1.5rem;
}

.topbar-phone {
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
}

.topbar-note {
  color: #cbd5e1;
  font-size: 0.86rem;
}

.topbar-cta {
  margin-left: auto;
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.2s ease;
}

.topbar-cta:hover {
  background: var(--orange-dark);
}

/* MAIN NAV */

.navbar {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  color: var(--blue);
  font-weight: 950;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
}

.logo-sub {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-weight: 800;
  color: var(--text);
}

.nav-links a {
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--orange);
}

/* SHARED */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--border);
}

.section {
  padding: 5rem 1.5rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}

.section-heading h2,
.page-hero h1,
.hero h1 {
  color: var(--blue-dark);
  line-height: 1.05;
  font-weight: 950;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

/* HOME */

.hero {
  min-height: 660px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 68, 0.92), rgba(7, 26, 68, 0.65), rgba(7, 26, 68, 0.25)),
    url('/images/hero_bg.png') center/cover no-repeat;
}

.hero-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-card {
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero p {
  color: #e5edff;
  font-size: 1.18rem;
  max-width: 650px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-strip {
  max-width: 1180px;
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 1.5rem;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.trust-card strong {
  color: var(--blue);
  display: block;
  font-size: 1.05rem;
}

.trust-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.services-grid,
.fleet-grid,
.steps-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card,
.fleet-card,
.step-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.service-card h3,
.step-card h3,
.contact-card h3 {
  color: var(--blue);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.service-card p,
.step-card p,
.contact-card p {
  color: var(--muted);
}

.split-section {
  background: var(--light);
}

.split-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-copy h2 {
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0;
}

.feature-list li {
  padding-left: 1.6rem;
  position: relative;
  font-weight: 800;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.split-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.booking-preview {
  max-width: 980px;
  margin: 0 auto;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.booking-preview h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 0.7rem;
}

.booking-preview p {
  color: #dbeafe;
}

/* PAGE HERO */

.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 4.5rem 1.5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 68, 0.92), rgba(7, 26, 68, 0.72)),
    url('/images/cruise_ship.png') center/cover no-repeat;
}

.page-hero-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.page-hero p {
  color: #e5edff;
  font-size: 1.12rem;
  margin-bottom: 1.5rem;
}

/* FLEET */

.fleet-grid {
  grid-template-columns: repeat(2, 1fr);
}

.fleet-card {
  padding: 0;
  overflow: hidden;
}

.fleet-image {
  min-height: 260px;
  background: #dbeafe;
}

.fleet-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.fleet-body {
  padding: 1.5rem;
}

.fleet-tag {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.fleet-body h3 {
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.fleet-body p,
.fleet-body li {
  color: var(--muted);
}

.fleet-body ul {
  margin: 1rem 0 1.2rem 1.1rem;
}

.fleet-link {
  color: var(--blue);
  font-weight: 950;
}

/* BOOKING */

.booking-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.booking-info {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.booking-info h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.booking-info p,
.booking-info li {
  color: #dbeafe;
}

.booking-info ul {
  margin: 1rem 0 1.5rem 1.2rem;
}

.booking-frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: var(--white);
}

/* CONTACT */

.contact-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* FOOTER */

footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 3.5rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
}

footer h3 {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

footer p,
footer li {
  color: #cbd5e1;
}

.footer-bottom {
  max-width: 1180px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .topbar,
  .navbar,
  .booking-preview {
    flex-direction: column;
    text-align: center;
  }

  .topbar-phone,
  .topbar-note {
    white-space: normal;
  }

  .topbar-cta {
    margin-left: 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .trust-strip,
  .services-grid,
  .steps-grid,
  .split-inner,
  .booking-shell,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 0.75rem 0.8rem;
  }

  .navbar {
    padding: 0.9rem 1rem;
  }

  .logo-main {
    font-size: 1.35rem;
  }

  .nav-links {
    font-size: 0.92rem;
  }

  .hero-actions .btn,
  .booking-preview .btn {
    width: 100%;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .booking-frame {
    min-height: 700px;
  }
}
