/* Montreal Airport Limousine — Midnight Navy & Brushed Gold luxury theme */
:root {
  --navy-900: #0e1626;
  --navy-800: #141f33;
  --navy-700: #1a2238;
  --navy-600: #243150;
  --gold-500: #c8a24a;
  --gold-400: #d8b765;
  --gold-300: #e7cf94;
  --ink: #1c2230;
  --slate: #5a6276;
  --paper: #ffffff;
  --paper-alt: #f6f7f9;
  --line: #e4e6ec;
  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(14, 22, 38, 0.08);
  --shadow-md: 0 14px 40px rgba(14, 22, 38, 0.16);
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-500); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-700);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .2px;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-top: 1.6em; }
h3 { font-size: 1.35rem; margin-top: 1.2em; }
p { margin: 0 0 1.1em; }
.lead { font-size: 1.28rem; color: var(--slate); font-family: var(--font-head); font-style: italic; }

/* ---- layout helpers ---- */
.container-x { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section-alt { background: var(--paper-alt); }
.text-gold { color: var(--gold-500); }
.eyebrow {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 3px;
  font-size: .78rem; font-weight: 600; color: var(--gold-500); margin-bottom: 10px; display: block;
}

/* ---- top bar ---- */
.topbar {
  background: var(--navy-900); color: #c9d0e0; font-size: .82rem;
  letter-spacing: 1px; text-transform: uppercase;
}
.topbar .container-x { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar a { color: #c9d0e0; }
.topbar a:hover { color: var(--gold-400); }
.lang-switch a { margin-left: 14px; }
.lang-switch a.is-active { color: var(--gold-400); border-bottom: 1px solid var(--gold-400); }

/* ---- nav ---- */
.site-nav {
  position: sticky; top: 0; z-index: 50; background: var(--navy-700);
  box-shadow: var(--shadow-sm);
}
.site-nav .container-x { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 40px; height: 40px; border: 2px solid var(--gold-500); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-400);
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
}
.brand .brand-text { color: #fff; font-family: var(--font-head); font-size: 1.35rem; line-height: 1.05; }
.brand .brand-text small { display: block; font-family: var(--font-body); font-size: .62rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-400); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: #d6dbe8; padding: 10px 14px; border-radius: var(--radius);
  font-size: .92rem; letter-spacing: .4px; text-transform: uppercase; font-weight: 500;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--navy-900); background: var(--gold-400); }
.nav-cta {
  background: var(--gold-500) !important; color: var(--navy-900) !important;
  font-weight: 600 !important; margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-300) !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold-400); margin: 5px 0; transition: .3s; }

/* ---- hero ---- */
.hero {
  position: relative; min-height: 560px; display: flex; align-items: center;
  color: #fff; background: var(--navy-800);
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,22,38,.92) 0%, rgba(14,22,38,.72) 45%, rgba(14,22,38,.35) 100%); }
.hero .container-x { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 90px; }
.hero-inner { max-width: 640px; }
.hero h1 { color: #fff; }
.hero .lead { color: #d8dde9; }
.hero-sub { font-size: 1.05rem; color: #c4cad8; margin-bottom: 26px; }

/* ---- buttons ---- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  font-size: .86rem; cursor: pointer; border: 2px solid transparent; transition: all .25s ease;
}
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-300); color: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: var(--gold-400); color: #fff; margin-left: 12px; }
.btn-ghost:hover { background: var(--gold-400); color: var(--navy-900); }
.btn-dark { background: var(--navy-700); color: #fff; }
.btn-dark:hover { background: var(--navy-900); color: var(--gold-300); }

/* ---- page header (interior pages) ---- */
.page-head {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: #fff; padding: 64px 0 56px; position: relative;
}
.page-head h1 { color: #fff; margin-bottom: .2em; }
.page-head .lead { color: #d8dde9; margin: 0; }
.breadcrumb { font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-400); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold-400); }

/* ---- content article ---- */
.article { padding: 60px 0; }
.article .container-x { max-width: 820px; }
.article img.feature { border-radius: var(--radius); box-shadow: var(--shadow-md); margin: 0 0 34px; width: 100%; }
.article ul, .article ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.article li { margin-bottom: .5em; }
.article a { border-bottom: 1px solid rgba(200,162,74,.4); }

/* ---- fleet / service cards ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.lcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.lcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.lcard .lcard-img { aspect-ratio: 16/10; background: var(--navy-700) center/cover; }
.lcard .lcard-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.lcard h3 { margin-top: 0; }
.lcard p { color: var(--slate); font-size: .98rem; flex: 1; }
.lcard .lcard-link { margin-top: 10px; font-weight: 600; color: var(--gold-500); text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; }

/* ---- feature strip ---- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px; }
.feature-item { text-align: center; }
.feature-item .fi-icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--navy-700); color: var(--gold-400); display: grid; place-items: center; font-size: 1.6rem;
}
.feature-item h3 { font-size: 1.15rem; }
.feature-item p { color: var(--slate); font-size: .95rem; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff; text-align: center; padding: 64px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c4cad8; max-width: 600px; margin: 0 auto 26px; }

/* ---- forms ---- */
.lform { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.lform .field { margin-bottom: 18px; }
.lform label { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); margin-bottom: 6px; }
.lform input, .lform select, .lform textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; background: var(--paper-alt); color: var(--ink);
}
.lform input:focus, .lform select:focus, .lform textarea:focus { outline: none; border-color: var(--gold-500); background: #fff; }
.lform .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lform textarea { min-height: 110px; resize: vertical; }

/* ---- footer ---- */
.site-footer { background: var(--navy-900); color: #aeb6c8; padding: 58px 0 26px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #aeb6c8; }
.site-footer a:hover { color: var(--gold-400); }
.footer-brand .brand .brand-text { color: #fff; }
.footer-brand p { color: #8b93a6; font-size: .9rem; margin-top: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 22px; text-align: center; color: #7b8398; font-size: .82rem; }

/* ---- 404 ---- */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; background: var(--navy-800); color: #fff; padding: 60px 20px; }
.notfound h1 { color: #fff; font-size: clamp(4rem, 14vw, 9rem); margin-bottom: 0; }
.notfound p { color: #c4cad8; max-width: 460px; margin: 0 auto 26px; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0; background: var(--navy-800);
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px 18px; display: none;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 10px; border-radius: var(--radius); }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  .topbar { display: none; }
  .lform .row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-ghost { margin-left: 0; margin-top: 12px; display: inline-block; }
}
