/* ══════════════════════════════════════════
   FREYA YACHTING — SHARED STYLES
   Extracted from SPA for multi-page site
══════════════════════════════════════════ */

/* RESET & CUSTOM PROPERTIES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --navy:      #0f1f33;
  --navy-2:    #162844;
  --navy-3:    #1e3a5f;
  --teal:      #1a6b6b;
  --gold:      #c8913a;
  --gold-lt:   #e0aa58;
  --gold-pale: #f2ddb8;
  --cream:     #f7f3ec;
  --cream-2:   #ede8de;
  --white:     #ffffff;
  --text:      #111827;
  --text-2:    #374151;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --radius:    10px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* BASE */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--gold); color: var(--navy);
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-weight: 600; z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* NAVIGATION */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(15, 31, 51, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(200, 145, 58, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(15, 31, 51, 0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; flex-shrink: 0; user-select: none;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.25rem; color: var(--white); line-height: 1;
}
.logo-text span { color: var(--gold-lt); }

.nav-links {
  display: flex; align-items: center; list-style: none; gap: 2px;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: block; padding: 8px 14px; font-size: 13px;
  font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.72); border-radius: 7px;
  transition: color var(--transition), background var(--transition);
  cursor: pointer; white-space: nowrap; text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-lt); background: rgba(200,145,58,0.1);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-btn svg { transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }

.dropdown-panel {
  display: none; position: absolute; top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%); min-width: 200px;
  background: var(--navy-2); border: 1px solid rgba(200,145,58,0.2);
  border-radius: var(--radius); padding: 6px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.35); z-index: 100;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a { border-radius: 7px; font-size: 13px; padding: 10px 14px; }

/* CTA button */
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 600 !important; padding: 9px 20px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--navy) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 499;
  overflow-y: auto; padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-nav-item {
  display: block; padding: 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 1.1rem; font-family: var(--font-serif);
  font-style: italic; color: rgba(255,255,255,0.85);
  cursor: pointer; transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
}
.mobile-nav-item:hover { color: var(--gold-lt); padding-left: 12px; }
.mobile-nav-sub {
  font-family: var(--font-sans); font-style: normal;
  font-size: 0.9rem; padding: 12px 8px 12px 24px;
  color: rgba(255,255,255,0.5);
}
.mobile-nav-cta {
  display: block; text-align: center; margin-top: 28px;
  padding: 16px; background: var(--gold);
  color: var(--navy) !important; font-family: var(--font-sans);
  font-style: normal; font-size: 0.95rem; font-weight: 600;
  border-radius: 10px; letter-spacing: 0.03em;
}

/* Mobile bottom bar */
.mobile-bottom-bar {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,31,51,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200,145,58,0.15);
  z-index: 498; padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.mobile-bottom-bar-inner { display: flex; justify-content: space-around; }
.bottom-bar-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 4px 12px; background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 10px;
  letter-spacing: 0.05em; transition: color var(--transition);
  min-width: 44px; min-height: 44px; justify-content: center;
  text-decoration: none;
}
.bottom-bar-btn.active, .bottom-bar-btn:hover { color: var(--gold-lt); }
.bottom-bar-btn svg { width: 22px; height: 22px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-size: 14px;
  font-weight: 600; letter-spacing: 0.02em; border: none;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; font-family: var(--font-sans);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy); box-shadow: 0 4px 20px rgba(200,145,58,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,145,58,0.45); }

.btn-ghost {
  background: rgba(255,255,255,0.07); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(200,145,58,0.5);
  color: var(--gold-lt); transform: translateY(-2px);
}

.btn-navy { background: var(--navy-2); color: var(--white); }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-2px); }

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

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* LAYOUT UTILITIES */
.section { padding: 96px 24px; }
.section-sm { padding: 64px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 780px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 1px;
}

.section-title {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500; line-height: 1.15; color: var(--text); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--navy-3); }
.section-title-white { color: var(--white); }
.section-title-white em { color: var(--gold-lt); }

.section-body {
  font-size: 1rem; line-height: 1.8; color: var(--muted);
  max-width: 560px; font-weight: 300;
}

/* SCROLL ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* HERO */
.hero {
  position: relative; min-height: calc(100vh - 68px);
  display: flex; align-items: center; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(15,31,51,0.92) 0%, rgba(15,31,51,0.55) 50%, rgba(15,31,51,0.85) 100%),
    url('https://static.wixstatic.com/media/ce3c80_d2a3cb4a8986419e90e85477f444f646~mv2.jpg/v1/fill/w_1920,h_1440,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/ce3c80_d2a3cb4a8986419e90e85477f444f646~mv2.jpg') center / cover no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px 120px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,145,58,0.15); border: 1px solid rgba(200,145,58,0.35);
  border-radius: 99px; padding: 6px 14px; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 32px;
  animation: fadeUp 0.7s 0.1s both;
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500; color: var(--white); line-height: 1.0;
  letter-spacing: -0.01em; max-width: 14ch;
  animation: fadeUp 0.7s 0.2s both;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); display: block; }
