/* ============================================
   Moramel Coach Lines — Global Styles
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0F2240;
  --navy-light: #1B3560;
  --gold: #C8982E;
  --gold-light: #E8C566;
  --sky: #2A7AB5;
  --white: #FFFFFF;
  --off-white: #F4F5F7;
  --gray-100: #E8EAED;
  --gray-200: #D0D3D9;
  --gray-600: #5A6275;
  --gray-800: #2C3040;
  --text: #1A1A2E;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

p {
  max-width: 680px;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
}

.logo span {
  color: var(--gold);
}

/* Hero logo badge (right side) */
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-logo {
  flex-shrink: 0;
}

.hero-logo img {
  width: 480px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: '';
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* --- CTA Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-call {
  background: var(--sky);
  color: var(--white);
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 8px;
}

.btn-call:hover {
  background: #2390cc;
}

/* --- Tap to Call Bar --- */
.call-bar {
  background: var(--gold);
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.call-bar a {
  color: var(--navy);
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, rgba(15, 34, 64, 0.75) 0%, rgba(27, 53, 96, 0.72) 100%),
    url('coach.jpg') center bottom/cover no-repeat;
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 152, 46, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero h1 {
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 540px;
}

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

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(15, 34, 64, 0.1);
  transform: translateY(-3px);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.service-card .card-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-card .card-link:hover {
  color: var(--navy);
}

/* --- Why Choose Us / Trust --- */
.trust-section {
  background: var(--off-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
}

.trust-item .trust-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.trust-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0 auto;
}

/* --- Areas Served --- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.areas-list li {
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Quote Form --- */
.quote-section {
  background: var(--navy);
  color: var(--white);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
  max-width: 700px;
}

.quote-form .full-width {
  grid-column: 1 / -1;
}

.quote-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.quote-form select option {
  color: var(--text);
  background: var(--white);
}

.quote-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Full Page Quote Form (quote.html) --- */
.quote-page-section {
  background: var(--off-white);
}

.quote-page-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 700px;
  margin-top: 2rem;
}

.quote-page-form .full-width {
  grid-column: 1 / -1;
}

.quote-page-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray-800);
}

.quote-page-form input,
.quote-page-form select,
.quote-page-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.quote-page-form input:focus,
.quote-page-form select:focus,
.quote-page-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 152, 46, 0.15);
}

.quote-page-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Coming Soon Badge --- */
.coming-soon-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* --- Content Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;

}

.page-hero-orlando {

  background: linear-gradient(135deg, rgba(15, 34, 64, 0.82) 0%, rgba(27, 53, 96, 0.82) 100%),

    url('orlando-nightscape.jpg') center/cover no-repeat;

  padding: 5rem 0 4rem;

}

.page-hero-kissimmee {

  background: linear-gradient(135deg, rgba(15, 34, 64, 0.78) 0%, rgba(27, 53, 96, 0.78) 100%),

    url('kissimmee-hero.jpg') center/cover no-repeat;

  padding: 5rem 0 4rem;

}

.page-hero-about {

  background: linear-gradient(160deg, rgba(30, 100, 180, 0.92) 0%, rgba(20, 80, 160, 0.92) 100%),

    url('about-hero.jpg') center/cover no-repeat;

  padding: 5rem 0 4rem;

}

.page-hero-express {

  background: linear-gradient(135deg, rgba(15, 34, 64, 0.7) 0%, rgba(27, 53, 96, 0.7) 100%),

    url('route-map.jpg') center/cover no-repeat;

  padding: 5rem 0 4rem;

}

.page-hero-nyc {

  background: linear-gradient(135deg, rgba(15, 34, 64, 0.72) 0%, rgba(27, 53, 96, 0.72) 100%),

    url('nyc-hero.jpg') center/cover no-repeat;

  padding: 5rem 0 4rem;

}

.page-hero-contact {

  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);

  padding: 5rem 0 4rem;

  position: relative;

  overflow: hidden;

}

.page-hero-contact::before {

  content: '';

  position: absolute;

  top: 0;

  right: 0;

  width: 45%;

  height: 100%;

  background: linear-gradient(180deg, #C8982E 0%, #a67b1e 100%);

  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);

  pointer-events: none;

}

