/* =========================================================
   Holiday Brokers — Light Luxury Design System (2026+)
   ========================================================= */

:root {
  --hb-bg:            #FFFFFF;
  --hb-surface:       #FFFFFF;
  --hb-surface-warm:  #F4F6F9;
  --hb-text:          #12161E;
  --hb-muted:         #5A6070;
  --hb-primary:       #0B1F3E;
  --hb-primary-hover: #162E58;
  --hb-accent:        #CF8E1A;
  --hb-accent-light:  #FEF0CC;
  --hb-line:          #E2E2E7;
  --hb-line-soft:     #EBEBF0;
  --hb-shadow:        0 20px 52px rgba(18,22,30,.10);
  --hb-shadow-soft:   0 8px 22px rgba(18,22,30,.07);
  --hb-shadow-card:   0 2px 10px rgba(18,22,30,.055);
  --hb-radius:        14px;
  --hb-radius-lg:     20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--hb-text);
  background: var(--hb-bg);
  line-height: 1.62;
}

/* ── Utilities ─────────────────────────────────────────── */
.text-muted-2  { color: var(--hb-muted) !important; }
.bg-surface    { background: var(--hb-surface) !important; }
.bg-warm       { background: var(--hb-surface-warm) !important; }
.rounded-xl    { border-radius: var(--hb-radius) !important; }
.shadow-premium{ box-shadow: var(--hb-shadow); }
.shadow-soft   { box-shadow: var(--hb-shadow-soft); }
.border-soft   { border: 1px solid var(--hb-line) !important; }
.section       { padding: 84px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } }

a.link-primary, .link-primary { color: var(--hb-primary) !important; }
a.link-primary:hover, .link-primary:hover { color: var(--hb-primary-hover) !important; }

.badge-soft {
  background: #F4F6F9;
  color: var(--hb-accent);
  border: 1px solid var(--hb-line-soft);
  font-weight: 700;
  letter-spacing: .3px;
}

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hb-accent);
  margin-bottom: .75rem;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  transition: background .28s ease, box-shadow .28s ease, padding .28s ease;
  padding: 20px 0;
}
.navbar .navbar-brand {
  letter-spacing: .1px;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff !important;
}
.navbar .brand-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hb-accent);
  margin-left: 4px;
  vertical-align: middle;
  margin-bottom: 2px;
}
.navbar .nav-link {
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: .95rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.navbar .nav-link:hover  { background: rgba(255,255,255,.12); color: #fff; }
.navbar .nav-link.active { background: rgba(255,255,255,.16); color: #fff; }

.navbar-scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(18,22,30,.07);
  padding: 12px 0;
}
.navbar-scrolled .navbar-brand { color: var(--hb-text) !important; }
.navbar-scrolled .nav-link     { color: var(--hb-text); }
.navbar-scrolled .nav-link:hover  { background: rgba(28,63,110,.07); color: var(--hb-primary); }
.navbar-scrolled .nav-link.active { background: rgba(28,63,110,.09); color: var(--hb-primary); }
.navbar-scrolled .navbar-toggler  { color: var(--hb-text) !important; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  border-radius: 999px;
  padding: .75rem 1.5rem;
  font-weight: 700;
  letter-spacing: .15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--hb-accent);
  border: none;
  color: #fff;
  box-shadow: 0 8px 22px rgba(207,142,26,.30);
}
.btn-primary:hover {
  background: #b87c14;
  box-shadow: 0 12px 30px rgba(207,142,26,.38);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.52);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.72);
  color: #fff;
}

