:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --panel: #11100e;
  --gold: #d6a738;
  --gold-light: #f3cf72;
  --cream: #f7eedc;
  --text: #e8dfcf;
  --muted: #aaa295;
  --line: rgba(214, 167, 56, 0.35);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header .container {
  width: min(1320px, calc(100% - 48px));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 999;
  background: var(--gold);
  color: #111;
  padding: 10px 14px;
}

.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 80px;
  display: grid;
  grid-template-columns: 125px 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand img {
  width: 130px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .03em;
}

.main-nav > a,
.dropdown-toggle {
  color: #fff;
  transition: .25s ease;
  white-space: nowrap;
}

.main-nav > a:hover,
.dropdown-toggle:hover,
.main-nav .active {
  color: var(--gold-light);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 265px;
  padding: 12px;
  background: rgba(7, 7, 7, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 120;
}

.nav-dropdown {
  padding: 24px 0;
  margin: -24px 0;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(7, 7, 7, 0.98);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 4px;
  white-space: nowrap;
  transition: .2s ease;
}

.dropdown-menu a:hover {
  background: rgba(214, 167, 56, 0.12);
  color: var(--gold-light);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-book {
  padding: 12px 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #090909;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(214, 167, 56, .28);
  white-space: nowrap;
}

.header-phone {
  position: relative;
  color: var(--gold-light);
  font-weight: 900;
  font-size: 18px;
  white-space: nowrap;
}

.header-phone::before {
  content: "";
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 6px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-light);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero1.webp");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  animation: heroMove 14s ease-in-out infinite alternate;
}

/* Page-specific hero images */
.home-page .hero-bg {
  background-image: url("assets/images/hero1.webp");
}

.services-page .hero-bg {
  background-image: url("assets/images/hero2.webp");
}

.airport-page .hero-bg {
  background-image: url("assets/images/hero3.webp");
}

.corporate-page .hero-bg {
  background-image: url("assets/images/hero4.webp");
}

.concierge-page .hero-bg {
  background-image: url("assets/images/hero5.webp");
}

.private-chauffeur-page .hero-bg {
  background-image: url("assets/images/hero6.webp");
}

.road-shows-page .hero-bg {
  background-image: url("assets/images/hero7.webp");
}

.special-events-page .hero-bg {
  background-image: url("assets/images/hero1.webp");
}

.transfers-page .hero-bg {
  background-image: url("assets/images/hero2.webp");
}

.weddings-page .hero-bg {
  background-image: url("assets/images/wedding-hero.webp");
}

.fleet-page .hero-bg {
  background-image: url("assets/images/hero4.webp");
}

.service-area-page .hero-bg {
  background-image: url("assets/images/hero5.webp");
}

.about-page .hero-bg {
  background-image: url("assets/images/hero6.webp");
}

.faq-booking-page .hero-bg {
  background-image: url("assets/images/hero7.webp");
}

/* City page hero images */
.milton-page .hero-bg {
  background-image: url("assets/images/city-milton.webp");
}

.guelph-page .hero-bg {
  background-image: url("assets/images/city-guelph.webp");
}

.kitchener-page .hero-bg {
  background-image: url("assets/images/city-kitchener.webp");
}

.waterloo-page .hero-bg {
  background-image: url("assets/images/city-waterloo.webp");
}

.cambridge-page .hero-bg {
  background-image: url("assets/images/city-cambridge.webp");
}

.woodstock-page .hero-bg {
  background-image: url("assets/images/city-woodstock.webp");
}

.london-page .hero-bg {
  background-image: url("assets/images/city-london.webp");
}

.windsor-page .hero-bg {
  background-image: url("assets/images/city-windsor.webp");
}

.mississauga-page .hero-bg {
  background-image: url("assets/images/city-mississauga.webp");
}

.fergus-page .hero-bg {
  background-image: url("assets/images/city-fergus.webp");
}

.rockwood-page .hero-bg {
  background-image: url("assets/images/city-rockwood.webp");
}

.acton-page .hero-bg {
  background-image: url("assets/images/city-acton.webp");
}

/* City hero framing: one full-colour city image, right aligned, no stacked/duplicate look */
.city-page .hero-bg {
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  transform: none;
  animation: none;
}


.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.78) 38%, rgba(0,0,0,.25) 100%),
    linear-gradient(0deg, rgba(5,5,5,.80) 0%, transparent 38%);
}

