@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:    #080B12;
  --blue:    #2563EB;
  --blue-lt: #3B82F6;
  --blue-dim: #1D4ED8;
  --gold:    #2563EB;
  --gold-lt: #60A5FA;
  --white:   #FFFFFF;
  --off:     #F8F9FB;
  --muted:   #6B7280;
  --border:  #E2E5EA;
  --dark:    #0F1117;
  --surface: #161B27;
  --grey:    #374151;
  --grey-lt: #9CA3AF;
  --green:   #059669;
  --red:     #DC2626;
  --shadow:  0 4px 24px rgba(8,11,18,0.12);
  --shadow-lg: 0 12px 48px rgba(8,11,18,0.20);
  --r:       10px;
  --r-lg:    18px;
  --max:     1100px;
  --f-head:  'Playfair Display', Georgia, serif;
  --f-body:  'Inter', system-ui, sans-serif;
}

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 28px;
  transition: background .3s, box-shadow .3s;
}
nav.solid {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; color: white; }
.logo-mark { font-size: 26px; line-height: 1; }
.logo-text { font-family: var(--f-head); font-size: 17px; line-height: 1.1; letter-spacing: .3px; }
.logo-sub { display: block; font-family: var(--f-body); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,.8); font-size: 13.5px; font-weight: 500; padding: 8px 14px; border-radius: 7px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,.1); }
.nav-book { background: var(--gold) !important; color: white !important; font-weight: 600 !important; }
.nav-book:hover { background: var(--gold-lt) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, #080B12 0%, #0D1220 55%, #0F1829 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; bottom: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; top: 20%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-lt); font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--f-head);
  font-size: clamp(42px, 6vw, 72px);
  color: white; line-height: 1.08;
  letter-spacing: -.5px;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero p {
  color: rgba(255,255,255,.68);
  font-size: 17px; font-weight: 400;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }
.hero-phone { color: rgba(255,255,255,.75); font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.hero-phone:hover { color: white; }
.hero-stats { display: flex; gap: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat .num { font-family: var(--f-head); font-size: 32px; color: white; line-height: 1; }
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .5px; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.35); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 1;
}
.scroll-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  font-family: var(--f-body); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all .25s; white-space: nowrap;
}
.btn-gold { background: var(--blue); color: white; box-shadow: 0 4px 20px rgba(37,99,235,.35); }
.btn-gold:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.45); }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--off); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--blue); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--navy); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 34px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION STRUCTURE ── */
section { padding: 96px 0; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--f-head);
  font-size: clamp(30px, 4vw, 46px);
  color: var(--navy); line-height: 1.15;
  letter-spacing: -.3px; margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 540px; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── SERVICES ── */
.services { background: var(--off); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: white; border-radius: var(--r-lg); padding: 32px;
  border: 1.5px solid var(--border);
  transition: all .25s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--border); transition: background .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201,148,58,.3); }
.service-card:hover::after { background: var(--gold); }
.service-card.highlight { border-color: var(--gold); }
.service-card.highlight::after { background: var(--gold); }
.popular-tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.svc-icon { font-size: 32px; margin-bottom: 18px; display: block; }
.svc-name { font-family: var(--f-head); font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.svc-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.svc-includes { margin-bottom: 24px; }
.svc-includes li {
  font-size: 13px; color: var(--dark); padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 9px;
}
.svc-includes li:last-child { border: none; }
.svc-includes li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 12px; }
.svc-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 22px; }
.svc-tier { background: var(--off); border-radius: 8px; padding: 10px 6px; text-align: center; }
.svc-tier .t-size { font-size: 9px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.svc-tier .t-price { display: block; font-size: 17px; font-weight: 700; color: var(--blue); margin: 3px 0 2px; font-family: var(--f-head); }
.svc-tier .t-label { font-size: 9px; color: var(--muted); }

/* ── BOAT TYPES ── */
.boat-types { background: white; }
.boats-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.boat-card {
  background: var(--off); border-radius: var(--r-lg); padding: 24px 12px;
  text-align: center; border: 1.5px solid var(--border);
  transition: all .2s; cursor: default;
}
.boat-card:hover { border-color: var(--gold); background: white; box-shadow: var(--shadow); transform: translateY(-3px); }
.boat-icon { font-size: 30px; margin-bottom: 10px; display: block; }
.boat-name { font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: .3px; line-height: 1.3; }

/* ── SERVICE AREA ── */
.area { background: var(--dark); color: white; }
.area .section-title { color: white; }
.area .section-sub { color: rgba(255,255,255,.6); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.area-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.area-tag {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 12px 16px;
  font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.area-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-lt); flex-shrink: 0; }
.lakehouse-card {
  background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--r-lg); padding: 32px;
}
.lakehouse-card h3 { font-family: var(--f-head); font-size: 22px; color: var(--gold-lt); margin-bottom: 10px; }
.lakehouse-card p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 20px; }

