/* ---------- CCA theme — matched to legacy site visual language ----------
   Palette (sampled from screenshots):
     --cca-primary         #0b27b2  royal blue — nav, CTA bands, buttons
     --cca-primary-dark    #091e8f  hover
     --cca-accent          #18b6e4  light cyan accent
     --cca-ink             #0f172a  body text
     --cca-ink-soft        #475569
----------------------------------*/
:root {
  --cca-primary: #0b27b2;
  --cca-primary-dark: #091e8f;
  --cca-accent: #18b6e4;
  --cca-ink: #0f172a;
  --cca-ink-soft: #475569;
  --cca-bg-soft: #f4f7fb;
  --cca-border: #e5eaf2;

  --bs-primary: #0b27b2;
  --bs-primary-rgb: 11, 39, 178;
  --bs-link-color: #0b27b2;
  --bs-link-hover-color: #091e8f;
}

html { font-size: 15px; }
@media (min-width: 768px) { html { font-size: 16px; } }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--cca-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body > main { flex: 1 0 auto; }
body > footer { flex-shrink: 0; }
h1, h2, h3, h4, h5 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Navbar (royal blue) ---------- */
.navbar.cca-nav {
  background: var(--cca-primary) !important;
  padding: .5rem 0;
}
.navbar.cca-nav .navbar-brand img {
  /* 64px gives wider 2:1-aspect logos (e.g. Stingray) enough room for the
     small text rows to remain readable, while 1.5:1-aspect logos (CCA)
     still sit comfortably. Mobile media query keeps this proportional. */
  height: 64px; width: auto; max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);  /* force logo white on blue nav */
}
.navbar.cca-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: .5rem 1rem;
  font-size: .98rem;
}
.navbar.cca-nav .nav-link:hover { opacity: .85; }
.navbar.cca-nav .btn-book {
  background: #fff;
  color: var(--cca-primary);
  font-weight: 600;
  border-radius: 999px;
  padding: .55rem 1.4rem;
  border: 0;
}
.navbar.cca-nav .btn-book:hover { background: #f0f5fa; color: var(--cca-primary-dark); }

.navbar.cca-nav .btn-portal {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  font-weight: 500;
  border-radius: 999px;
  padding: .5rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.navbar.cca-nav .btn-portal:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: #fff;
}
.navbar.cca-nav .cca-portal-menu .dropdown-toggle::after { display: none; }

.navbar.cca-nav .cca-user-menu .cca-user-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: #fff;
  padding: .35rem .55rem;
  border-radius: 999px;
}
.navbar.cca-nav .cca-user-menu .cca-user-toggle:hover { background: rgba(255,255,255,.12); }
.navbar.cca-nav .cca-user-avatar {
  width: 36px; height: 36px;
  background: #fff;
  color: var(--cca-primary);
  font-weight: 700;
  font-size: .82rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar.cca-nav .cca-user-name { font-weight: 500; font-size: .92rem; }
.navbar.cca-nav .cca-user-caret { font-size: .7rem; opacity: .8; }
.cca-user-menu .dropdown-menu { min-width: 240px; }
.cca-user-menu .dropdown-item { padding: .55rem 1rem; }

.navbar.cca-nav .navbar-toggler {
  border-color: rgba(255,255,255,.55);
  padding: .35rem .55rem;
}
.navbar.cca-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 .15rem rgba(255,255,255,.25);
}
.navbar.cca-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  filter: none;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--cca-primary);
  border-color: var(--cca-primary);
  font-weight: 500;
  border-radius: 999px;
  padding: .6rem 1.6rem;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--cca-primary-dark);
  border-color: var(--cca-primary-dark);
}
.btn-outline-light { border-radius: 999px; padding: .6rem 1.6rem; }
.btn-outline-primary {
  color: var(--cca-primary);
  border-color: var(--cca-primary);
  border-radius: 999px;
  padding: .55rem 1.4rem;
}
.btn-outline-primary:hover { background: var(--cca-primary); border-color: var(--cca-primary); }
.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 20, 70, .25), rgba(6, 20, 70, .45)),
    url("/uploads/migrated/coawebsite-2025-NEW.jpg") center/cover no-repeat;
}
.hero-video .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero-video .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(6,20,70,.25), rgba(6,20,70,.45));
  z-index: 1;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  max-width: 960px;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero h1 strong { font-weight: 800; }