.btn-outline-secondary {
  border: 1.5px solid var(--hb-line);
  color: var(--hb-text);
  background: transparent;
}
.btn-outline-secondary:hover {
  background: var(--hb-surface-warm);
  border-color: var(--hb-primary);
  color: var(--hb-primary);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero-carousel .carousel-item {
  min-height: 90vh;
  padding-top: 116px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}
.hero-carousel .carousel-item > .container.position-relative {
  min-height: calc(90vh - 188px);
  display: flex;
  align-items: flex-end;
}
.hero-carousel .carousel-item > .container.position-relative > .row { width: 100%; }

@media (max-width: 768px) {
  .hero-carousel .carousel-item {
    min-height: 86vh;
    padding-top: 98px;
    padding-bottom: 56px;
  }
  .hero-carousel .carousel-item > .container.position-relative {
    min-height: calc(86vh - 154px);
    align-items: flex-end;
  }
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero-carousel .carousel-item.active .hero-bg { transform: scale(1.00); }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(10,16,26,.80) 0%,
      rgba(10,16,26,.48) 38%,
      rgba(10,16,26,.18) 65%,
      rgba(10,16,26,.06) 100%
    ),
    linear-gradient(
      to right,
      rgba(10,16,26,.28) 0%,
      transparent 52%
    );
}

.hero-content { position: relative; padding-bottom: 1rem; }

.hero-eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hb-accent);
  margin-bottom: .85rem;
}

.hero-title {
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.04;
  color: #fff;
  text-shadow: 0 2px 18px rgba(10,16,26,.30);
}
.hero-sub {
  color: rgba(255,255,255,.84);
  font-size: 1.08rem;
  max-width: 50ch;
  text-shadow: 0 1px 8px rgba(10,16,26,.22);
}
.hero-kicker {
  color: rgba(255,255,255,.68);
  font-size: .86rem;
}
.hero-kicker i { color: rgba(184,133,58,.85); }

/* carousel indicators override — pill bars, left-aligned */
.hero-carousel .carousel-indicators {
  bottom: 20px;
  justify-content: flex-start;
  padding-left: 1.5rem;
  margin-bottom: 0;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 20px; height: 3px; border-radius: 2px;
  opacity: .38; border: none;
  transition: opacity .3s ease, width .3s ease, background .3s ease;
}
.hero-carousel .carousel-indicators [data-bs-target].active {
  width: 32px; opacity: 1;
  background: var(--hb-accent);
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: 56px; opacity: .55; }
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover { opacity: 1; }

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--hb-surface);
  border-bottom: 1px solid var(--hb-line);
  padding: 22px 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-stat {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hb-primary);
  letter-spacing: -.4px;
  line-height: 1.1;
}
.trust-label {
  font-size: .75rem;
  font-weight: 500;
  color: var(--hb-muted);
  line-height: 1.3;
}
.trust-divider {
  width: 1px; height: 32px;
  background: var(--hb-line);
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 767px) {
  .trust-divider { display: none; }
  .trust-bar .d-flex { flex-wrap: wrap; gap: 20px; justify-content: center; }
}

/* ── Feature Cards ───────────────────────────────────────── */
.feature-card {
  border-radius: var(--hb-radius);
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-left: 3px solid var(--hb-accent);
  box-shadow: var(--hb-shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hb-shadow-soft);
}
.b2b-cta-card {
  border-color: var(--hb-primary);
  background: #EEF3F9;
}
.b2b-cta-card:hover { background: #E5EDF6; }

.icon-bubble {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--hb-accent-light);
  color: var(--hb-accent);
  font-size: 1rem;
}

/* ── Photo Cards ─────────────────────────────────────────── */
.photo-card {
  position: relative;
  border-radius: var(--hb-radius);
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  height: 100%;
}
.photo-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
  will-change: transform;
}
.photo-card:hover .photo-card-bg {
  transform: scale(1.06);
}
.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(11,31,62,.88) 0%,
    rgba(11,31,62,.42) 55%,
    transparent 100%);
}
.photo-card-body {
  position: relative;
  z-index: 2;
}
.photo-card-icon {
  font-size: 1.15rem;
  color: var(--hb-accent);
  margin-bottom: .55rem;
}
.photo-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .3rem;
  line-height: 1.25;
}
.photo-card-text {
  font-size: .82rem;
  color: rgba(255,255,255,.76);
  margin: 0;
  line-height: 1.48;
}

