/* ============================
   LSTNZ – Liberty Shuttles Tours NZ
   Design: Sky-to-ocean blue palette · DM Sans body · Syne display
   Casual-professional: rounded, open, confident — not corporate stiff
   ============================ */

:root {
  --blue-900:  #0a2342;
  --blue-800:  #0e3460;
  --blue-700:  #1250a0;
  --blue-600:  #1a6cc8;
  --blue-500:  #2d8de8;
  --blue-400:  #60aef2;
  --blue-100:  #d6ebfc;
  --blue-50:   #edf6ff;

  --sky:       #e8f4fd;
  --white:     #ffffff;
  --off-white: #f7fafc;

  --text:       #0e1c2f;
  --text-mid:   #2d4a6e;
  --text-muted: #5c7fa8;
  --border:     #c8dff0;
  --border-soft:#dceef9;

  --accent:     #f0a500;
  --accent-lt:  #fff4d6;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 10px rgba(18,80,160,0.08);
  --shadow:    0 6px 24px rgba(18,80,160,0.12);
  --shadow-lg: 0 12px 40px rgba(18,80,160,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* UTILITY */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 88px 0; }
.bg-sky { background: var(--sky); }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-xl);
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--blue-600); color: var(--white); }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }
.btn-soft { background: var(--blue-50); color: var(--blue-700); border-color: var(--blue-100); }
.btn-soft:hover { background: var(--blue-100); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); }

/* ============================
   HEADER / NAV
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 16px rgba(18,80,160,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--blue-800); }
.brand-plane {
  width: 36px;
  height: 36px;
  background: var(--blue-600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-800);
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  line-height: 1;
  margin-top: -2px;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--blue-700); background: var(--blue-50); }
.nav-link.active { color: var(--blue-700); background: var(--blue-50); }
.nav-cta {
  background: var(--blue-600);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  padding: 9px 22px;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--blue-700) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue-800); border-radius: 2px; transition: 0.2s; }

/* ============================
   HERO
   ============================ */
.hero {
  background: linear-gradient(160deg, var(--blue-800) 0%, var(--blue-600) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 30%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-eyebrow-tag .dot {
  width: 8px; height: 8px;
  background: #5dda8b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-headline em {
  font-style: normal;
  color: #8dd4f8;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-actions .btn-primary { background: var(--white); color: var(--blue-700); }
.hero-actions .btn-primary:hover { background: var(--blue-50); }

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================
   STATS STRIP
   ============================ */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  border-right: 1px solid var(--border-soft);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 5px; font-weight: 500; }

/* ============================
   HOME ABOUT
   ============================ */
.about-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.about-text p { color: var(--text-mid); font-size: 16px; margin-bottom: 14px; }
.about-text .btn { margin-top: 10px; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-tile {
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.svc-tile:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.svc-tile-icon {
  width: 42px; height: 42px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--blue-600);
  flex-shrink: 0;
}
.svc-tile h3 { font-size: 15px; font-weight: 600; color: var(--blue-900); line-height: 1.3; }
.svc-tile p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================
   CONTACT BANNER
   ============================ */
.contact-banner {
  background: var(--blue-700);
  padding: 64px 0;
}
.contact-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.contact-banner-text h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 6px; letter-spacing: -0.02em; }
.contact-banner-text p { color: rgba(255,255,255,0.7); font-size: 16px; }
.contact-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================
   FOOTER
   ============================ */
.site-footer { background: var(--blue-900); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .ft-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: white; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-brand .ft-plane {
  width: 34px; height: 34px;
  background: var(--blue-600);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--blue-400); }
.footer-bottom { padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.25); }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero { background: linear-gradient(160deg, var(--blue-800) 0%, var(--blue-600) 100%); padding: 72px 0 56px; }
.page-hero .section-eyebrow { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 500px; }

/* ============================
   ABOUT PAGE
   ============================ */
.about-copy-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; }
.about-copy-text h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--blue-900); margin-bottom: 18px; letter-spacing: -0.02em; }
.about-copy-text h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--blue-800); margin: 28px 0 10px; }
.about-copy-text p { color: var(--text-mid); margin-bottom: 14px; font-size: 16px; }

.info-box {
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 14px;
}
.info-box.acc { border-color: #fcd080; background: #fffbf0; }
.info-box h4 { font-size: 13px; font-weight: 700; color: var(--blue-700); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.info-box p { font-size: 14px; color: var(--text-mid); }

/* FLEET */
.fleet-section h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--blue-900); margin-bottom: 36px; letter-spacing: -0.02em; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fleet-card {
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.fleet-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.fleet-img-placeholder {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
.fleet-img-placeholder.hiace  { background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%); }
.fleet-img-placeholder.alphard { background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%); }
.fleet-img-placeholder.elgrand { background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%); }
.fleet-card-body { padding: 22px; }
.fleet-card-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--blue-900); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.fleet-badge { font-size: 12px; background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100); padding: 2px 9px; border-radius: 50px; font-weight: 600; }
.fleet-capacity { font-size: 13px; font-weight: 600; color: var(--blue-600); margin-bottom: 10px; }
.fleet-card-body p { font-size: 14px; color: var(--text-muted); }

/* SERVICES FULL */
.services-full h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--blue-900); margin-bottom: 36px; letter-spacing: -0.02em; }
.services-list-full { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.services-list-full li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.services-list-full li:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); }
.svc-icon-box {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.services-list-full strong { font-size: 16px; font-weight: 600; color: var(--blue-900); display: block; margin-bottom: 5px; }
.services-list-full p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.services-note { margin-top: 30px; font-size: 15px; color: var(--text-muted); }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-details h2, .contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.contact-details > p { color: var(--text-mid); margin-bottom: 28px; font-size: 15px; line-height: 1.7; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--border-soft); margin-bottom: 12px; }
.contact-method-icon {
  width: 42px; height: 42px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-method strong { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-method a { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--blue-800); transition: color 0.15s; }
.contact-method a:hover { color: var(--blue-600); }
.contact-note { font-size: 12px; color: var(--text-muted); margin-top: 2px; display: block; }
.contact-hours { margin-top: 20px; padding: 18px 20px; background: var(--blue-700); border-radius: var(--radius-lg); color: var(--white); }
.contact-hours strong { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 5px; opacity: 0.75; }
.contact-hours p { font-size: 16px; font-weight: 500; }

/* FORM */
.contact-form-wrap { background: var(--off-white); border: 1.5px solid var(--border-soft); border-radius: var(--radius-xl); padding: 36px; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 26px; font-size: 15px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--blue-800); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(45,141,232,0.15);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 6px; line-height: 1.6; }
.form-note a { color: var(--blue-600); font-weight: 600; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .about-intro .container { grid-template-columns: 1fr; gap: 44px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .about-copy-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-list-full { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    gap: 4px;
    z-index: 99;
    border-bottom: 1px solid var(--border-soft);
  }
  .main-nav.open { display: flex; }
  .nav-link { width: 100%; }
  .nav-cta { align-self: flex-start; }
  .hero { padding: 72px 0 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .contact-banner-inner { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* CONTACT PERSON CARDS */
.contact-person-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.contact-person-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-person-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--blue-200);
}
.contact-person-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-900);
}
.contact-person-role {
  font-size: 13px;
  color: var(--text-muted);
}