.hero-inner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 42px 0 70px;
}

.hero-copy {
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
}

h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: -.035em;
  text-shadow: 0 16px 40px rgba(0,0,0,.8);
}

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

.hero-text {
  max-width: 480px;
  margin: 22px 0 26px;
  color: #f0e7d8;
  font-size: 16px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 32px rgba(214, 167, 56, .28);
}

.btn-outline {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  box-shadow: 0 15px 30px rgba(214,167,56,.12);
}

.phone-inline {
  color: #fff;
  font-weight: 900;
}

.phone-inline::before {
  content: "";
  display: none;
}

.quick-services {
  position: relative;
  z-index: 3;
  margin-top: 10px;
}

.quick-services .container {
  width: min(1400px, calc(100% - 48px));
}

.quick-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quick-card a {
  min-height: 122px;
  padding: 25px 30px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .25s ease, transform .25s ease;
}

.quick-card a:last-child { border-right: 0; }

.quick-card a:hover {
  background: rgba(214,167,56,.08);
}

.icon {
  display: block;
  color: var(--gold-light);
  font-size: 30px;
  margin-bottom: 10px;
}

.quick-card h2,
.quick-card p {
  margin: 0;
}

.quick-card h2 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.quick-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 64px 0;
}

.seo-article {
  padding-top: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 167, 56, 0.08), transparent 30%),
    #050505;
}

.article-box {
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.82);
  padding: 34px 38px;
  box-shadow: var(--shadow);
}

.article-box h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.article-box p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.article-box p:last-child {
  margin-bottom: 0;
}

/* City page layout */
.city-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.city-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(214, 167, 56, 0.08), rgba(255,255,255,0.02)),
    rgba(10, 10, 10, 0.86);
  padding: 32px;
  box-shadow: var(--shadow);
}

.city-panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

.city-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.city-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.city-highlights span {
  display: block;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  padding: 13px 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.city-route-box {
  border: 1px solid var(--line);
  background: rgba(12,12,12,.88);
  padding: 32px;
}

.city-route-box h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.city-route-list {
  display: grid;
  gap: 10px;
}

.city-route-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 10px 0;
  color: var(--muted);
  transition: .2s ease;
}

.city-route-list a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .city-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .city-panel,
  .city-route-box {
    padding: 24px 20px;
  }

  .city-highlights {
    grid-template-columns: 1fr;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2,
.why-box h2,
.gold-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.section-title p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fleet-card {
  border: 1px solid var(--line);
  background: #111;
  padding: 14px 14px 18px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.fleet-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold-light);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  margin-bottom: 15px;
}

.fleet-card h3 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.fleet-card p {
  margin: 6px 0 0;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
}

.second-grid {
  margin-top: 18px;
}

.service-page-grid .fleet-card h3 {
  min-height: 38px;
}

/* Fleet page enhanced layout */
.fleet-showcase-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(214, 167, 56, 0.08), transparent 32%),
    #050505;
}

.fleet-showcase {
  display: grid;
  gap: 26px;
}

.fleet-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fleet-feature-card.reverse .fleet-feature-image {
  order: 2;
}

.fleet-feature-card.reverse .fleet-feature-content {
  order: 1;
}

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