/* ── Steps ───────────────────────────────────────────────── */
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--hb-primary);
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
}

/* ── Reveal animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-marquee {
  overflow: hidden;
  position: relative;
  --hb-ticker-distance: 0px;
  --hb-ticker-duration: 44s;
}
.testimonials-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.testimonials-marquee.is-ready .testimonials-track {
  animation: hbTicker var(--hb-ticker-duration) linear infinite;
}
.testimonials-marquee:hover .testimonials-track,
.testimonials-marquee:focus-within .testimonials-track {
  animation-play-state: paused;
}
.testimonial-item { flex: 0 0 clamp(260px, 27vw, 340px); }
@keyframes hbTicker {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(-1 * var(--hb-ticker-distance)), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee.is-ready .testimonials-track { animation: none; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.accordion-button {
  font-weight: 700;
  background: var(--hb-surface);
  color: var(--hb-text);
}
.accordion-button:not(.collapsed) {
  background: var(--hb-surface-warm);
  color: var(--hb-primary);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C3F6E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c%2fsvg%3e");
}
.accordion-item {
  border-color: var(--hb-line);
  border-radius: var(--hb-radius) !important;
  overflow: hidden;
  margin-bottom: 8px;
}
.accordion-body { padding-top: 0; color: var(--hb-muted); }

/* ── ROI Panel ───────────────────────────────────────────── */
.roi-panel {
  border-radius: var(--hb-radius);
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  box-shadow: var(--hb-shadow-soft);
}
.form-control, .form-select {
  border-radius: 10px;
  border-color: var(--hb-line);
  padding: .7rem .9rem;
  background: var(--hb-surface);
  color: var(--hb-text);
}
.form-control:focus, .form-select:focus {
  border-color: rgba(28,63,110,.42);
  box-shadow: 0 0 0 .18rem rgba(28,63,110,.10);
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }
.roi-kpi {
  border-radius: 12px;
  border: 1px solid var(--hb-line);
  background: var(--hb-surface-warm);
  padding: 14px;
  height: 100%;
}
.kpi-label { color: var(--hb-muted); font-weight: 700; font-size: .875rem; margin-bottom: .25rem; }
.kpi-value { font-weight: 900; font-size: 1.55rem; letter-spacing: -.4px; color: var(--hb-accent); }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: var(--hb-primary);
}
.cta-band h2 { color: #fff; }
.cta-band p  { color: rgba(255,255,255,.78) !important; }
.cta-band .btn-primary {
  box-shadow: 0 8px 24px rgba(207,142,26,.32);
  border: none;
  color: #fff;
}
.cta-band .btn-primary:hover {
  background: #b87c14;
  box-shadow: 0 12px 30px rgba(207,142,26,.42);
  color: #fff;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #0D1421;
  border-top: none;
}
.footer .fw-bold { color: #fff; }
.footer a { color: rgba(255,255,255,.60); text-decoration: none; transition: color .15s ease; }
.footer a:hover { color: #fff; }
.footer .text-muted-2 { color: rgba(255,255,255,.48) !important; }
.footer .brand-dot { background: var(--hb-accent); box-shadow: none; }
.footer .btn-primary {
  background: #25D366;
  box-shadow: 0 8px 22px rgba(37,211,102,.24);
  border: none;
  color: #fff;
}
.footer .btn-primary:hover {
  background: #1fba5a;
  box-shadow: 0 12px 28px rgba(37,211,102,.30);
  color: #fff;
}

/* ── Floating WhatsApp ───────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 1040;
  width: 52px; height: 52px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(37,211,102,.38);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37,211,102,.44);
  color: #fff;
}

/* ── B2B page ────────────────────────────────────────────── */
.b2b-hero {
  background: var(--hb-primary);
  position: relative;
  overflow: hidden;
  padding: 148px 0 100px;
}
.b2b-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.b2b-hero-glow {
  position: absolute;
  right: -160px; top: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,133,58,.22) 0%, transparent 65%);
  pointer-events: none;
}
.b2b-hero-glow-2 {
  position: absolute;
  left: -100px; bottom: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(36,82,138,.35) 0%, transparent 65%);
  pointer-events: none;
}

