@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================
   Tokens
============================ */
:root {
  --navy: #364151;
  --navy-light: #47566b;
  --navy-lighter: #556579;
  --gold: #FFCC00;
  --gold-cream: #f3ecce;
  --gold-dark: #E6B800;
  --cream: #F5F5F3;
  --off-white: #ffffff;
  --text-dark: #000000;
  --text-muted: #000000;
  --text-on-navy: #ffffff;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 10px 30px rgba(30, 38, 51, 0.08);
  --shadow-lg: 0 20px 50px rgba(30, 38, 51, 0.16);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 1.25rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; }

/* Small gold uppercase label used above section headings */
.eyebrow {
  display: block;
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

section > h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ============================
   Page hero (intro banner used on FAQ, Careers, etc.)
============================ */
.page-hero {
  padding: 4.5rem 4vw 3rem;
  text-align: center;
  background: var(--off-white);
}

.page-hero h2 {
  margin-bottom: 0.75rem;
}

.page-hero .section-intro {
  margin-bottom: 0;
}

.inline-link {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
}

.inline-link:hover { color: var(--navy); }

/* ============================
   Buttons
============================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-secondary-dark {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Form submit button reads as a solid dark button, per mockup */
.booking form .btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  border-radius: var(--radius-sm);
  width: 100%;
  padding: 1rem;
}

.booking form .btn-primary:hover {
  background: #232c38;
  border-color: #232c38;
  box-shadow: none;
}

/* ============================
   Header
============================ */

#mainHeader{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;

    padding:0 5vw;
    min-height:95px;
    background:var(--white);

    border-bottom:1px solid #eee;

    top:0;
    z-index:100;
}

.brand{
    display:flex;
    align-items:center;
}

.logo{
    height:200px;
    width:auto;
    display:block;
    object-fit:contain;
}

.logo-crop {
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-crop .logo {
  height: 160px;
  width: auto;
  margin-top: 10px;
  flex-shrink: 0;
}

#mainHeader nav{
    display:flex;
    justify-content:center;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:clamp(1rem,2vw,2rem);
    list-style:none;
}

.book-btn{
    justify-self:end;
}

.navbar li a {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.navbar li a:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.navbar .book-item a {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border-bottom: none;
}

.navbar .book-item a:hover {
  background: var(--gold-dark);
  border-bottom: none;
}

.dropdown {
  position: relative;
}

.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.chevron {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.15s ease;
}

.dropdown:hover .chevron,
.dropdown:focus-within .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding: 0.5rem 0;
  min-width: 280px;
  list-style: none;
  background: var(--white);
  border: 1px solid #ececea;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: var(--cream);
  color: var(--navy);
}

/* ============================
   Book a Ride button (nav)
============================ */
.book-btn {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.book-btn:hover {
  background: var(--gold-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}

/* ============================
   Hero
============================ */
.hero-section {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30, 38, 51, 0.747) 0%, rgba(30, 38, 51, 0) 100%),
              url('static/headerimage.png') center / cover no-repeat;
}

.hero-content {
  position: relative;
  bottom: 12rem;
  z-index: 2;
  max-width: 1000px;
  padding: 3.5rem 1.5rem;
  color: var(--white);
}

.hero-content h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-subtext {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.22rem;
  max-width: 560px;
  margin: 0 auto 0;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.hero-benefits .benefit span {
  display: inline-block;
  background: rgba(255, 204, 0, 0.18);
  border: 1px solid rgba(255, 204, 0, 0.55);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* ============================
   Service Coverage
============================ */

.coverage-section{
    padding:5rem 4vw;
    background:var(--white);
    text-align:center;
}

.coverage-grid{
    max-width:1200px;
    margin:3rem auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.75rem;
}

.coverage-card{
    background:var(--off-white);
    border:1px solid #ececea;
    border-radius:var(--radius);
    padding:2rem;
    display:flex;
    flex-direction:column;
    text-align:left;
    box-shadow:var(--shadow);
    transition:transform .2s ease, box-shadow .2s ease;
    height:100%;
}

.coverage-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-lg);
}

.coverage-header{
    display:flex;
    align-items:center;
    gap:1rem;
    margin-bottom:1rem;
}

.coverage-icon{
    width:48px;
    height:48px;
    border-radius:10px;
    background:var(--gold);
    color:var(--navy);
    display:flex;
    justify-content:center;
    align-items:center;
    font-family:var(--font-heading);
    font-weight:700;
    font-size:1.35rem;
    flex-shrink:0;
}

.coverage-card h3{
    margin:0;
    font-size:1.3rem;
}

.coverage-card p{
    color:var(--text-muted);
    line-height:1.7;
    flex-grow:1;
}

.card-link{
    margin-top:1.25rem;
    color:var(--gold-dark);
    font-weight:600;
    text-decoration:none;
}

.card-link:hover{
    color:var(--navy);
}

/* ============================
   How It Works
============================ */

.how-it-works-section{
    padding:5rem 4vw;
    background:var(--white);
    text-align:center;
}

.how-it-works-grid{
    max-width:1100px;
    margin:3rem auto 0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.75rem;
}

.how-card{
    background:var(--off-white);
    border:1px solid #ececea;
    border-radius:var(--radius);
    padding:2.5rem 2rem;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    box-shadow:var(--shadow);
    transition:transform .2s ease, box-shadow .2s ease;
    height:100%;
}

.how-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-lg);
}

.step-number{
    display:flex;
    justify-content:center;
    align-items:center;
    width:52px;
    height:52px;
    border-radius:50%;
    background:var(--gold);
    color:var(--navy);
    font-family:var(--font-heading);
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:1.25rem;
}

.how-card h3{
    margin-bottom:.75rem;
    font-size:1.35rem;
}