.page-hero-contact::after {

  content: '';

  position: absolute;

  top: 0;

  right: 0;

  width: 42%;

  height: 100%;

  background: rgba(200, 152, 46, 0.3);

  clip-path: polygon(35% 0, 100% 0, 100% 100%, 5% 100%);

  pointer-events: none;

}

.contact-circle {

  position: absolute;

  border-radius: 50%;

  border: 3px solid rgba(255, 255, 255, 0.15);

  pointer-events: none;

  z-index: 1;

}

.contact-dot {

  position: absolute;

  width: 8px;

  height: 8px;

  background: #C8982E;

  border-radius: 50%;

  pointer-events: none;

  z-index: 1;

}

.page-hero-services {

  background: #0b1929;

  padding: 5rem 0 4rem;

  position: relative;

  overflow: hidden;

}

.services-grid-bg {

  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-image:

    linear-gradient(rgba(42, 122, 181, 0.12) 1px, transparent 1px),

    linear-gradient(90deg, rgba(42, 122, 181, 0.12) 1px, transparent 1px);

  background-size: 40px 40px;

  pointer-events: none;

}

.services-bar {

  position: absolute;

  bottom: 0;

  background: linear-gradient(180deg, #2A7AB5, #1a5a8a);

  border-radius: 4px 4px 0 0;

  pointer-events: none;

}

.services-line {

  position: absolute;

  height: 2px;

  background: linear-gradient(90deg, #C8982E, transparent);

  pointer-events: none;

  z-index: 1;

}

.page-hero-quote {

  background: linear-gradient(160deg, #1B3560 0%, #0F2240 100%);

  padding: 5rem 0 4rem;

  position: relative;

  overflow: hidden;

}

.quote-wave {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  pointer-events: none;

}

.quote-wave1 {

  height: 60%;

  background: linear-gradient(180deg, transparent 0%, rgba(200, 152, 46, 0.08) 100%);

  clip-path: path('M0 80 Q150 20 300 60 Q450 100 600 40 Q700 10 800 50 L800 200 L0 200 Z');

}

.quote-wave2 {

  height: 50%;

  background: linear-gradient(180deg, transparent 0%, rgba(200, 152, 46, 0.05) 100%);

  clip-path: path('M0 60 Q120 90 250 50 Q400 10 550 70 Q680 100 800 30 L800 200 L0 200 Z');

}

.quote-diamond {

  position: absolute;

  border: 2px solid rgba(200, 152, 46, 0.2);

  transform: rotate(45deg);

  pointer-events: none;

}

.quote-accent-bar {

  position: absolute;

  top: 0;

  left: 0;

  width: 4px;

  height: 100%;

  background: linear-gradient(180deg, #C8982E, transparent);

  pointer-events: none;

}

/* Branded city hero text treatment */

.city-hero-label {

  font-family: var(--font-head);

  font-size: clamp(3rem, 8vw, 6rem);

  font-weight: 700;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  color: var(--white);

  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);

  line-height: 1;

  margin-bottom: 0.5rem;

}

.city-hero-label span {

  display: block;

  font-size: 0.3em;

  letter-spacing: 0.2em;

  font-weight: 500;

  color: var(--gold);

  text-shadow: none;

  margin-top: 0.3rem;

}

/* Emblem watermark - bottom right every page */

.emblem-watermark {

  position: fixed;

  bottom: 1.2rem;

  right: 1.2rem;

  z-index: 50;

  opacity: 0.35;

  transition: opacity 0.3s;

  pointer-events: none;

}

.emblem-watermark img {

  width: 50px;

  height: 50px;

}

/* Route map expandable */

.route-map-section {
  background: var(--off-white);
}

.route-map-container {

  max-width: 900px;

  margin: 2rem auto 0;

}

.route-map-toggle {

  width: 100%;

  background: var(--white);

  border: 2px solid var(--gray-200);

  border-radius: 10px;

  padding: 1.2rem 1.5rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  cursor: pointer;

  font-family: var(--font-head);

  font-size: 1.1rem;

  font-weight: 600;

  color: var(--navy);

  transition: border-color 0.2s, box-shadow 0.2s;

}

.route-map-toggle:hover {

  border-color: var(--gold);

  box-shadow: 0 4px 16px rgba(15, 34, 64, 0.08);

}

.route-map-toggle .arrow {

  font-size: 1.3rem;

  transition: transform 0.3s;

}

.route-map-toggle.open .arrow {
  transform: rotate(180deg);
}

.route-map-expand {

  display: none;

  margin-top: 1rem;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

}

.route-map-expand.open {
  display: block;
}

.route-map-expand img {

  width: 100%;

  height: auto;

  display: block;

}

.timetable-download {

  display: flex;

  align-items: center;

  gap: 1.5rem;

  margin-top: 1.5rem;

  padding: 1.2rem 1.5rem;

  background: var(--white);

  border: 2px solid var(--gray-200);

  border-radius: 10px;

}

.timetable-download p {

  font-size: 0.95rem;

  color: var(--gray-600);

  margin: 0;

}

.page-hero h1 {
  margin-bottom: 0.8rem;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {

  font-size: 1.1rem;

  color: rgba(255, 255, 255, 0.8);

  max-width: 600px;

}

/* --- Content Sections --- */

.content-section {
  padding: 4rem 0;
}

.content-section.alt {
  background: var(--off-white);
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section p+p {
  margin-top: 1rem;
}

.feature-list {

  margin-top: 1.5rem;

}

.feature-list li {

  padding: 0.6rem 0;

  padding-left: 1.8rem;

  position: relative;

  font-size: 1rem;

  color: var(--gray-800);

}

.feature-list li::before {

  content: '✓';

  position: absolute;

  left: 0;

  color: var(--gold);

  font-weight: 700;

}

/* --- CTA Banner --- */

.cta-banner {

  background: var(--gold);

  color: var(--navy);

  text-align: center;

  padding: 3.5rem 1.5rem;

}

.cta-banner h2 {
  margin-bottom: 0.6rem;
}

.cta-banner p {

  margin: 0 auto 1.5rem;

  max-width: 500px;

  color: rgba(15, 34, 64, 0.8);

}

/* --- Footer --- */

.site-footer {

  background: var(--navy);

  color: rgba(255, 255, 255, 0.7);

  padding: 3.5rem 0 2rem;

}

.footer-grid {

  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 2rem;

}

.footer-brand .logo {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
}

.site-footer h4 {

  color: var(--white);

  font-size: 0.9rem;

  margin-bottom: 1rem;

  letter-spacing: 0.05em;

  text-transform: uppercase;

}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer ul a {

  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.7);

  transition: color 0.2s;

}

.site-footer ul a:hover {
  color: var(--gold);
}

.footer-bottom {

  margin-top: 2.5rem;

  padding-top: 1.5rem;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 0.8rem;

  text-align: center;

}

/* --- Central Florida Commuter Page --- */

.page-hero-commuter {

  background: linear-gradient(135deg, rgba(15, 34, 64, 0.7) 0%, rgba(27, 53, 96, 0.7) 100%),

    url('commuter-hero.jpg') center/cover no-repeat;

  padding: 5rem 0 4rem;

}

.intro-section p {
  max-width: 680px;
}

.route-map-container {

  position: relative;

  margin-top: 2rem;

}

.route-map {

  display: block;

  width: 100%;

  max-width: 800px;

  margin: 0 auto;

}

.map-legend {

  background: var(--white);

  border: 1px solid var(--gray-100);

  border-radius: 6px;

  padding: 1rem;

  position: absolute;

  top: 1rem;

  right: 1rem;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  z-index: 1;

}

.map-legend h4 {

  font-size: 0.9rem;

  margin-bottom: 0.5rem;

}

.map-legend ol {

  font-size: 0.85rem;

  color: var(--gray-600);

}

.fare-section h2 {
  margin-bottom: 1.5rem;
}

.savings-calc {

  background: var(--off-white);

  padding: 2rem;

  border-radius: 10px;

  max-width: 500px;

  margin: 0 auto 2rem;

}

.savings-calc h3 {

  font-size: 1.4rem;

  margin-bottom: 0.5rem;

}

.form-group {

  margin-bottom: 1rem;

}

label {

  display: block;

  font-size: 0.9rem;

  margin-bottom: 0.3rem;

}

.input-group {

  display: flex;

  align-items: center;

  background: var(--white);

  border: 1px solid var(--gray-200);

  border-radius: 6px;

  padding: 0.5rem;

}

.input-group span {

  font-size: 1.2rem;

  margin-right: 0.5rem;

}

input[type="number"] {

  font-family: var(--font-body);

  font-size: 1.1rem;

  padding: 0.5rem;

  border: none;

  background: none;

  width: 100%;

  color: var(--navy);

}

input[type="number"]:focus {

  outline: none;

}

#savingsResult {

  text-align: center;

  margin-top: 1.5rem;

  display: none;

}

#savingsResult h4 {

  font-size: 1.2rem;

  margin-bottom: 1rem;

}

#savingsResult table {

  width: 100%;

  border-collapse: collapse;

  margin-bottom: 1rem;

}

#savingsResult td {

  padding: 0.5rem;

  border-bottom: 1px solid var(--gray-200);

}