.b2b-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.b2b-stat {
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.b2b-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.b2b-stat-value {
  font-size: 2.2rem; font-weight: 900;
  color: var(--hb-accent);
  letter-spacing: -.5px;
  line-height: 1;
}
.b2b-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.58);
  margin-top: 5px;
  font-weight: 500;
}

.b2b-value-card {
  border-radius: var(--hb-radius);
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  box-shadow: var(--hb-shadow-card);
  padding: 28px;
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}
.b2b-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hb-shadow-soft);
}
.b2b-value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--hb-primary);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1rem;
  margin-bottom: 18px;
}

.b2b-how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.b2b-how-num {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--hb-primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: .92rem;
  background: var(--hb-primary);
}

.b2b-why-band {
  background: #0D1421;
  color: #fff;
}
.b2b-why-band .text-muted-2 { color: rgba(255,255,255,.55) !important; }
.b2b-why-band .eyebrow { color: var(--hb-accent); }

.b2b-track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.b2b-track-cell {
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-radius: var(--hb-radius);
  padding: 28px 24px;
}
.b2b-track-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--hb-primary);
  letter-spacing: -.5px;
  line-height: 1;
  margin-bottom: 8px;
}
.b2b-track-label {
  font-size: .82rem;
  color: var(--hb-muted);
  line-height: 1.45;
}
@media (max-width: 480px) {
  .b2b-track-grid { grid-template-columns: 1fr; }
}

.b2b-enquiry-panel {
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-radius: var(--hb-radius-lg);
  padding: 36px 32px;
  box-shadow: var(--hb-shadow-soft);
}
@media (max-width: 576px) {
  .b2b-enquiry-panel { padding: 24px 20px; }
}

.fw-600 { font-weight: 600; }

/* ── How It Works (editorial two-column) ─────────────── */
.how-steps-list { display: flex; flex-direction: column; }
.how-step-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--hb-line);
}
.how-step-row:last-child { border-bottom: none; }
.hb-photo-panel {
  border-radius: var(--hb-radius-lg);
  overflow: hidden; position: relative;
  min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(145deg, #1C3F6E, #0D2A4E);
}
.hb-photo-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: .65; transition: transform 6s ease;
}
.hb-photo-panel:hover .hb-photo-img { transform: scale(1.03); }
.hb-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,16,26,.78) 0%, transparent 55%);
}
.hb-photo-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--hb-accent); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.hb-photo-caption { position: relative; padding: 28px; }

/* ── Testimonials (pull-quote bar) ───────────────────── */
.hb-pull-quote {
  margin-top: 32px; background: var(--hb-primary);
  border-radius: var(--hb-radius); padding: 36px 40px;
  display: flex; align-items: center; gap: 40px;
}
.hb-pull-blockquote {
  flex: 1; font-size: 1.08rem; font-weight: 600;
  color: #fff; font-style: italic; line-height: 1.6; margin: 0;
}
.hb-pull-cite {
  display: block; margin-top: 10px;
  font-style: normal; font-size: .82rem; color: var(--hb-accent); font-weight: 700;
}
.hb-pull-stat-block { flex-shrink: 0; text-align: center; }
.hb-pull-stat-val {
  font-size: 2.8rem; font-weight: 900; color: var(--hb-accent);
  letter-spacing: -.5px; line-height: 1;
}
.hb-pull-stat-label {
  font-size: .78rem; color: rgba(255,255,255,.55);
  margin-top: 6px; max-width: 14ch; line-height: 1.4;
}
@media (max-width: 576px) {
  .hb-pull-quote { flex-direction: column; gap: 20px; padding: 28px; }
  .hb-pull-stat-val { font-size: 2.2rem; }
}