/* ── HOW IT WORKS ── */
.how { background: var(--off); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: ''; position: absolute;
  top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: var(--border); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: white; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--f-head); font-size: 20px; color: var(--gold);
  box-shadow: var(--shadow);
}
.step h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--off); border-radius: var(--r-lg); padding: 28px;
  border: 1.5px solid var(--border); transition: all .2s;
}
.review-card:hover { border-color: rgba(201,148,58,.3); box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 14px; flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.reviewer-detail { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── CTA ── */
.cta { background: linear-gradient(135deg, #0D1220 0%, #080B12 100%); border-top: 1px solid rgba(37,99,235,.2); text-align: center; padding: 96px 0; }
.cta h2 { font-family: var(--f-head); font-size: clamp(32px, 5vw, 52px); color: white; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,.7); font-size: 17px; margin-bottom: 40px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #080B12; border-top: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.5); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-col .contact-line { display: flex; align-items: center; gap: 8px; font-size: 13.5px; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; }

/* ── BOOKING PAGE ── */
.page-hero {
  background: linear-gradient(135deg, #080B12 0%, #0D1829 100%);
  border-bottom: 1px solid rgba(37,99,235,.15);
  padding: 130px 0 56px; color: white; text-align: center;
}
.page-hero h1 { font-family: var(--f-head); font-size: clamp(32px, 5vw, 50px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 16px; }

.booking-wrap { padding: 60px 0; background: var(--off); }
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.booking-card { background: white; border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow); }
.booking-card h2 { font-family: var(--f-head); font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.booking-card > p { font-size: 13.5px; color: var(--muted); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-group { display: flex; flex-direction: column; }
.f-group.full { grid-column: 1 / -1; }
.f-group label { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 7px; letter-spacing: .3px; text-transform: uppercase; }
.f-group label span { color: var(--red); }
.f-group input, .f-group select, .f-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--f-body); font-size: 14px;
  color: var(--dark); outline: none; transition: border .2s, box-shadow .2s;
  background: white;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,79,138,.08);
}
.f-group textarea { resize: vertical; min-height: 90px; }
.form-rule { grid-column: 1 / -1; border: none; border-top: 1px solid var(--border); margin: 4px 0; }
.form-section { grid-column: 1 / -1; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: -4px; }
.form-footer { grid-column: 1 / -1; margin-top: 6px; }
.estimate-pill {
  display: flex; align-items: center; justify-content: space-between;
  grid-column: 1 / -1;
  background: rgba(27,79,138,.05); border: 1.5px solid rgba(27,79,138,.15);
  border-radius: var(--r); padding: 14px 20px;
}
.estimate-pill .e-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.estimate-pill .e-price { font-family: var(--f-head); font-size: 28px; color: var(--blue); font-weight: 700; }
.cal-note { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* sidebar */
.sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card { background: white; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-card); border: 1.5px solid var(--border); }
.sidebar-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.price-ref { width: 100%; border-collapse: collapse; }
.price-ref th { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; padding: 6px 4px; text-align: left; border-bottom: 1.5px solid var(--border); }
.price-ref td { font-size: 12px; padding: 8px 4px; border-bottom: 1px solid var(--border); color: var(--dark); }
.price-ref td:not(:first-child) { text-align: center; font-weight: 600; color: var(--blue); }
.price-ref tr:last-child td { border: none; }
.contact-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.contact-row:last-child { margin: 0; }
.success-state { display: none; text-align: center; padding: 48px 24px; }
.success-state.show { display: block; }
.success-state .s-icon { font-size: 56px; margin-bottom: 16px; display: block; }
.success-state h3 { font-family: var(--f-head); font-size: 26px; color: var(--navy); margin-bottom: 10px; }
.success-state p { color: var(--muted); font-size: 14.5px; }

/* ── SUPPLIES & EXPENSES (keep functional) ── */
.inner-page { padding: 60px 0; background: var(--off); min-height: 80vh; }
.kit-tabs { display: flex; gap: 6px; background: white; padding: 5px; border-radius: 10px; width: fit-content; margin: 36px 0 28px; border: 1.5px solid var(--border); }
.kit-tab { padding: 10px 22px; border: none; background: transparent; border-radius: 8px; font-family: var(--f-body); font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .2s; }
.kit-tab.active { background: var(--navy); color: white; }
.kit-content { display: none; }
.kit-content.active { display: block; }
.kit-header { background: var(--dark); color: white; border-radius: var(--r-lg); padding: 32px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(37,99,235,.2); }
.kit-header h2 { font-family: var(--f-head); font-size: 26px; margin-bottom: 6px; }
.kit-header p { color: rgba(255,255,255,.6); font-size: 13px; }
.kit-total .t-label { font-size: 12px; color: rgba(255,255,255,.5); }
.kit-total .t-price { font-family: var(--f-head); font-size: 36px; color: var(--gold-lt); }
.kit-total .t-note { font-size: 11px; color: rgba(255,255,255,.4); }
.supplies-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); margin-bottom: 20px; border: 1.5px solid var(--border); }
.supplies-table thead { background: var(--dark); }
.supplies-table th { padding: 13px 18px; text-align: left; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .5px; }
.supplies-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--dark); }
.supplies-table tr:last-child td { border: none; }
.supplies-table tr:hover td { background: rgba(27,79,138,.02); }
.price-cell { font-weight: 700; color: var(--blue); }
.badge { display: inline-block; padding: 3px 9px; border-radius: 100px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; }
.badge-essential { background: rgba(5,150,105,.1); color: var(--green); }
.badge-optional  { background: rgba(201,148,58,.1); color: var(--gold); }
.badge-tool      { background: rgba(27,79,138,.1); color: var(--blue); }
.profit-calc { background: white; border-radius: var(--r-lg); padding: 28px; margin-top: 24px; border: 1.5px solid var(--border); }
.profit-calc h3 { font-family: var(--f-head); font-size: 20px; color: var(--navy); margin-bottom: 18px; }
.calc-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.calc-box { background: var(--off); border-radius: var(--r); padding: 18px; text-align: center; border: 1.5px solid var(--border); }
.calc-box .val { font-family: var(--f-head); font-size: 26px; font-weight: 700; display: block; margin-bottom: 4px; }
.calc-box .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.c-green { color: var(--green); }
.c-blue  { color: var(--blue); }
.c-gold  { color: var(--gold); }
.c-navy  { color: var(--navy); }

