/* =========================================================
   CharterBook — Global stylesheet
   Dark navy + electric cyan premium charter site
   ========================================================= */

:root {
  --bg: #060d1c;
  --bg-elevated: #0a1628;
  --bg-card: #0f1d36;
  --bg-card-2: #142648;
  --primary: #38bdf8;
  --primary-dark: #0ea5e9;
  --primary-light: #7dd3fc;
  --gold: #fbbf24;
  --text: #f1f5f9;
  --text-muted: rgba(241, 245, 249, 0.7);
  --text-subtle: rgba(241, 245, 249, 0.5);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

.container { max-width: 1240px; }
.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }

.text-muted-light { color: var(--text-muted) !important; }
.text-subtle { color: var(--text-subtle) !important; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== Navbar ===== */
.site-nav {
  background: transparent;
  transition: var(--transition);
  padding: 1.25rem 0;
}
.site-nav.scrolled {
  background: rgba(6, 13, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.brand-text {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  color: #fff;
}
.brand-dot { color: var(--primary); }
.brand-icon { color: var(--primary); font-size: 1.4rem; }
.site-nav .navbar-brand { color: #fff; }
.site-nav .nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 0.5rem 0.95rem !important;
  position: relative;
}
.site-nav .nav-link:hover { color: var(--text) !important; }
.site-nav .nav-link.active { color: var(--primary) !important; }
.site-nav .dropdown-toggle::after {
  border: none;
  content: "\F282";
  font-family: 'bootstrap-icons';
  font-size: 0.7rem;
  vertical-align: middle;
  margin-left: 0.25rem;
}
.services-dropdown {
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-top: 0.5rem !important;
  padding: 0.5rem;
  min-width: 240px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.services-dropdown .dropdown-item {
  color: var(--text-muted);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
}
.services-dropdown .dropdown-item:hover,
.services-dropdown .dropdown-item:focus {
  background: rgba(56, 189, 248, 0.1);
  color: var(--primary-light);
}
.cta-btn {
  background: var(--primary);
  color: #04111f !important;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cta-btn:hover {
  background: var(--primary-light);
  color: #04111f !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px rgba(56, 189, 248, 0.6);
}

.btn-primary,
.btn-cta-lg {
  background: var(--primary);
  color: #04111f;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-primary:hover,
.btn-cta-lg:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--primary-light) !important;
  color: #04111f !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(56, 189, 248, 0.5);
}
.btn-outline-light-soft {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 999px;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline-light-soft:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  color: var(--primary-light);
}

/* ===== Hero ===== */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-color: var(--bg);
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 28, 0.55) 0%, rgba(6, 13, 28, 0.85) 60%, var(--bg) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 999px;
  color: var(--primary-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: rgba(56, 189, 248, 0.05);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.page-hero { min-height: 60vh; }

/* ===== Section headers ===== */
.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Service Cards ===== */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(56, 189, 248, 0.2);
}
.service-card-img {
  height: 240px;
  overflow: hidden;
  background: var(--bg-card-2);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-card-desc { color: var(--text-muted); margin-bottom: 1.5rem; flex: 1; }
.service-card-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  align-self: flex-start;
}
.service-card-link:hover { color: var(--primary-light); gap: 0.75rem; }

/* ===== Feature Blocks ===== */
.feature-block {
  text-align: left;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 100%;
  transition: var(--transition);
}
.feature-block:hover {
  background: var(--bg-card-2);
  border-color: rgba(56, 189, 248, 0.25);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
}
.feature-title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-desc { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ===== Fleet Gallery ===== */
.fleet-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
}
.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.fleet-card:hover img { transform: scale(1.12); }
.fleet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 13, 28, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.fleet-card-tag {
  font-size: 0.7rem;
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.fleet-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0;
  color: #fff;
}
.fleet-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.fleet-filter-btn {
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.fleet-filter-btn:hover { color: var(--text); border-color: var(--primary); }
.fleet-filter-btn.active {
  background: var(--primary);
  color: #04111f;
  border-color: var(--primary);
}

/* ===== Steps ===== */
.step-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.step-row:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  line-height: 1;
  min-width: 90px;
}
.step-content h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.step-content p { color: var(--text-muted); font-size: 1.05rem; margin: 0; }

/* ===== Booking Form ===== */
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 3rem;
}
.form-label {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.form-control,
.form-select {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  transition: var(--transition);
  font-size: 0.95rem;
}
.form-control:focus,
.form-select:focus {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}
.form-control::placeholder { color: var(--text-subtle); }
.form-select option { background: var(--bg-elevated); color: var(--text); }
.invalid-feedback { color: #fda4af; font-size: 0.825rem; }
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
  border-color: #fda4af;
}
input[type="date"], input[type="time"] { color-scheme: dark; }

.recent-inquiries {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.recent-inquiries h5 { font-size: 1.1rem; margin-bottom: 1rem; }
.inquiry-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.inquiry-row:last-child { border-bottom: none; }
.inquiry-tag {
  background: rgba(56, 189, 248, 0.12);
  color: var(--primary-light);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 3rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.15em;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 2rem;
}
.testimonial-author-name { font-weight: 600; color: var(--text); }
.testimonial-author-role { color: var(--text-subtle); font-size: 0.85rem; }
#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
  width: 48px;
  opacity: 0.5;
}
#testimonialsCarousel .carousel-indicators {
  bottom: -3rem;
  margin-bottom: 0;
}
#testimonialsCarousel .carousel-indicators [data-bs-target] {
  width: 30px;
  height: 4px;
  background-color: var(--text-subtle);
  border: none;
  border-radius: 2px;
  opacity: 0.7;
}
#testimonialsCarousel .carousel-indicators .active {
  background-color: var(--primary);
  opacity: 1;
}