/* ── ROI panel premium ───────────────────────────────── */
.roi-panel-premium {
  border-radius: var(--hb-radius-lg); overflow: hidden;
  border: 1px solid var(--hb-line); box-shadow: var(--hb-shadow-soft);
}
.roi-panel-premium .roi-panel-header {
  background: var(--hb-primary); padding: 28px 32px;
}
.roi-panel-premium .roi-panel-body {
  background: var(--hb-surface); padding: 28px 32px;
}
.roi-kpi-box {
  background: var(--hb-surface-warm); border-radius: 10px; padding: 14px;
}

/* ── ROI Calculator — program toggle & DVC trip cards ── */
.prog-toggle { display: flex; gap: 10px; }
.prog-btn {
  flex: 1; padding: 10px 8px; border: 2px solid #dee2e6; border-radius: 14px;
  background: #fff; cursor: pointer; text-align: center; transition: all 0.18s;
  display: flex; flex-direction: column; gap: 3px;
}
.prog-btn:hover { border-color: #1d3557; background: #f8faff; }
.prog-btn.active { border-color: #1d3557; background: #1d3557; color: #fff; }
.prog-btn .prog-name { font-size: 15px; font-weight: 700; line-height: 1.2; }
.prog-btn .prog-sub  { font-size: 11px; opacity: 0.7; }
.prog-btn.active .prog-sub { opacity: 0.85; }
#roiNoSelection {
  text-align: center; padding: 48px 24px; color: #6c757d;
  border: 2px dashed #dee2e6; border-radius: 16px;
}
#roiNoSelection .ns-icon { font-size: 2rem; margin-bottom: 12px; opacity: 0.4; }
#roiNoSelection p { margin: 0; font-size: 15px; }
.dvc-trip-table-desktop { display: none !important; }
.dvc-trip-cards-mobile {
  display: grid;
  gap: 10px;
}
.dvc-trip-card {
  background: #F4F6F9; border: 1px solid var(--hb-line-soft);
  border-radius: 12px; padding: 12px 14px;
}
.dvc-trip-card .tc-label { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.dvc-trip-card .tc-hint  { font-size: 12px; color: #888; margin-bottom: 10px; }
.dvc-trip-card .tc-inputs { display: flex; gap: 10px; margin-bottom: 8px; }
.dvc-trip-card .tc-input-group { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.dvc-trip-card .tc-input-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #888; }
.dvc-trip-card .tc-total { font-size: 13px; display: flex; justify-content: space-between; align-items: center; padding-top: 8px; border-top: 1px solid #e8e4df; }
.dvc-trip-card .tc-total-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #888; }
@media (min-width: 576px) {
  .dvc-trip-cards-mobile { grid-template-columns: 1fr 1fr; }
}

/* ── WhatsApp dark CTA band ──────────────────────────── */
.cta-band-dark { background: #0D1421; position: relative; overflow: hidden; }
.cta-glow-1 {
  position: absolute; right: -120px; top: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,133,58,.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-glow-2 {
  position: absolute; left: -80px; bottom: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(28,63,110,.35) 0%, transparent 65%);
  pointer-events: none;
}
.cta-dark-inner {
  position: relative; text-align: center; max-width: 640px; margin: 0 auto;
}
.cta-dark-inner h2 { color: #fff; }
.cta-dark-inner p { color: rgba(255,255,255,.6) !important; font-size: 1.02rem; margin-bottom: 2rem; }
.btn-whatsapp-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 999px;
  background: #25D366; color: #fff; border: none;
  font-weight: 700; font-size: 1.02rem; text-decoration: none;
  box-shadow: 0 12px 32px rgba(37,211,102,.30);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-whatsapp-dark:hover {
  background: #1fba5a; color: #fff;
  box-shadow: 0 16px 38px rgba(37,211,102,.36);
  transform: translateY(-2px);
}
.cta-dark-sub {
  display: block; margin-top: 16px;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