/* expenses */
.exp-layout { display: grid; grid-template-columns: 360px 1fr; gap: 24px; align-items: start; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.stat-box { background: white; border-radius: var(--r); padding: 20px; border: 1.5px solid var(--border); }
.stat-box.rev { border-left: 3px solid var(--green); }
.stat-box.exp { border-left: 3px solid var(--red); }
.stat-box.pro { border-left: 3px solid var(--blue); }
.stat-box.mar { border-left: 3px solid var(--gold); }
.stat-box .val { font-family: var(--f-head); font-size: 24px; font-weight: 700; display: block; margin-bottom: 3px; }
.stat-box.rev .val { color: var(--green); }
.stat-box.exp .val { color: var(--red); }
.stat-box.pro .val { color: var(--blue); }
.stat-box.mar .val { color: var(--gold); }
.stat-box .lbl { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .3px; }
.exp-form-card { background: white; border-radius: var(--r-lg); padding: 28px; border: 1.5px solid var(--border); }
.exp-form-card h3 { font-family: var(--f-head); font-size: 18px; color: var(--navy); margin-bottom: 18px; }
.tab-row { display: flex; gap: 4px; background: var(--off); padding: 4px; border-radius: 8px; margin-bottom: 18px; }
.tab-btn { flex: 1; padding: 10px; border: none; background: transparent; border-radius: 6px; font-family: var(--f-body); font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .2s; }
.tab-btn.active { background: white; color: var(--blue); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.entries-card { background: white; border-radius: var(--r-lg); border: 1.5px solid var(--border); overflow: hidden; }
.entries-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1.5px solid var(--border); }
.entries-head h3 { font-size: 15px; font-weight: 700; color: var(--navy); }
.entries-table { width: 100%; border-collapse: collapse; }
.entries-table th { padding: 11px 18px; font-size: 10px; font-weight: 700; color: var(--grey-lt); text-transform: uppercase; letter-spacing: .5px; text-align: left; background: var(--off); border-bottom: 1px solid var(--border); }
.entries-table td { padding: 13px 18px; font-size: 13px; border-bottom: 1px solid var(--border); color: var(--dark); }
.entries-table tr:last-child td { border: none; }
.amt-rev { color: var(--green); font-weight: 700; }
.amt-exp { color: var(--red); font-weight: 700; }
.del-btn { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 14px; padding: 4px 6px; border-radius: 4px; transition: all .2s; }
.del-btn:hover { color: var(--red); background: rgba(220,38,38,.08); }
.empty { text-align: center; padding: 48px; color: var(--muted); }
.empty .e-icon { font-size: 40px; margin-bottom: 10px; display: block; }
.empty p { font-size: 13px; }

/* ── DATE / TIME PICKER ── */
.date-btn, .time-btn {
  padding: 10px 14px; border-radius: 8px;
  border: 1.5px solid var(--border); background: white;
  font-family: var(--f-body); font-size: 13px; font-weight: 600;
  color: var(--dark); cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.date-btn:hover, .time-btn:hover {
  border-color: var(--blue); color: var(--blue);
  background: rgba(37,99,235,.04);
}
.date-btn.selected, .time-btn.selected {
  background: var(--blue); color: white;
  border-color: var(--blue); box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.date-btn .d-day { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: .65; margin-bottom: 2px; }
.date-btn .d-date { display: block; font-size: 14px; }
.date-btn.selected .d-day { opacity: .8; }

/* notification */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: white; border-radius: 10px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; z-index: 9999;
  transform: translateX(120%); transition: transform .35s ease;
  max-width: 300px;
}
.toast.show { transform: translateX(0); }
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .boats-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .exp-layout { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .calc-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .f-group.full { grid-column: 1; }
  .form-section, .form-rule, .form-footer, .estimate-pill { grid-column: 1; }
}
@media (max-width: 540px) {
  .boats-grid { grid-template-columns: repeat(3, 1fr); }
  .area-locations { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-divider { display: none; }
  .kit-header { flex-direction: column; gap: 16px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