.how-card p{
    color:var(--text-muted);
    font-size:1.15rem;
    line-height:1.7;
    margin:0;
}

/* Default: hide every card, reveal only the active one (mobile / JS-driven).
   Each carousel's markup should mark its first card class="... active"
   so there's always something visible even before JS runs. */
.coverage-card,
.why-card,
.testimonial-card {
  display: none;
  width: 100%;
}

.coverage-card.active,
.why-card.active,
.testimonial-card.active {
  display: grid;
}

/* On wider screens show every card in a static row so the page reads
   complete regardless of the active state */
@media (min-width: 900px) {
  .coverage-card, .why-card, .testimonial-card { display: grid !important; }
  .coverage-carousel {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    width: 100%;
  }
  .why-carousel {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
  }
  .testimonials-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
  }
}

.coverage-card,
.why-card {
  background: var(--off-white);
  border: 1px solid #ececea;
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
  place-content: start;
}

.coverage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
}

.coverage-card h3,
.why-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.coverage-card p,
.why-card p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.card-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 1.08rem;
}

.card-link:hover { color: var(--navy); }

/* ============================
   Testimonials
============================ */
/* ============================
   Testimonials
============================ */

.testimonials-section{
    padding:5rem 4vw;
    background:var(--navy);
    text-align:center;
}

.testimonials-section h2{
    color:var(--white);
    font-size:2.2rem;
    margin-bottom:3rem;
}

.testimonials-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.75rem;
}

.testimonial-card{
    background: rgba(136, 138, 255, 0.164);
    border-radius:var(--radius);
    padding:2rem;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    text-align:left;
    height:100%;
}

.quote{
    color:var(--text-on-navy);
    font-style:italic;
    line-height:1.8;
    margin-bottom:1.5rem;
}

.author{
    color:var(--gold);
    font-weight:600;
    margin:0;
}

/* ============================
   Trip coverage / "Wherever your trip starts"
============================ */
.trip-coverage-section {
  padding: 5rem 4vw;
  background: var(--navy);
}

.trip-coverage-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.trip-coverage-left .eyebrow,
.trip-coverage-left h2 {
  text-align: left;
  color: var(--gold-dark);
}

.trip-coverage-left p:not(.eyebrow) {
  color: var(--text-dark);
  max-width: 480px;
}

.trip-coverage-media {
  position: relative;
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e2e2e0;
}

.trip-coverage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trip-coverage-list {
  color: var(--white);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 9.5rem;
}

.trip-coverage-list li {
  background: var(--white);
  border: 1px solid #ececea;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}

.trip-coverage-list li.highlight {
  background: rgba(255, 204, 0, 0.18);
  border-color: var(--gold);
  font-weight: 600;
}

/* ============================
   Booking
============================ */
.booking {
  padding: 5rem 4vw;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.booking-info .eyebrow,
.booking-info h2 {
  text-align: left;
}

.booking-info h2 { font-size: 2rem; }

.booking-info > p {
  color: var(--text-muted);
  max-width: 460px;
}

.contact-details {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-details li {
  font-size: 0.92rem;
  color: var(--text-dark);
}

.contact-details strong {
  color: var(--navy);
  margin-right: 0.35rem;
}

.booking form {
  background: var(--off-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  gap: 1rem;
}

.form-group label { flex: 1; }

form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 0.4rem;
}

form input,
form select,
form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.25);
}

form textarea { resize: vertical; }

.required {
  color: #DC2626;
  margin-left: 0.15rem;
}

.hidden { display: none; }

/* ============================
   Footer
============================ */
footer {
  background: var(--navy);
  color: var(--text-on-navy);
  padding: 3.5rem 4vw 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  max-width: 300px;
  margin-top: 1rem;
}

.footer-logo-link .logo {
  filter: brightness(0) invert(1);
  height: 200px;
  margin-top: -2.5rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col li a,
.footer-col li {
  color: var(--text-on-navy);
  font-size: 1.1rem;
  transition: color 0.15s ease;
}

.footer-col li a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; }

.footer-cta {
  margin-top: 1.25rem;
  align-self: flex-start;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================
   Responsive
============================ */
@media (max-width: 900px) {
  .coverage-carousel .coverage-card.active,
  .why-carousel .why-card.active { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; }
  .trip-coverage-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }

  #mainHeader nav { flex-wrap: wrap; justify-content: flex-end; }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    padding: 1rem 4vw;
    border-top: 1px solid #eee;
  }

  .navbar.open { display: flex; }

  .form-group { flex-direction: column; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width:900px){

    .how-it-works-grid{
        grid-template-columns:1fr;
        max-width:550px;
    }

}

@media (max-width:900px){

    .testimonials-grid{
        grid-template-columns:1fr;
        max-width:650px;
    }

}

@media (max-width:1100px){

    .coverage-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:700px){

    .coverage-grid,
    .testimonials-grid{
        grid-template-columns:1fr;
    }

}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 500;
}

.form-message.success {
  background-color: #e6f7ec;
  color: #1a7f37;
  border: 1px solid #b7ebc6;
}

.form-message.error {
  background-color: #fdecea;
  color: #b3261e;
  border: 1px solid #f5c6c3;
}

/* ============================
   Coverage card photos (bleed to card edges, fixed height, cover-crop)
============================ */
.coverage-card {
  padding: 0;
  overflow: hidden; /* clips the image to the card's rounded corners, no matter what */
}

.coverage-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 1.25rem;
  border-radius: 0; /* not needed anymore — overflow:hidden on the card does the rounding */
}

/* Since the card no longer has padding, add horizontal spacing
   directly to the text elements below the image */
.coverage-card .coverage-header,
.coverage-card > p,
.coverage-card .card-link {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.coverage-card .card-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.step-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.testimonial-logo {
  height: 100px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
}