/* ===== Pricing ===== */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-6px);
}
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.08), var(--bg-card));
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #04111f;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-name { font-size: 1.3rem; margin-bottom: 0.25rem; }
.pricing-tier { color: var(--text-subtle); font-size: 0.85rem; margin-bottom: 1.5rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.pricing-amount .from {
  font-size: 0.8rem;
  color: var(--text-subtle);
  font-weight: 400;
  font-family: var(--font-sans);
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-amount .unit {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-sans);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2rem;
  flex: 1;
}
.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.pricing-features li i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ===== FAQ Accordion ===== */
.accordion-item {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  color: var(--text);
}
.accordion-button {
  background: var(--bg-card);
  color: var(--text) !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: var(--bg-card-2);
  color: var(--primary-light) !important;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}
.accordion-button::after {
  filter: invert(1) brightness(2);
}
.accordion-body {
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 0 1.5rem 1.5rem;
}

/* ===== CTA Strip ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  margin-bottom: 1rem;
  position: relative;
}
.cta-strip p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
  position: relative;
  font-size: 1.05rem;
}
.cta-strip .btn { position: relative; }

/* ===== Stats ===== */
.stat { text-align: center; padding: 2rem 1rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== About ===== */
.value-card {
  padding: 2rem;
  border-left: 3px solid var(--primary);
  background: var(--bg-card);
  border-radius: 0 16px 16px 0;
  height: 100%;
}
.value-card h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.value-card p { color: var(--text-muted); margin: 0; }

/* ===== Contact ===== */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
}
.contact-card .contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.contact-card h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  margin-bottom: 0.6rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.contact-card p { color: var(--text); font-size: 1.05rem; margin: 0; }
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--primary); }
.map-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, #0f1d36 25%, #142648 25%, #142648 50%, #0f1d36 50%, #0f1d36 75%, #142648 75%, #142648 100%);
  background-size: 40px 40px;
}
.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(6, 13, 28, 0.6) 80%);
}
.map-card .map-pin {
  position: relative;
  z-index: 2;
  background: var(--primary);
  color: #04111f;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
}
.map-card .map-pin i { font-size: 1.25rem; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  margin-top: 5rem;
  color: var(--text-muted);
  padding: 5rem 0 2rem;
}
.footer-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.93rem;
}
.footer-links a:hover { color: var(--primary); }
.footer-contact { color: var(--text-muted); padding-left: 0; list-style: none; }
.footer-contact li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-contact i { color: var(--primary); }
.social-links { display: flex; gap: 0.6rem; }
.social-links a {
  color: var(--text-muted);
  font-size: 1.05rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
}
.social-links a:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.footer-divider {
  border-color: var(--border);
  margin: 2.5rem 0 1.5rem;
  opacity: 1;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
}
.footer-bottom a { color: var(--text-subtle); margin-left: 1rem; }
.footer-bottom a:hover { color: var(--primary); }
.newsletter-form .form-control {
  border-radius: 999px 0 0 999px;
  border-right: none;
}
.newsletter-form .btn {
  border-radius: 0 999px 999px 0;
  padding: 0 1.25rem;
}

/* ===== Toast ===== */
.cb-toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1080;
  display: flex;
  flex-direction: column;
}
.cb-toast {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  min-width: 320px;
  max-width: 380px;
  animation: slideInToast 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cb-toast.success { border-left: 4px solid #4ade80; }
.cb-toast.success .cb-toast-icon { color: #4ade80; }
.cb-toast.error { border-left: 4px solid #fda4af; }
.cb-toast.error .cb-toast-icon { color: #fda4af; }
.cb-toast-icon { font-size: 1.4rem; flex-shrink: 0; }
.cb-toast-title { font-weight: 600; margin-bottom: 0.15rem; }
.cb-toast-msg { color: var(--text-muted); font-size: 0.875rem; line-height: 1.4; }
@keyframes slideInToast {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== Reveal ===== */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-fade].in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Loading splash ===== */
.app-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.app-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.app-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.app-loader .brand-text { font-size: 1.7rem; }
.app-loader-bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.app-loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  animation: loaderBar 1.2s ease-in-out infinite;
}
@keyframes loaderBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .site-nav {
    background: rgba(6, 13, 28, 0.95);
    backdrop-filter: blur(16px);
    padding: 0.75rem 0;
  }
  .navbar-collapse {
    background: var(--bg-elevated);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border);
  }
  .site-nav .nav-link { padding: 0.75rem 0 !important; }
  .services-dropdown {
    background: transparent;
    border: none;
    padding-left: 1rem;
    box-shadow: none;
    margin-top: 0 !important;
  }
  .booking-card { padding: 1.75rem; }
  .step-row { flex-direction: column; gap: 1rem; padding: 2rem 0; }
  .step-number { font-size: 2.75rem; min-width: auto; }
  .cta-strip { padding: 2.5rem 1.5rem; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .section { padding: 4rem 0; }
  .hero { min-height: 80vh; padding: 7rem 0 3rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin-left: 0; margin-right: 1rem; }
}