#savingsResult td.costs {

  text-align: right;

  font-family: var(--font-head);

  font-weight: 700;

}

#savingsResult .highlight td {

  background: var(--gold);

  color: var(--navy);

  border-bottom: none;

}

.fare-table {

  margin-top: 1.5rem;

}

.fare-table table {

  width: 100%;

  border-collapse: collapse;

  table-layout: fixed;

}

.fare-table th {

  font-family: var(--font-head);

  font-size: 1rem;

  font-weight: 700;

  background: var(--navy);

  color: var(--white);

  padding: 0.8rem;

  border: 1px solid var(--gray-100);

}

.fare-table th:first-child {

  width: 40%;

}

.fare-table td {

  padding: 0.8rem;

  border: 1px solid var(--gray-200);

  text-align: center;

  font-family: var(--font-head);

  font-weight: 600;

}

.scheduling-section {
  padding-bottom: 6rem;
}

.split-layout {

  display: flex;

  align-items: center;

  gap: 3rem;

}

.img-col {

  flex: 1;

}

.copy-col {

  flex: 1;

}

.audience-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2rem;

  margin-top: 2rem;

}

.audience-card {

  background: var(--white);

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}

.audience-card img {

  width: 100%;

  height: 200px;

  object-fit: cover;

}

.audience-copy {

  padding: 1.5rem;

}