.hero-desc {
  margin-top: 24px; font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.58); max-width: 520px;
  line-height: 1.7; font-weight: 300;
  animation: fadeUp 0.7s 0.3s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px;
  animation: fadeUp 0.7s 0.4s both;
}
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.7s 0.5s both;
}
.hero-stat-num { font-family: var(--font-serif); font-size: 2.4rem; color: var(--gold-lt); line-height: 1; }
.hero-stat-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: rgba(255,255,255,0.3); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  animation: scrollPulse 2.5s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%      { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}

/* SERVICES */
.services-bg { background: var(--white); }
.services-grid {
  display: flex; gap: 0; margin-top: 56px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.service-card {
  flex: 1; padding: 40px 32px; background: var(--white);
  border-right: 1px solid var(--border);
  transition: background var(--transition), transform var(--transition);
  cursor: default; position: relative; overflow: hidden;
}
.service-card:last-child { border-right: none; }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: #fafafa; }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(200,145,58,0.12), rgba(224,170,88,0.08));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-serif); font-size: 1.25rem;
  font-weight: 500; margin-bottom: 10px; color: var(--navy);
}
.service-card p { font-size: 0.875rem; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* STATS BAND */
.stats-band {
  background: var(--navy); padding: 56px 24px;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8913a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: flex; justify-content: center;
  gap: 80px; flex-wrap: wrap; position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 3rem; color: var(--gold-lt); line-height: 1; font-style: italic; }
.stat-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 8px; }

/* FLEET CARDS */
.fleet-grid { display: flex; gap: 24px; margin-top: 56px; flex-wrap: wrap; }
.fleet-grid > * { flex: 1 1 300px; min-width: 0; }
.boat-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  cursor: pointer; transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none; color: inherit; display: block;
}
.boat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.boat-img { height: 220px; overflow: hidden; background: var(--navy); position: relative; }
.boat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.boat-card:hover .boat-img img { transform: scale(1.06); }
.boat-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,51,0.5) 0%, transparent 60%);
}
.boat-body { padding: 28px 24px; }
.boat-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.boat-body h3 { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.boat-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.boat-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.spec-pill { background: var(--cream); border-radius: 6px; padding: 6px 12px; font-size: 12px; }
.spec-pill strong { display: block; color: var(--navy); font-weight: 600; font-size: 14px; }
.spec-pill span { color: var(--muted); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }

/* DARK CTA SECTION */
.cta-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,145,58,0.12) 0%, transparent 60%);
}
.cta-dark-inner { position: relative; z-index: 1; text-align: center; }

/* PAGE HERO (INNER PAGES) */
.page-banner {
  background: var(--navy-2); padding: 72px 24px 56px;
  position: relative; overflow: hidden; padding-top: calc(72px + 68px);
}
.page-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15,31,51,0.99) 0%, rgba(26,107,107,0.3) 100%);
}
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-banner-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-banner-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; font-weight: 500; }
.page-banner h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 500; color: var(--white); line-height: 1.1; }
.page-banner h1 em { font-style: italic; color: var(--gold-lt); }
.page-banner p { margin-top: 14px; color: rgba(255,255,255,0.45); font-size: 1rem; max-width: 520px; line-height: 1.7; font-weight: 300; }