/* Hero CTA — orange gradient pill that stands out against the blue/teal
   video poster. Pulse-free (the floating Offers button already pulses);
   we keep this static so the user reads it as a confident primary action. */
.btn-hero-cta {
  background: linear-gradient(135deg, #ff8a1a, #ff5a1a);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .85rem 2.4rem;
  font-size: 1.1rem;
  box-shadow: 0 12px 28px rgba(255, 90, 26, .35);
  text-decoration: none;
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-hero-cta:hover {
  background: linear-gradient(135deg, #ff7a0a, #f04a0a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 90, 26, .45);
}

/* ---------- Royal-blue CTA band ---------- */
.cta-band {
  background: var(--cca-primary);
  color: #fff;
  padding: 2.5rem 0;
}
.cta-band h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 500;
}
.cta-band h2 strong { font-weight: 800; }
.cta-band .btn {
  background: #fff; color: var(--cca-primary);
  border-radius: 999px; font-weight: 600;
  padding: .6rem 1.6rem; border: 0;
  white-space: nowrap;
}
.cta-band .btn:hover { background: #f0f5fa; }
/* Book Now in a CTA band gets the orange CTA treatment so it stands out
   next to the secondary "Check it out!" pill — primary action is obvious
   at a glance. */
.cta-band .btn-book {
  background: linear-gradient(135deg, #ff8a1a, #ff5a1a);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 90, 26, .3);
}
.cta-band .btn-book:hover {
  background: linear-gradient(135deg, #ff7a0a, #f04a0a);
  color: #fff;
  box-shadow: 0 9px 20px rgba(255, 90, 26, .42);
}
.cta-band-actions { justify-content: flex-end; }
@media (max-width: 768px) {
  .cta-band-actions { justify-content: center; width: 100%; }
}

/* ---------- Tour cards (text overlaid on image) ---------- */
.tour-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  color: #fff !important;
  text-decoration: none !important;
  background: #0b4e6b;
  box-shadow: 0 6px 20px rgba(11,39,178,.10);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tour-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.tour-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.45));
}
.tour-card .tour-title {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: .02em;
  z-index: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.tour-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(11,39,178,.2); }
.tour-card:hover img { transform: scale(1.05); }

/* ---------- About band (hero-style parallax strip) ---------- */
.about-band {
  position: relative;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(7,30,90,.25), rgba(7,30,90,.45)),
    url("/uploads/migrated/coawebsite-2025-NEW.jpg") center/cover no-repeat;
  padding: 4rem 1rem;
}
.about-band p {
  max-width: 900px;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
  margin: 0 auto;
}
.about-band strong { font-weight: 800; }

/* ---------- Gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: .5rem;
  overflow: hidden;
  background: #eef2f8;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Identity pages (Login / Register / etc.) ---------- */
body.identity-page main {
  background: var(--cca-bg-soft);
  min-height: 70vh;
  padding: 3rem 1rem;
}
body.identity-page main > * {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
body.identity-page main h1 {
  text-align: center;
  margin-bottom: 1.25rem;
}
body.identity-page main h2 {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cca-ink-soft);
  margin-bottom: 1.5rem;
}
/* Stand-alone paragraphs (RegisterConfirmation, ForgotPasswordConfirmation, etc.) */
body.identity-page main > p,
body.identity-page main > div > p:only-child,
body.identity-page main > section > p {
  background: #fff;
  padding: 1.75rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(11, 39, 178, .08);
  border: 1px solid var(--cca-border);
  text-align: center;
  font-size: 1rem;
  line-height: 1.55;
}
body.identity-page main > p::before,
body.identity-page main > div > p:only-child::before {
  content: "✉ Check your inbox";
  display: inline-block;
  padding: .45em .9em;
  font-size: .78em;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: var(--cca-primary);
  border-radius: 50rem;
  letter-spacing: .02em;
  margin-bottom: 1rem;
}
body.identity-page main hr {
  display: none;
}
body.identity-page main form {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(11, 39, 178, .08);
  border: 1px solid var(--cca-border);
}
/* Identity secondary links (Forgot password / Resend email / etc.) */
body.identity-page form p {
  text-align: center;
  font-size: .85rem;
  margin: .5rem 0 0;
}
body.identity-page form p a {
  color: var(--cca-ink-soft);
  text-decoration: none;
}
body.identity-page form p a:hover {
  color: var(--cca-primary);
  text-decoration: underline;
}
body.identity-page .cca-identity-cross {
  border-top: 1px solid var(--cca-border);
  padding-top: 1rem;
  margin-top: 1rem !important;
  font-size: .9rem !important;
}
body.identity-page .cca-identity-cross a {
  color: var(--cca-primary) !important;
  font-weight: 600;
}

/* Hide the empty "external services" column — we don't have any wired up */
body.identity-page main > .row > .col-md-6:nth-child(2),
body.identity-page main > .row > .col-md-4:nth-child(2),
body.identity-page main section + section {
  display: none;
}
body.identity-page main > .row > .col-md-6:first-child,
body.identity-page main > .row > .col-md-4:first-child {
  flex: 0 0 100%;
  max-width: 100%;
}

/* ---------- Charter detail page ---------- */
.charter-detail .col-lg-5,
.charter-detail .col-lg-7 { display: flex; flex-direction: column; }
.charter-sidebar { position: sticky; top: 80px; }

.charter-main-img-wrap {
  border-radius: .75rem; overflow: hidden;
  background: #eef2f8;
}
.charter-main-img {
  width: 100%; max-height: 440px; object-fit: cover;
  display: block; transition: opacity .2s;
}
.charter-thumbs {
  display: flex; gap: .5rem; overflow-x: auto;
  padding-bottom: 4px;
}
.charter-thumb {
  width: 80px; height: 60px; object-fit: cover;
  border-radius: .4rem; cursor: pointer;
  border: 2px solid transparent;
  opacity: .7;
  transition: opacity .15s, border-color .15s;
  flex-shrink: 0;
}
.charter-thumb:hover { opacity: 1; }
.charter-thumb.active {
  border-color: var(--cca-primary);
  opacity: 1;
}
.charter-long-desc { line-height: 1.7; }
.charter-long-desc h2, .charter-long-desc h3 { margin-top: 1.5rem; }

/* ---------- Mandatory field red star ---------- */
form .form-label:has(+ input[required])::after,
form .form-label:has(+ textarea[required])::after,
form .form-label:has(+ select[required])::after {
  content: ' *';
  color: #dc2626;
  font-weight: 600;
}

/* ---------- Card form loader ---------- */
.cca-card-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 42px;
}