.audience-copy h3 {

  font-size: 1.2rem;

  margin-bottom: 0.8rem;

}

.audience-copy ul {

  font-size: 0.95rem;

  color: var(--gray-600);

  list-style: disc;

  padding-left: 1.2rem;

}

.amenities-section h2 {
  margin-bottom: 1.5rem;
}

.amenities-list {

  display: flex;

  flex-wrap: wrap;

  gap: 2rem;

  justify-content: center;

}

.amenities-list li {

  display: flex;

  align-items: center;

  gap: 0.8rem;

  font-family: var(--font-head);

  font-weight: 600;

}

.amenities-list img {

  width: 32px;

  height: 32px;

}

/* --- Mobile --- */

@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {

    display: none;

    position: absolute;

    top: 90px;

    left: 0;

    right: 0;

    background: var(--navy);

    flex-direction: column;

    padding: 1.5rem;

    gap: 1rem;

    border-bottom: 3px solid var(--gold);

  }

  .nav-links.open {
    display: flex;
  }

  .nav-dropdown .dropdown-menu {

    display: block;

    position: static;

    box-shadow: none;

    border: none;

    padding: 0 0 0 1rem;

    min-width: auto;

  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-layout {

    flex-direction: column;

    text-align: center;

  }

  .hero-logo img {
    width: 300px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .quote-form,

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

  .quote-form .full-width,

  .quote-page-form .full-width {
    grid-column: 1;
  }

  .footer-grid {

    grid-template-columns: 1fr;

    gap: 2rem;

  }

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

  .split-layout {

    flex-direction: column;

  }

  .copy-col {

    order: 2;

  }

  .img-col {

    order: 1;

    margin-bottom: 1.5rem;

  }
}

@media (max-width: 480px) {

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

}

/* --- Reduced motion --- */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }

}