.fleet-feature-content {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-label {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fleet-feature-content h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.fleet-capacity {
  color: var(--gold-light);
  font-weight: 900;
  margin: 12px 0 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fleet-feature-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.fleet-feature-content ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.8;
}

.fleet-feature-content li::marker {
  color: var(--gold-light);
}

.fleet-compare-table {
  border: 1px solid var(--line);
  background: rgba(10,10,10,.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fleet-compare-row {
  display: grid;
  grid-template-columns: .8fr .7fr 1.4fr 1.4fr;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.fleet-compare-row:last-child {
  border-bottom: 0;
}

.fleet-compare-row span {
  padding: 18px;
  color: var(--muted);
  border-right: 1px solid rgba(255,255,255,.08);
}

.fleet-compare-row span:last-child {
  border-right: 0;
}

.fleet-compare-head {
  background: rgba(214, 167, 56, 0.12);
}

.fleet-compare-head span {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .fleet-feature-card,
  .fleet-feature-card.reverse {
    grid-template-columns: 1fr;
  }

  .fleet-feature-card.reverse .fleet-feature-image,
  .fleet-feature-card.reverse .fleet-feature-content {
    order: initial;
  }

  .fleet-feature-image img {
    min-height: 280px;
  }

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

  .fleet-compare-row span {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .fleet-feature-content {
    padding: 28px 22px;
  }

  .fleet-feature-image img {
    min-height: 220px;
  }
}

.center {
  text-align: center;
  margin-top: 26px;
}

.why-section {
  padding-top: 0;
}

.why-box {
  border: 1px solid var(--line);
  padding: 30px 30px 26px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(214,167,56,.08), transparent 35%),
    rgba(8,8,8,.72);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.why-grid div {
  padding: 6px 10px;
}

.why-icon {
  display: block;
  color: var(--gold-light);
  font-size: 30px;
  margin-bottom: 12px;
}

.why-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.story-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(12,12,12,.8);
}

.story-quote {
  position: relative;
  padding: 28px 32px;
  min-height: 190px;
}

.quote-mark { display: none; }

.story-quote h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.story-quote p {
  margin: 0 0 14px;
  color: #eee4d4;
  max-width: 820px;
  line-height: 1.7;
  font-size: 16px;
}

.story-quote strong {
  color: #fff;
  font-size: 14px;
}

.story-image {
  min-height: 100%;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
}

.gold-cta {
  margin: 0 0 0;
  padding: 26px 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #101010;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gold-cta h2 {
  color: #101010;
  font-size: 22px;
}

.gold-cta p {
  margin: 5px 0 0;
  color: #241b08;
  font-size: 14px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-dark-outline {
  color: #111;
  border: 1px solid rgba(0,0,0,.5);
  background: rgba(255,255,255,.10);
}

.cta-phone {
  color: #111;
  font-weight: 900;
  white-space: nowrap;
}

.cta-phone::before {
  content: "";
  display: none;
}

.site-footer {
  padding: 24px 0 0;
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0 24px;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  transition: .2s ease;
}

.site-footer a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 12px;
  border-top: 1px solid var(--line-soft);
  padding: 6px;
  text-align: center;
  color: #8d877e;
  font-size: 13px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroMove {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.08) translateX(16px); }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    grid-template-columns: 170px 1fr auto;
    min-height: 86px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

.main-nav {
  position: fixed;
  top: 86px;
  left: 14px;
  right: 14px;
  display: none;
  padding: 14px 18px 90px;
  background: rgba(7, 7, 7, 0.97);
  border: 1px solid var(--line);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  z-index: 100;
}

.main-nav.open {
  display: block;
}

.main-nav > a,
.main-nav .dropdown-toggle {
  display: block;
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-dropdown {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  position: static;
}

.dropdown-toggle::after {
  margin-left: 7px;
}

.main-nav .dropdown-menu,
.main-nav .nav-dropdown:hover .dropdown-menu,
.main-nav .nav-dropdown:focus-within .dropdown-menu {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  min-width: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  background: rgba(255,255,255,.035);
  border: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: none;
}

.main-nav .dropdown-menu::before {
  display: none;
}

.main-nav .nav-dropdown.open .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu a {
  display: block;
  width: 100%;
  padding: 12px 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.05);
  border-radius: 0;
  white-space: normal;
}

.main-nav .dropdown-menu a:hover {
  color: var(--gold-light);
  background: rgba(214,167,56,.08);
}

  .header-actions {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .quick-card,
  .fleet-grid,
  .why-grid,
  .story-row,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-card a:nth-child(2) {
    border-right: 0;
  }

  .quick-card a:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .story-row {
    grid-template-columns: 1fr;
  }

  .story-image img {
    max-height: 280px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 138px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .city-page .hero-bg {
    background-size: auto 100%;
    background-position: 62% center;
  }

  .mississauga-page .hero-bg,
  .guelph-page .hero-bg,
  .woodstock-page .hero-bg,
  .acton-page .hero-bg {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.55)),
      linear-gradient(0deg, rgba(5,5,5,.86), transparent 45%);
  }

  .hero-inner {
    min-height: 580px;
    padding: 58px 0 100px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .phone-inline {
    padding: 13px 0;
  }

  .quick-services {
    margin-top: -36px;
  }

  .quick-card,
  .fleet-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-card a,
  .quick-card a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-card a:last-child {
    border-bottom: 0;
    border-top: 0;
    grid-column: auto;
  }

  .section {
    padding: 48px 0;
  }

.article-box {
  padding: 24px 20px;
}

.article-box p {
  font-size: 15px;
}

  .section-title h2,
  .why-box h2 {
    font-size: 22px;
  }

  .why-box {
    padding: 24px 18px;
  }

  .story-quote {
    padding: 28px 22px;
  }

  .gold-cta {
    text-align: center;
    padding: 28px 0;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .cta-actions a {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 70px;
  }

  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 16px 45px rgba(0,0,0,.6);
  }

  .mobile-cta a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    color: #fff;
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


@media (min-width: 981px) and (max-width: 1180px) {
  .nav-wrap {
    grid-template-columns: 190px 1fr auto;
    gap: 22px;
  }

  .brand img {
    width: 155px;
  }

  .main-nav {
    gap: 20px;
    font-size: 14px;
  }

  .header-book {
    padding: 14px 20px;
    font-size: 14px;
  }

  .header-phone {
    font-size: 16px;
  }
}


/* Booking form polish */
.booking-form label {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .02em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(214,167,56,.7);
  box-shadow: 0 0 0 3px rgba(214,167,56,.14);
}


/* Premium conversion, local content, form and trust sections */
.icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 25%, rgba(243,207,114,.26), rgba(214,167,56,.09) 42%, rgba(255,255,255,.03));
  color: var(--gold-light);
  font-size: 23px;
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
}

.quick-card a:hover .icon {
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.cta-strip {
  padding: 28px 0;
  background: linear-gradient(90deg, rgba(214,167,56,.16), rgba(255,255,255,.03), rgba(214,167,56,.11));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-strip h2 {
  margin: 0 0 6px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.cta-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.local-request-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.local-request-card,
.trust-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(214,167,56,.08), rgba(255,255,255,.025));
  padding: 22px;
  min-height: 160px;
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
}

.local-request-card strong,
.trust-card strong {
  display: block;
  color: var(--gold-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.local-request-card p,
.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.booking-form {
  padding: 0;
  overflow: hidden;
}

.form-section {
  padding: 30px 34px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.form-section:last-of-type {
  border-bottom: 0;
}

.form-section h3 {
  margin: 0 0 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-form label {
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 14px;
  border: 1px solid rgba(214,167,56,.35);
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.booking-form select option {
  background: #111;
  color: #fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(214,167,56,.14);
  background: rgba(255,255,255,.08);
}

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

.form-actions {
  padding: 26px 34px 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-item h3 {
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .04em;
}

.fleet-best {
  display: inline-block;
  margin-top: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(214,167,56,.4);
  color: var(--cream);
  background: rgba(214,167,56,.09);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media (max-width: 980px) {
  .cta-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta-strip-actions {
    justify-content: flex-start;
  }
  .local-request-grid,
  .trust-grid,
  .form-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .local-request-grid,
  .trust-grid,
  .form-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .form-section,
  .form-actions {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.icon svg, .why-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-icon svg {
  width: 28px;
  height: 28px;
}
.airport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.airport-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(214,167,56,.08), rgba(255,255,255,.025));
  padding: 24px;
  box-shadow: var(--shadow);
}
.airport-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.airport-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 980px) {
  .airport-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .airport-grid { grid-template-columns: 1fr; }
}

.link-arrow-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Final icon system: real SVG icon files, high-contrast gold display */
.icon,
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border: 1px solid rgba(244, 207, 115, 0.72);
  border-radius: 16px;
  color: var(--gold-light);
  background: radial-gradient(
    circle at 35% 28%,
    rgba(244, 207, 115, 0.36),
    rgba(214, 167, 56, 0.20) 45%,
    rgba(244, 207, 115, 0.08)
  );
  box-shadow:
    0 0 0 1px rgba(244, 207, 115, 0.10),
    0 14px 32px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(214, 167, 56, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.icon img,
.why-icon img {
  width: 30px;
  height: 30px;
  display: block;
  opacity: 1;
  filter:
    brightness(0)
    saturate(100%)
    invert(77%)
    sepia(47%)
    saturate(673%)
    hue-rotate(2deg)
    brightness(101%)
    contrast(94%)
    drop-shadow(0 0 5px rgba(244, 207, 115, 0.42));
}

.why-icon img {
  width: 31px;
  height: 31px;
}

.quick-card a:hover .icon,
.why-grid > div:hover .why-icon {
  border-color: rgba(244, 207, 115, 0.95);
  background: radial-gradient(
    circle at 35% 28%,
    rgba(244, 207, 115, 0.44),
    rgba(214, 167, 56, 0.24) 48%,
    rgba(244, 207, 115, 0.10)
  );
  transform: translateY(-2px);
}

.link-arrow-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile booking page fix: prevent form overflow and keep fields clear of bottom CTA */
@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .faq-booking-page .fleet-section {
    overflow-x: hidden;
  }

  .faq-booking-page .booking-form,
  .faq-booking-page .form-section,
  .faq-booking-page .form-grid,
  .faq-booking-page .booking-form label,
  .faq-booking-page .booking-form input,
  .faq-booking-page .booking-form select,
  .faq-booking-page .booking-form textarea {
    max-width: 100%;
    min-width: 0;
  }

  .faq-booking-page .booking-form {
    width: 100%;
    overflow: hidden;
    margin-bottom: 34px;
  }

  .faq-booking-page .form-section {
    padding: 24px 18px;
  }

  .faq-booking-page .form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .faq-booking-page .booking-form label {
    display: block;
    width: 100%;
  }

  .faq-booking-page .booking-form input,
  .faq-booking-page .booking-form select,
  .faq-booking-page .booking-form textarea {
    width: 100%;
    display: block;
    -webkit-appearance: none;
    appearance: none;
  }

  .faq-booking-page .booking-form input[type="date"],
  .faq-booking-page .booking-form input[type="time"] {
    min-height: 58px;
    line-height: 1.2;
  }

  .faq-booking-page .form-actions {
    padding: 24px 18px 96px;
  }

  .faq-booking-page .form-actions .btn {
    width: 100%;
  }
}

/* Fix dark Call button inside dark CTA strip */
.cta-strip .btn-dark-outline {
  color: #fff;
  border: 1px solid rgba(244, 207, 115, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.cta-strip .btn-dark-outline:hover {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold-light);
}
