/* ============================================================
   SILVER CITY TRANSPORT — Brand stylesheet
   Palette: Teal #08A7AE · Coral #FF5F2E · Silver #9B9B9B
            Black #000 · White #fff · Charcoal #333 · Sky #DCECF7
   ============================================================ */

:root {
  --teal: #08A7AE;
  --teal-dk: #067e84;
  --teal-deep: #064b4f;
  --coral: #FF5F2E;
  --coral-dk: #e84a1b;
  --silver: #9B9B9B;
  --silver-lt: #d9d9d9;
  --ink: #101517;
  --black: #000000;
  --charcoal: #333333;
  --white: #ffffff;
  --sky: #DCECF7;
  --sky-soft: #eef6fc;
  --paper: #f6f8f9;

  --maxw: 1240px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(16,21,23,.06);
  --shadow-md: 0 14px 34px -16px rgba(16,21,23,.22);
  --shadow-lg: 0 30px 70px -28px rgba(6,75,79,.45);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-serif: 'Cinzel', Georgia, serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.06; letter-spacing: -.02em; font-weight: 700; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: none;
}
.eyebrow.on-dark { color: var(--teal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 15px 28px; border-radius: 999px; cursor: pointer; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 10px 24px -10px rgba(8,167,174,.7); }
.btn-teal:hover { background: var(--teal-dk); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(8,167,174,.8); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 10px 24px -10px rgba(255,95,46,.7); }
.btn-coral:hover { background: var(--coral-dk); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(255,95,46,.75); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color:#fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.nav.scrolled { background: rgba(8,12,13,.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255,255,255,.06); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 133px; height: 67px; object-fit: contain; object-position: left center; }
.nav.scrolled .brand img { width: 133px; height: 67px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b { font-family: var(--font-display); color: #fff; font-size: 16px; letter-spacing: .02em; font-weight: 700; }
.brand-txt span { font-size: 10.5px; letter-spacing: .34em; color: var(--teal); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,255,255,.82); font-size: 15px; font-weight: 600; font-family: var(--font-display); transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--coral); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--black); color: #fff; overflow: hidden; padding: 150px 0 90px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.62) 46%, rgba(0,0,0,.34) 100%),
    linear-gradient(to top, rgba(0,0,0,.6), transparent 58%); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(8,167,174,.20), transparent 60%),
    radial-gradient(800px 500px at 8% 110%, rgba(255,95,46,.14), transparent 60%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: block; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 8px 16px 8px 12px;
  font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 26px; font-family: var(--font-display);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(8,167,174,.25); }
.hero h1 { color: #fff; font-size: clamp(40px, 5.6vw, 70px); letter-spacing: -.03em; }
.hero h1 .accent { color: var(--coral); }
.hero h1 .teal { color: var(--teal); }
.hero-sub { font-size: 20px; color: rgba(255,255,255,.72); max-width: 640px; margin: 24px 0 36px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-stats { display: flex; gap: 38px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--font-display); font-size: 30px; color: #fff; display: block; letter-spacing: -.02em; }
.hero-stats .stat span { font-size: 13.5px; color: rgba(255,255,255,.6); letter-spacing: .02em; }
.hero-stats .stat b .unit { color: var(--teal); font-size: 18px; }
.hero-stats .stat-pickup { display: flex; align-items: center; gap: 12px; padding-left: 30px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-stats .stat-pickup .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(8,167,174,.16); border: 1px solid rgba(8,167,174,.4); color: var(--teal); display: grid; place-items: center; flex-shrink: 0; }
.hero-stats .stat-pickup .ic svg { width: 21px; height: 21px; }
.hero-stats .stat-pickup > span { display: flex; flex-direction: column; }
.hero-stats .stat-pickup b { font-family: var(--font-display); font-size: 15px; color: #fff; }
.hero-stats .stat-pickup > span span { font-size: 12.5px; color: rgba(255,255,255,.6); }

.hero-media { position: relative; }
.hero-media .photo {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.1); aspect-ratio: 4/3.4;
}
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; left: -26px; bottom: 34px; background: #fff; color: var(--ink);
  border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.hero-float .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--sky); color: var(--teal-dk); display: grid; place-items: center; flex-shrink: 0; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float b { font-family: var(--font-display); font-size: 15px; display: block; }
.hero-float span { font-size: 12.5px; color: var(--silver); }
.hero-rate {
  position: absolute; right: -14px; top: 26px; background: var(--coral); color: #fff;
  border-radius: var(--r-md); padding: 14px 20px; box-shadow: 0 18px 36px -16px rgba(255,95,46,.8);
  text-align: center;
}
.hero-rate b { font-family: var(--font-display); font-size: 26px; display: block; line-height: 1; }
.hero-rate span { font-size: 11.5px; opacity: .9; letter-spacing: .05em; }

/* lane motif */
.lanes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; opacity: .5; z-index: 1; }

/* ---------- Marquee trust strip ---------- */
.strip { background: var(--teal); color: #fff; padding: 16px 0; overflow: hidden; }
.strip .track { display: flex; gap: 56px; white-space: nowrap; animation: scroll 28s linear infinite; width: max-content; }
.strip .item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: .01em; }
.strip .item svg { width: 18px; height: 18px; }
.strip .sep { color: rgba(255,255,255,.45); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Section base ---------- */
section { position: relative; }
.section { padding: 100px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4vw, 50px); margin: 18px 0 0; }
.section-head p { font-size: 18px; color: var(--silver); margin-top: 18px; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- About ---------- */
.about { background: var(--sky-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media .frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4.5; }
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media .tag {
  position: absolute; right: -18px; bottom: -18px; background: var(--ink); color: #fff;
  border-radius: var(--r-lg); padding: 22px 26px; box-shadow: var(--shadow-lg); text-align: center;
}
.about-media .tag b { font-family: var(--font-display); font-size: 40px; display: block; line-height: 1; color: var(--teal); }
.about-media .tag span { font-size: 12.5px; color: rgba(255,255,255,.7); letter-spacing: .05em; }
.about p.lead { font-size: 20px; color: var(--charcoal); margin: 22px 0; line-height: 1.6; }
.about p { color: #5a6166; margin-bottom: 16px; }
.about .promise { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 19px; margin-top: 26px; padding-left: 18px; border-left: 3px solid var(--coral); }
.values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.values .chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--sky); padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; font-family: var(--font-display); color: var(--teal-deep); }
.values .chip svg { width: 15px; height: 15px; color: var(--teal); }

/* ---------- Services (photo cards) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border: 1px solid #eef1f2; border-radius: var(--r-lg); padding: 0;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.svc-card::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background:var(--coral); transition: width .35s var(--ease); z-index:3; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { width: 100%; }
.svc-media { position: relative; height: 190px; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-media.tile { display: grid; place-items: center; }
.svc-media.tile::after { content:""; position:absolute; inset:0; background: radial-gradient(160px 110px at 82% 12%, rgba(255,255,255,.22), transparent 62%); }
.svc-media.t-teal { background: linear-gradient(150deg, var(--teal), var(--teal-deep)); }
.svc-media.t-coral { background: linear-gradient(150deg, var(--coral), var(--coral-dk)); }
.svc-media.t-ink { background: linear-gradient(150deg, #1c2327, #0b0f11); }
.svc-media.t-silver { background: linear-gradient(150deg, #abafb2, #7b8388); }
.svc-media .m-ic { color: #fff; position: relative; z-index: 1; opacity: .96; }
.svc-media .m-ic svg { width: 46px; height: 46px; }
.svc-card:hover .svc-media .m-ic { transform: scale(1.06); transition: transform .4s var(--ease); }
.svc-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 20px; margin-bottom: 10px; }
.svc-card p { font-size: 14.5px; color: var(--silver); line-height: 1.55; flex: 1; }
.svc-card .more { margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--teal-dk); display: inline-flex; align-items: center; gap: 6px; }
.svc-card .more svg { display: none; }

/* ---------- Packages ---------- */
.packages { background: var(--ink); color: #fff; }
.packages::before { content:""; position:absolute; inset:0; background: radial-gradient(900px 500px at 90% 0%, rgba(8,167,174,.16), transparent 55%); pointer-events:none; }
.packages .section-head h2 { color: #fff; }
.packages .section-head p { color: rgba(255,255,255,.6); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.pkg {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg);
  padding: 32px 28px; transition: transform .3s var(--ease), border-color .3s, background .3s; display: flex; flex-direction: column;
}
.pkg:hover { transform: translateY(-6px); border-color: rgba(8,167,174,.6); background: rgba(8,167,174,.07); }
.pkg.featured { background: linear-gradient(165deg, rgba(8,167,174,.16), rgba(255,95,46,.06)); border-color: rgba(8,167,174,.5); }
.pkg-tag { font-family: var(--font-display); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--coral); font-weight: 700; }
.pkg.featured .pkg-tag { color: #ffb59a; }
.pkg h3 { color: #fff; font-size: 24px; margin: 10px 0 8px; }
.pkg .desc { color: rgba(255,255,255,.6); font-size: 14.5px; margin-bottom: 22px; }
.pkg ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.pkg li { display: flex; gap: 11px; font-size: 14.5px; color: rgba(255,255,255,.82); }
.pkg li svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.pkg .btn { width: 100%; }

/* ---------- Why ---------- */
.whybg { position: relative; overflow: hidden; background: var(--ink); }
.whybg::before { content: ""; position: absolute; inset: 0; background: url('assets/why-vans.jpg') right center / cover no-repeat; }
.whybg-scrim { position: absolute; inset: 0; background:
    linear-gradient(90deg, rgba(8,12,13,.95) 0%, rgba(8,12,13,.84) 34%, rgba(8,12,13,.45) 60%, rgba(8,12,13,.12) 100%),
    linear-gradient(to top, rgba(8,12,13,.45), transparent 55%); }
.whybg .wrap { position: relative; z-index: 2; }
.whybg .why-grid { display: block; }
.whybg .why-copy { max-width: 600px; }
.whybg .eyebrow { color: var(--teal); }
.whybg h2 { color: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 8px; }
.why-item { display: flex; gap: 20px; padding: 18px 20px; border-radius: var(--r-md); transition: background .3s; }
.whybg .why-item:hover { background: rgba(255,255,255,.07); }
.why-item .num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff; background: var(--teal); width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.why-item:nth-child(even) .num { background: var(--coral); }
.whybg .why-item h4 { font-size: 18.5px; margin-bottom: 6px; color: #fff; }
.whybg .why-item p { font-size: 14.5px; color: rgba(255,255,255,.72); }

/* ---------- Fleet ---------- */
.fleet { background: var(--paper); }
.fleet-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; }
.fleet-main { border-radius: var(--r-xl); overflow: hidden; position: relative; box-shadow: var(--shadow-md); min-height: 360px; }
.fleet-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.fleet-main .info { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,.82), transparent); color: #fff; }
.fleet-main .info h3 { color: #fff; font-size: 26px; }
.fleet-main .info p { color: rgba(255,255,255,.75); font-size: 14.5px; margin-top: 6px; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start; }
.spec { background: #fff; border: 1px solid #eef1f2; border-radius: var(--r-md); padding: 22px; }
.spec .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sky); color: var(--teal-dk); display: grid; place-items: center; margin-bottom: 14px; }
.spec .ic svg { width: 22px; height: 22px; }
.spec b { font-family: var(--font-display); font-size: 26px; display: block; color: var(--ink); }
.spec span { font-size: 13.5px; color: var(--silver); }
.spec.wide { grid-column: 1 / -1; }
.spec.wide .feats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.spec.wide .feats span { background: var(--sky-soft); color: var(--teal-deep); font-weight: 600; font-family: var(--font-display); font-size: 13px; padding: 6px 12px; border-radius: 999px; }

/* ---------- Booking / Quote ---------- */
.book { background: var(--ink); color: #fff; overflow: hidden; }
.book::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 500px at 10% 100%, rgba(255,95,46,.14), transparent 55%); pointer-events:none; }
.book-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; position: relative; }
.book-left h2 { color: #fff; font-size: clamp(32px,3.8vw,46px); }
.book-left p { color: rgba(255,255,255,.66); margin: 20px 0 30px; font-size: 17px; }
.book-contacts { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.book-contacts a { display: flex; align-items: center; gap: 14px; color: #fff; }
.book-contacts .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: var(--teal); flex-shrink: 0; }
.book-contacts .ic svg { width: 20px; height: 20px; }
.book-contacts b { font-family: var(--font-display); font-size: 16px; display:block; }
.book-contacts span { font-size: 13px; color: rgba(255,255,255,.55); }
.form { background: #fff; border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-lg); }
.form h3 { color: var(--ink); font-size: 24px; margin-bottom: 6px; }
.form .form-sub { color: var(--silver); font-size: 14.5px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--charcoal); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; padding: 13px 14px; border: 1.5px solid #e3e8ea;
  border-radius: var(--r-sm); color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(8,167,174,.12); }
.form .btn { width: 100%; margin-top: 8px; }
.form-note { font-size: 12.5px; color: var(--silver); text-align: center; margin-top: 14px; }

/* ---------- Booking map ---------- */
.booking-map-wrap { display: block; border-radius: var(--r-md); overflow: hidden; border: 1.5px solid #e3e8ea; margin-bottom: 16px; }
#booking-map { width: 100%; height: 260px; }
.booking-map-legend { display: flex; gap: 18px; padding: 9px 14px; background: #f8fafb; border-bottom: 1px solid #e3e8ea; }
.booking-map-legend span { font-family: var(--font-display); font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 7px; color: var(--charcoal); }
.booking-map-legend span::before { content: ''; display: inline-block; width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1.5px currentColor; }
.bml-pickup::before  { background: #08A7AE; color: #08A7AE; }
.bml-dropoff::before { background: #FF5F2E; color: #FF5F2E; }

/* ---------- Address autocomplete dropdown ---------- */
.map-suggest { position: absolute; top: 100%; left: 0; right: 0; z-index: 500; background: #fff; border: 1.5px solid #d4dade; border-top: none; border-radius: 0 0 var(--r-sm) var(--r-sm); margin: 0; padding: 0; list-style: none; box-shadow: 0 8px 24px -8px rgba(16,21,23,.18); max-height: 210px; overflow-y: auto; }
.map-suggest li { padding: 11px 14px; font-size: 13px; cursor: pointer; border-bottom: 1px solid #f2f4f5; line-height: 1.45; color: var(--charcoal); }
.map-suggest li:last-child { border-bottom: none; }
.map-suggest li:hover, .map-suggest li:focus { background: var(--sky-soft); color: var(--teal-deep); }
.map-suggest[hidden] { display: none; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--sky); color: var(--teal-dk); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 24px; margin-bottom: 8px; }
.form-success p { color: var(--silver); font-size: 15px; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: rgba(255,255,255,.7); padding: 78px 0 30px; }
.f-top { display: grid; grid-template-columns: 1.25fr 2fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand img { height: 95px; }
.footer .f-about { font-size: 14.5px; margin-top: 20px; max-width: 360px; line-height: 1.6; }
.f-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.f-pill { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: #fff; background: var(--teal); padding: 11px 17px; border-radius: 999px; transition: background .2s, transform .2s; }
.f-pill svg { width: 16px; height: 16px; }
.f-pill:hover { background: var(--teal-dk); transform: translateY(-2px); }
.f-pill.ghost { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.9); }
.f-pill.ghost:hover { background: rgba(255,255,255,.12); }
.f-facts { display: flex; gap: 28px; margin-top: 26px; }
.f-fact b { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; display: block; line-height: 1; }
.f-fact b::first-letter { color: var(--teal); }
.f-fact span { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .02em; white-space: nowrap; }
.f-links { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 36px; }
.footer h5 { color: #fff; font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; margin-bottom: 18px; text-transform: uppercase; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; transition: color .2s; }
.footer ul a:hover { color: var(--teal); }
.f-meta { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.f-meta span { display: flex; gap: 9px; align-items: center; font-size: 13px; color: rgba(255,255,255,.6); }
.f-meta svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }

.f-emails { padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.f-emails-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.f-emails-head h5 { margin-bottom: 0; }
.f-emails-head span { font-size: 13px; color: rgba(255,255,255,.45); }
.f-email-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.f-email-grid a { display: flex; flex-direction: column; gap: 3px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); padding: 14px 16px; transition: border-color .25s, background .25s, transform .25s; }
.f-email-grid a:hover { border-color: rgba(8,167,174,.55); background: rgba(8,167,174,.07); transform: translateY(-2px); }
.f-email-grid b { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: #fff; }
.f-email-grid span { font-size: 12px; color: rgba(255,255,255,.55); word-break: break-all; }

.f-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.f-bottom span { font-size: 13px; color: rgba(255,255,255,.45); }
.f-social { display: flex; gap: 10px; }
.f-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.f-social a:hover { background: var(--teal); transform: translateY(-2px); }
.f-social svg { width: 17px; height: 17px; }
.f-disclaimer { font-size: 11.5px; color: rgba(255,255,255,.32); line-height: 1.55; margin-top: 20px; max-width: 940px; }

/* ---------- Reveal animation (progressive enhancement) ---------- */
/* Visible end-state is the floor: print, PDF, reduced-motion & static
   captures always show content. Hidden pre-state only applies in live,
   motion-allowed browsers and is removed once .in is added. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal:not(.in) { opacity: 0; transform: translateY(26px); }
  .js .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; background: rgba(8,12,13,.98); backdrop-filter: blur(8px); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 24px; padding: 12px; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn { margin-top: 18px; }
.mobile-close { position: absolute; top: 26px; right: 26px; background: none; border: none; color: #fff; font-size: 34px; cursor: pointer; line-height: 1; }

/* ---------- Promotions page ---------- */
.promo-hero { position: relative; background: var(--black); color: #fff; overflow: hidden; padding: 168px 0 96px; }
.promo-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.promo-hero-scrim { position: absolute; inset: 0; z-index: 1; background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.72) 44%, rgba(0,0,0,.45) 100%),
    linear-gradient(to top, rgba(0,0,0,.7), transparent 58%); }
.promo-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background:
    radial-gradient(1000px 560px at 82% -10%, rgba(255,95,46,.22), transparent 60%),
    radial-gradient(820px 520px at 6% 110%, rgba(8,167,174,.18), transparent 60%); pointer-events: none; }
.promo-hero .wrap { position: relative; z-index: 2; max-width: 880px; }
.promo-hero .live { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,95,46,.14); border: 1px solid rgba(255,95,46,.5); color: #ffb59a; border-radius: 999px; padding: 8px 16px; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .03em; margin-bottom: 24px; }
.promo-hero .live .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,95,46,.25); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(255,95,46,.3); } 50% { box-shadow: 0 0 0 8px rgba(255,95,46,0); } }
.promo-hero h1 { color: #fff; font-size: clamp(40px, 5.6vw, 70px); letter-spacing: -.03em; }
.promo-hero h1 .coral { color: var(--coral); }
.promo-hero h1 .teal { color: var(--teal); }
.promo-hero p { font-size: 19px; color: rgba(255,255,255,.72); max-width: 600px; margin: 22px 0 0; line-height: 1.62; }

.promos { background: var(--paper); padding: 90px 0; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.promo-card { background: #fff; border: 1px solid #eef1f2; border-radius: var(--r-xl); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.promo-flyer { position: relative; background: #000; overflow: hidden; line-height: 0; }
.promo-flyer img { width: 100%; height: auto; display: block; }
.promo-flyer .ribbon { position: absolute; top: 16px; right: 16px; background: var(--coral); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; box-shadow: 0 8px 20px -8px rgba(0,0,0,.6); z-index: 2; }
.promo-flyer .ribbon.teal { background: var(--teal); }
.promo-info { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.promo-info .cat { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-dk); display: inline-flex; align-items: center; gap: 8px; }
.promo-info .cat::before { content: none; }
.promo-info h3 { font-size: 23px; margin: 13px 0 0; letter-spacing: -.02em; }
.promo-info .price { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 4px; flex-wrap: wrap; }
.promo-info .price b { font-family: var(--font-display); font-weight: 800; font-size: 36px; color: var(--ink); line-height: 1; }
.promo-info .price b .cur { color: var(--coral); }
.promo-info .price .unit { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--teal-dk); letter-spacing: .04em; }
.promo-info .cond { font-size: 13px; color: var(--silver); font-weight: 600; }
.promo-info > p { font-size: 14.5px; color: #5a6166; line-height: 1.55; margin: 13px 0; }
.promo-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; margin-bottom: 22px; }
.promo-feats span { display: inline-flex; align-items: center; gap: 6px; background: var(--sky-soft); color: var(--teal-deep); font-family: var(--font-display); font-weight: 600; font-size: 12.5px; padding: 6px 12px; border-radius: 999px; }
.promo-feats span svg { width: 13px; height: 13px; color: var(--teal); }
.promo-info .promo-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.promo-info .promo-actions .btn { font-size: 14px; padding: 13px 22px; flex: 1; }
.promo-note { text-align: center; margin-top: 40px; font-size: 14px; color: var(--silver); }
.promo-note a { color: var(--teal-dk); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; }
  .f-top { grid-template-columns: 1fr; gap: 40px; }
  .f-email-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
  .hero-grid, .about-grid, .why-grid, .fleet-grid, .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 120px 0 70px; }
  .hero-media { max-width: 460px; }
  .section { padding: 70px 0; }
  .why-media { aspect-ratio: 16/10; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .f-links { grid-template-columns: 1fr 1fr; gap: 28px; }
  .f-email-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 26px 22px; }
  .hero-stats { gap: 26px; }
  .hero-rate { right: 8px; }
  .hero-float { left: 0; }
  .promo-card { grid-template-columns: 1fr; }
  .promo-flyer { aspect-ratio: auto; }
  .promo-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   LEGAL / PRIVACY PAGE
   ============================================================ */

.legal-hero { background: var(--charcoal); color: #fff; padding: 120px 0 56px; }
.legal-crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 22px; }
.legal-crumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.legal-crumb a:hover { color: #fff; }
.legal-crumb span { color: rgba(255,255,255,.5); }
.legal-crumb svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .35; }
.legal-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.01em; margin: 0 0 22px; }
.legal-hero .meta { display: flex; flex-wrap: wrap; gap: 20px; }
.legal-hero .meta span { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.legal-hero .meta span svg { width: 15px; height: 15px; flex-shrink: 0; }
.legal-hero .meta b { color: #fff; font-weight: 600; }

.legal-body { padding: 64px 0 96px; }
.legal-layout { display: grid; grid-template-columns: 230px 1fr; gap: 52px; align-items: start; }

.legal-toc { position: sticky; top: 88px; background: var(--sky-soft); border-radius: var(--r-md); padding: 22px 20px; }
.legal-toc h4 { font-family: var(--font-display); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--silver); margin: 0 0 12px; }
.legal-toc ol { list-style: none; margin: 0; padding: 0; }
.legal-toc ol li { margin-bottom: 1px; }
.legal-toc a { display: block; padding: 6px 10px; border-radius: 6px; font-size: 12.5px; color: var(--charcoal); text-decoration: none; line-height: 1.4; transition: background .15s, color .15s; }
.legal-toc a:hover { background: var(--sky); color: var(--teal-deep); }
.legal-toc a.active { background: var(--teal); color: #fff; }

.legal-intro { font-size: 15.5px; color: var(--charcoal); line-height: 1.8; padding: 20px 24px; background: var(--sky-soft); border-radius: var(--r-md); margin-bottom: 40px; border-left: 4px solid var(--teal); }

.legal-content section { padding-bottom: 40px; border-bottom: 1px solid #eef1f2; margin-bottom: 40px; }
.legal-content section:last-of-type { border-bottom: none; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin: 0 0 16px; display: flex; align-items: center; gap: 12px; }
.s-num { font-size: .7rem; font-weight: 700; color: var(--teal); background: var(--sky); padding: 3px 8px; border-radius: 20px; font-family: var(--font-display); letter-spacing: .05em; flex-shrink: 0; }
.legal-content h3 { font-family: var(--font-display); font-size: .8rem; font-weight: 700; color: var(--charcoal); margin: 22px 0 8px; text-transform: uppercase; letter-spacing: .07em; }
.legal-content p { color: #4a5568; line-height: 1.8; margin: 0 0 14px; font-size: 15px; }

.ll { list-style: none; padding: 0; margin: 0 0 16px; }
.ll li { padding: 5px 0 5px 20px; position: relative; color: #4a5568; font-size: 15px; line-height: 1.7; }
.ll li::before { content: '•'; position: absolute; left: 4px; color: var(--teal); font-weight: 700; }
.ll.sections li { padding: 8px 0 8px 20px; border-bottom: 1px solid #f0f4f5; }
.ll.sections li:last-child { border-bottom: none; }

.legal-callout { background: var(--sky-soft); border-left: 4px solid var(--teal); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 16px 20px; margin: 16px 0; font-size: 14.5px; color: var(--charcoal); }
.legal-callout a.inline { color: var(--teal); text-decoration: none; }
.legal-callout a.inline:hover { text-decoration: underline; }

.legal-contact-card { background: #fff; border: 1.5px solid #eef1f2; border-radius: var(--r-md); padding: 24px; margin: 16px 0 24px; box-shadow: var(--shadow-sm); }
.legal-contact-card h3 { font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--charcoal); margin: 0 0 16px; }
.legal-contact-card .rows { display: flex; flex-direction: column; gap: 12px; }
.legal-contact-card .rows a,
.legal-contact-card .rows span { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--charcoal); text-decoration: none; }
.legal-contact-card .rows a:hover { color: var(--teal); }
.ic { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal); display: flex; align-items: center; justify-content: center; }
.ic svg { width: 18px; height: 18px; }

.legal-updated { font-size: 12px; color: var(--silver); margin-top: 40px; padding-top: 24px; border-top: 1px solid #eef1f2; line-height: 1.7; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .legal-body { padding: 40px 0 64px; }
}