/* TECH SPECS */
.specs-table {
  display: flex; flex-wrap: wrap; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin-top: 28px; background: var(--white);
}
.spec-row { flex: 1 0 50%; min-width: 200px; padding: 14px 20px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.spec-row:nth-child(even) { border-right: none; }
.spec-row-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.spec-row-val { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

.spec-cats { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 40px; }
.spec-cat { flex: 1 1 200px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.spec-cat-title { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.spec-cat-title svg { color: var(--gold); }
.spec-cat ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.spec-cat ul li { font-size: 0.85rem; color: var(--muted); padding-left: 14px; position: relative; line-height: 1.5; }
.spec-cat ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* EDUCATION */
.edu-grid { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 56px; }
.edu-card {
  flex: 1 1 260px; background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 32px; position: relative;
  transition: box-shadow var(--transition), transform var(--transition); overflow: hidden;
}
.edu-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.edu-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.edu-level { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.edu-card h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.edu-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.edu-meta { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.edu-chip { background: var(--cream); border-radius: 6px; padding: 5px 12px; font-size: 12px; color: var(--text-2); }

/* ROUTE */
.route-cols { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 48px; }
.route-col { flex: 1 1 280px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.route-col-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.route-col-title span { width: 28px; height: 28px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--navy); font-family: var(--font-sans); flex-shrink: 0; }
.route-stops { list-style: none; display: flex; flex-direction: column; }
.route-stop { padding: 10px 12px; border-radius: 8px; font-size: 0.875rem; color: var(--muted); transition: all var(--transition); border-left: 2px solid transparent; cursor: default; }
.route-stop:hover { background: var(--cream); border-left-color: var(--gold); color: var(--text); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item:hover { border-color: #c4d0dd; }
.faq-item.open { border-color: var(--navy-3); box-shadow: 0 4px 20px rgba(15,31,51,0.08); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-btn {
  width: 100%; background: none; border: none; padding: 20px 24px;
  text-align: left; font-family: var(--font-sans); font-size: 0.95rem;
  font-weight: 500; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color var(--transition); min-height: 64px;
}
.faq-btn:hover { color: var(--navy-3); }
.faq-chevron { flex-shrink: 0; color: var(--muted); transition: transform var(--transition), color var(--transition); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.36s ease; }
.faq-body-inner { padding: 0 24px 22px; border-top: 1px solid var(--cream-2); padding-top: 18px; font-size: 0.9rem; color: var(--muted); line-height: 1.85; font-weight: 300; }

/* CONTACT & FORMS */
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-sm); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); font-weight: 500; }
.form-input, .form-select, .form-textarea {
  background: var(--cream); border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 300;
  color: var(--text); padding: 12px 16px; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; min-height: 48px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy-3); box-shadow: 0 0 0 3px rgba(30,58,95,0.1); background: var(--white); }
.form-input::placeholder, .form-textarea::placeholder { color: #9ca3af; }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.form-grid > * { flex: 1 1 200px; }
.form-grid .full { flex: 1 0 100%; }

/* RESERVATION */
.platform-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 40px 32px; text-align: center;
  transition: all var(--transition); flex: 1 1 260px;
}
.platform-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 48px rgba(200,145,58,0.15); }
.platform-logo-wrap { height: 52px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.platform-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.platform-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 24px; }

/* ABOUT */
.about-layout { display: flex; gap: 80px; flex-wrap: wrap; align-items: center; margin-top: 56px; }
.about-media { flex: 1 1 300px; position: relative; }
.about-media img { width: 100%; border-radius: 16px; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-media-accent { position: absolute; bottom: -24px; right: -24px; width: 55%; border-radius: 12px; overflow: hidden; border: 4px solid var(--cream); box-shadow: var(--shadow-md); }
.about-media-accent img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-text { flex: 1 1 300px; }
.goals { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.goal { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; background: var(--cream); border-radius: 10px; font-size: 0.9rem; color: var(--text-2); line-height: 1.6; transition: background var(--transition); }
.goal:hover { background: var(--cream-2); }
.goal-icon { width: 28px; height: 28px; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); }

/* CONTACT INFO CARDS */
.contact-info-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.contact-info-item { flex: 1 1 180px; background: var(--cream); border-radius: 12px; padding: 20px; transition: background var(--transition); }
.contact-info-item:hover { background: var(--cream-2); }
.contact-info-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.contact-info-val { font-weight: 500; color: var(--navy); font-size: 0.9rem; line-height: 1.5; }
.contact-info-val a { color: inherit; text-decoration: none; transition: color var(--transition); }
.contact-info-val a:hover { color: var(--gold); }

/* FOOTER */
footer { background: var(--navy); padding: 72px 24px 0; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { flex: 2 1 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 36px; height: 36px; background: rgba(200,145,58,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-text { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: var(--white); }
.footer-logo-text span { color: var(--gold-lt); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 300px; font-weight: 300; }
.footer-col { flex: 1 1 140px; }
.footer-col-title { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,0.42);
  transition: color var(--transition); text-decoration: none;
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding: 24px 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.18); }
.footer-bottom-tagline { font-family: var(--font-serif); font-style: italic; color: rgba(200,145,58,0.3) !important; }

/* Social icons in footer */
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,.07);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.5);
  transition: all .2s; text-decoration: none;
}
.social-link:hover { background: rgba(255,255,255,.12); color: var(--gold-lt); }

/* RESPONSIVE */
@media (min-width:768px) {
  .spec-row { flex: 0 0 33.33%; }
  .spec-row:nth-child(even) { border-right: 1px solid var(--border); }
  .spec-row:nth-child(3n) { border-right: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .services-grid { flex-direction: column; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .about-media-accent { display: none; }
  .about-media img { aspect-ratio: 16/9; }
  .about-layout { gap: 36px; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-stats { gap: 28px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 18px; }
  .hero-content { padding: 60px 18px 100px; }
  .page-banner { padding: 56px 18px 44px; padding-top: calc(56px + 68px); }
  .stats-grid { gap: 32px; }
  .fleet-grid { gap: 18px; }
  .fleet-grid > * { flex-basis: 100%; }
  .contact-card { padding: 24px 20px; }
  .footer-grid { gap: 36px; }
  .footer-col { flex: 1 1 120px; }
  .btn { padding: 13px 22px; font-size: 13px; }
  .hero-actions { gap: 10px; }
}

@media print {
  .nav, .mobile-bottom-bar, .mobile-drawer { display: none !important; }
  body { background: white; color: black; }
}