/* ---------- Compact calendar variant ---------- */
.cca-cal-compact { padding: .5rem; font-size: .85rem; }
.cca-cal-compact .cca-cal-head { margin-bottom: .35rem; }
.cca-cal-compact .cca-cal-title { font-size: .8rem; }
.cca-cal-compact .cca-cal-nav { width: 28px; height: 28px; font-size: .9rem; }
.cca-cal-compact .cca-cal-dow span { font-size: .65rem; }
.cca-cal-compact .cca-cal-grid { gap: 2px; }
.cca-cal-compact .cca-cal-cell { font-size: .8rem; }
.cca-cal-compact .cca-cal-cell .dot { width: 4px; height: 4px; }

/* ---------- Inline calendar widget ---------- */
.cca-cal {
  border: 1px solid var(--cca-border);
  border-radius: .5rem;
  padding: .75rem;
  background: #fff;
}
.cca-cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}
.cca-cal-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .03em;
}
.cca-cal-nav {
  background: transparent;
  border: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--cca-ink);
}
.cca-cal-nav:hover { background: var(--cca-bg-soft); color: var(--cca-primary); }

.cca-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: .72rem;
  color: var(--cca-ink-soft);
  text-align: center;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.cca-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cca-cal-cell {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: .9rem;
  color: var(--cca-ink-soft);
  position: relative;
}
.cca-cal-cell.empty { visibility: hidden; }
.cca-cal-cell.past { color: #cbd5e1; }
.cca-cal-cell.available {
  color: var(--cca-primary);
  font-weight: 600;
  cursor: pointer;
  background: rgba(11, 39, 178, .06);
}
.cca-cal-cell.available:hover { background: rgba(11, 39, 178, .15); }
.cca-cal-cell.selected,
.cca-cal-cell.available.selected {
  background: var(--cca-primary);
  color: #fff;
}
.cca-cal-cell .dot {
  width: 5px; height: 5px;
  background: currentColor;
  border-radius: 50%;
  margin-top: 2px;
  opacity: .7;
}

.cca-av-slots-panel {
  background: var(--cca-bg-soft);
  border-radius: .5rem;
  padding: .75rem;
}
.cca-av-selected-date { color: var(--cca-ink); }

/* ---------- Inline availability widget (legacy) ---------- */
.cca-av-results { max-height: 320px; overflow-y: auto; padding-right: 6px; }
.cca-av-day {
  border-top: 1px solid var(--cca-border);
  padding: .75rem 0;
}
.cca-av-day:first-child { border-top: 0; padding-top: 0; }
.cca-av-date {
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: .5rem;
}
.cca-av-slots {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.cca-av-slot {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem .9rem;
  border: 1px solid var(--cca-primary);
  color: var(--cca-primary);
  border-radius: .5rem;
  text-decoration: none;
  font-size: .9rem;
  min-width: 82px;
  transition: all .12s ease;
}
.cca-av-slot:hover {
  background: var(--cca-primary);
  color: #fff;
  text-decoration: none;
}
.cca-av-slot small {
  font-size: .72rem;
  opacity: .75;
  margin-top: 2px;
}

/* ---------- Responsive polish ---------- */
@media (max-width: 991.98px) {
  .hero { min-height: 55vh; }
  .hero h1 { font-size: 1.6rem; line-height: 1.35; padding: 0 1rem; }
  .about-band p { font-size: 1.05rem; padding: 0 1rem; }
  .navbar.cca-nav .navbar-brand img { height: 50px; max-width: 180px; }

  /* Collapsed navbar: give the menu room to breathe and turn the CTA
     buttons into clearly-separated full-width(ish) actions instead of
     cramped inline pills. Adds a subtle hairline separator above the
     buttons so they read as primary actions rather than another nav
     link. */
  .navbar.cca-nav .navbar-collapse {
    margin-top: .5rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .15);
  }
  .navbar.cca-nav .navbar-nav { margin-bottom: .5rem; }
  .navbar.cca-nav .btn-book {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: .75rem auto 0;
    padding: .7rem 1.4rem;
    font-size: 1rem;
    text-align: center;
  }
  .navbar.cca-nav .cca-portal-menu,
  .navbar.cca-nav .cca-user-menu {
    margin: .6rem auto 0;
    display: flex;
    justify-content: center;
  }
  .navbar.cca-nav .btn-portal {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: .55rem 1.2rem;
  }
}
@media (max-width: 768px) {
  .navbar.cca-nav { padding: .4rem 0; }
  .navbar.cca-nav .nav-link { padding: .6rem 1rem; font-size: .95rem; }
  .cta-band { padding: 1.5rem 1rem; text-align: center; }
  .cta-band h2 { font-size: 1.2rem; margin-bottom: .75rem; }
  .tour-card .tour-title { font-size: 1.3rem; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .photo-strip img { height: 150px; }
  /* Social rail on phones: smaller, tighter, still horizontal at bottom-right. */
  .cca-float-social { gap: 6px; right: 8px; bottom: 8px; }
  .cca-float-social a { width: 38px; height: 38px; }
  .cca-float-social a svg { width: 18px; height: 18px; }
  .cca-back { display: block; margin-bottom: .75rem; }
  .reviews-section { padding: 2rem 0; }
  .reviews-section h2 { font-size: 1.4rem; }
  /* Footer centered on small screens */
  .cca-footer { text-align: center; }
  .cca-footer .row > * { text-align: center; }
  .cca-footer ul { padding-left: 0; }
  .cca-footer p { text-align: center; }
  .cca-footer .follow-us { display: flex; flex-direction: column; align-items: center; }
  .cca-footer .follow-us > div { justify-content: center; }
  .cca-footer .d-md-flex { flex-direction: column; gap: .5rem; text-align: center; }
  .cca-footer img { margin: 0 auto 1rem; display: block; }
}
@media (max-width: 480px) {
  html { font-size: 14.5px; }
  .hero h1 { font-size: 1.35rem; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .tour-card { aspect-ratio: 4 / 3; }
  .cca-cal-cell { font-size: .78rem; }
  .gallery-grid { gap: .5rem; }
}

/* ---------- Page back links ---------- */
.cca-back {
  display: inline-block;
  font-size: .9rem;
  color: var(--cca-ink-soft);
  text-decoration: none;
  margin-bottom: 1rem;
}
.cca-back:hover { color: var(--cca-primary); }

/* ---------- My account dashboard ---------- */
.ma-stat {
  background: #fff;
  border: 1px solid var(--cca-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ma-stat-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ma-tile {
  display: block;
  background: #fff;
  border: 1px solid var(--cca-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--cca-ink);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  height: 100%;
}
.ma-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,39,178,.12);
  border-color: var(--cca-primary);
  color: var(--cca-ink);
}
.ma-tile-ico {
  font-size: 2rem;
  margin-bottom: .5rem;
}

/* ---------- Floating social column ---------- */
/* Social rail: vertical stack pinned to the bottom-right corner. The
   left side is reserved for the floating Offers button so the two
   widgets never collide. */
.cca-float-social {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex; flex-direction: column;
  gap: 12px;
  z-index: 1050;
}
.cca-float-social a {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cca-float-social a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,.28);
  color: #fff;
}
.cca-float-social .fs-whatsapp { background: #25d366; }
.cca-float-social .fs-facebook { background: #1877f2; }
.cca-float-social .fs-instagram {
  background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.cca-float-social .fs-phone { background: var(--cca-primary); }
@media (max-width: 640px) {
  .cca-float-social { right: 10px; bottom: 10px; gap: 10px; }
  .cca-float-social a { width: 42px; height: 42px; }
}

/* ---------- Charter long description ---------- */
/* The view converts bare newlines to <br/> before rendering, so plain-text
   descriptions break correctly. We only need typography here. */
.charter-long-desc {
  line-height: 1.55;
}
.charter-long-desc p { margin-bottom: 0.75rem; }

/* ---------- Curated reviews slider ---------- */
/* Horizontal slider showing 3 cards at a time on desktop, 2 on tablet, 1 on
   phones. Hand-picked TripAdvisor / Google review excerpts pasted into the
   reviews.embed_html setting. site.js auto-detects .cca-reviews-grid and
   wires prev/next arrows + auto-advance every 6s (paused on hover). Native
   scroll-snap means the carousel still works without JS. */
.cca-reviews-slider-wrap {
  position: relative;
  margin: 2rem 0;
}
.cca-reviews-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: .5rem .25rem;
  scrollbar-width: none; /* Firefox */
}
.cca-reviews-grid::-webkit-scrollbar { display: none; }
.cca-review-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.5rem 1.4rem 1.25rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cca-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .09);
}
@media (max-width: 992px) {
  .cca-review-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 640px) {
  .cca-review-card { flex: 0 0 88%; }
}

/* Slider arrow buttons (injected by site.js when there are 2+ cards). */
.cca-reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .12);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00aa6c;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.cca-reviews-prev { left: -18px; }
.cca-reviews-next { right: -18px; }
.cca-reviews-arrow:hover {
  background: #00aa6c;
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
@media (max-width: 768px) {
  .cca-reviews-prev { left: 4px; }
  .cca-reviews-next { right: 4px; }
}
.cca-review-stars {
  color: #00aa6c; /* TripAdvisor green */
  font-size: 1.05rem;
  letter-spacing: .12em;
  margin-bottom: .65rem;
  line-height: 1;
}
.cca-review-quote {
  font-size: .95rem;
  line-height: 1.55;
  color: #374151;
  flex: 1;
  margin: 0 0 1rem;
  font-style: italic;
}
.cca-review-quote::before { content: '\201C'; color: #00aa6c; font-size: 1.2em; line-height: 0; vertical-align: -0.15em; margin-right: .15em; }
.cca-review-quote::after  { content: '\201D'; color: #00aa6c; font-size: 1.2em; line-height: 0; vertical-align: -0.15em; margin-left: .15em; }
.cca-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  font-size: .82rem;
  color: #6b7280;
  border-top: 1px solid #f1f3f5;
  padding-top: .7rem;
  margin-top: auto;
}
.cca-review-author { font-weight: 700; color: #111827; }
.cca-review-source { color: #00aa6c; font-weight: 600; }
.cca-reviews-cta { text-align: center; margin-top: 1.25rem; }
.cca-reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #00aa6c;
  color: #fff;
  padding: .7rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(0, 170, 108, .25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cca-reviews-cta a:hover {
  background: #008e5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 170, 108, .35);
}

/* ---------- Announcement reopen button pulse ---------- */
/* The "Offers" floating button (defined inline in _AnnouncementModal.cshtml)
   gets a soft pulse so it draws the eye without looking spammy. Pulse is
   paused on hover so the user can read the label clearly. */
@keyframes cca-announce-pulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(255,90,26,.35), 0 0 0 0 rgba(255,138,26,.55); }
  50%      { box-shadow: 0 12px 28px rgba(255,90,26,.45), 0 0 0 14px rgba(255,138,26,0); }
}

/* ---------- Pay page polish ---------- */
.cca-pay-card {
  border: 1px solid #d8dee6;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .04);
}
/* Brand badges — pure CSS so we don't ship third-party logo PNGs.
   Each badge fakes the recognisable shape/colour of the network. */
.cca-pay-brands { line-height: 1; }
.cca-pay-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  min-width: 38px;
  padding: 0 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 1px solid #d8dee6;
  background: #fff;
}
.cca-pay-brand-visa     { color: #1a1f71; letter-spacing: .12em; font-style: italic; }
.cca-pay-brand-amex     { color: #2671b9; }
.cca-pay-brand-discover { color: #ff6000; font-size: 9.5px; }
/* Mastercard logo: two interlocking circles. Uses no text. */
.cca-pay-brand-mc {
  position: relative;
  width: 38px;
  padding: 0;
  font-size: 0;
  background: #fff;
}
.cca-pay-mc-l, .cca-pay-mc-r {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.cca-pay-mc-l { left: 7px;  background: #eb001b; }
.cca-pay-mc-r { right: 7px; background: #f79e1b; mix-blend-mode: multiply; }

/* Pay button — nudge to a slightly more confident shape; preserves the
   green "ready-to-pay" vibe but feels less default-Bootstrap. */
.cca-pay-btn {
  font-weight: 600;
  letter-spacing: .01em;
  padding: .85rem 1rem;
  box-shadow: 0 6px 16px rgba(25, 135, 84, .25);
  transition: transform .12s ease, box-shadow .12s ease;
}
.cca-pay-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(25, 135, 84, .32);
}

@media (max-width: 575.98px) {
  /* On phones the brand row has a tendency to push the title onto a second
     line; tighten gaps so it stays readable. */
  .cca-pay-brand { height: 22px; min-width: 34px; font-size: 10px; }
  .cca-pay-brand-mc { width: 34px; }
  .cca-pay-mc-l, .cca-pay-mc-r { width: 12px; height: 12px; }
  .cca-pay-mc-l { left: 6px; }
  .cca-pay-mc-r { right: 6px; }
}

/* ---------- Lightbox ---------- */
.cca-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1090;
  display: flex; align-items: center; justify-content: center;
}
.cca-lightbox[hidden] { display: none !important; }
.cca-lb-stage {
  max-width: 96vw; max-height: 96vh;
  text-align: center;
}
.cca-lb-img {
  max-width: 96vw; max-height: 82vh;
  object-fit: contain;
  border-radius: .4rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.55);
}
.cca-lb-caption {
  color: #fff; margin-top: .75rem;
  font-size: .95rem; opacity: .85;
  min-height: 1.4em;
}
.cca-lb-counter {
  color: #fff; opacity: .6; font-size: .85rem; margin-top: .25rem;
}
.cca-lightbox button {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 0;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.cca-lightbox button:hover { background: rgba(255,255,255,.22); }
.cca-lb-close { top: 18px; right: 18px; }
.cca-lb-prev  { left: 18px;  top: 50%; transform: translateY(-50%); }
.cca-lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .cca-lightbox button { width: 44px; height: 44px; font-size: 1.5rem; }
  .cca-lb-close { top: 10px; right: 10px; }
  .cca-lb-prev  { left: 6px; }
  .cca-lb-next  { right: 6px; }
}

/* ---------- Reviews section ---------- */
.reviews-section {
  background: var(--cca-bg-soft);
  padding: 4rem 0;
}
.reviews-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
/* Wrapper for the curated-reviews slider (and any legacy review widget).
   Uses the full container width so the 3-up slider can breathe. The white
   card chrome was removed when we moved off the third-party TA widget —
   each .cca-review-card now provides its own card surface. Legacy widgets
   (TA / iframe-based) still get scaled down via the rules below. */
.reviews-section .reviews-embed {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.reviews-section .reviews-embed iframe,
.reviews-section .reviews-embed svg,
.reviews-section .reviews-embed img {
  max-width: 100%;
  height: auto;
}
/* TripAdvisor self-serve widget specifically: force its default fixed widths
   to flex within the container, and centre any rating badge. */
.reviews-section .reviews-embed [class*="TA_"],
.reviews-section .reviews-embed [id^="TA_"] {
  max-width: 100% !important;
  margin: 0 auto !important;
  display: inline-block;
  vertical-align: top;
}
.reviews-section .reviews-embed ul.TA_links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reviews-placeholder {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 2rem; background: #fff; border-radius: 1rem;
  border: 1px dashed var(--cca-border);
  color: var(--cca-ink-soft);
}

/* ---------- Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.photo-strip img {
  width: 100%; height: 260px; object-fit: cover;
  border-radius: .5rem;
}
@media (max-width: 768px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip img { height: 180px; }
}

/* ---------- Generic cards ---------- */
.card {
  border: 1px solid var(--cca-border);
  border-radius: .75rem;
}

/* ---------- Footer ---------- */
.cca-footer {
  background: #181a1f;
  color: #e5e7eb;
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}
.cca-footer a { color: #e5e7eb; text-decoration: none; }
.cca-footer a:hover { color: #fff; text-decoration: underline; }
.cca-footer ul li { padding: .25rem 0; }
.cca-footer .follow-us a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  transition: background .15s ease, transform .15s ease;
}
.cca-footer .follow-us a:hover {
  transform: scale(1.1);
  color: #fff;
}
.cca-footer .follow-us a[aria-label="Instagram"]:hover { background: #e1306c; }
.cca-footer .follow-us a[aria-label="TikTok"]:hover    { background: #000; }
.cca-footer .follow-us a[aria-label="Facebook"]:hover   { background: #1877f2; }
.cca-footer .follow-us a[aria-label="WhatsApp"]:hover   { background: #25d366; }

/* ---------- Forms ---------- */
.form-control:focus, .form-select:focus {
  border-color: var(--cca-primary);
  box-shadow: 0 0 0 .2rem rgba(11, 39, 178, .15);
}
.breadcrumb a { color: var(--cca-primary); }
#cookie-consent a { color: #74c0fc !important; }
