/* ─── assets/css/pages.css ───────────────────────────────────────────────────
   Shared styles for all inner pages (non-homepage).
   Inner-page hero, two-column layouts, feature grids, step lists, checklists,
   callout boxes, stat bands, and inline card grids.
   ─────────────────────────────────────────────────────────────────────────── */

/* ═══ INNER-PAGE HERO BANNER ════════════════════════════════════════════════════ */

.pg-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(10,25,55,0.93) 0%, rgba(10,25,55,0.78) 55%, rgba(10,25,55,0.55) 100%),
    var(--pg-hero-img, url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1600&q=80')) center/cover no-repeat;
}

.pg-hero-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 48px;
  position: relative;
  z-index: 2;
}

.pg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pg-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.pg-breadcrumb a:hover { color: var(--orange); }
.pg-breadcrumb span { color: rgba(255,255,255,0.28); }

.pg-hero-tag {
  display: inline-block;
  background: rgba(244,123,32,0.18);
  border: 1px solid rgba(244,123,32,0.4);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.pg-h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 18px;
}
.pg-h1 span { color: var(--orange); }

.pg-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 32px;
}

.pg-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pg-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.pg-hero-stat .val {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 3px;
}
.pg-hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* Watermark text (decorative, matches homepage hero) */
.pg-hero-watermark {
  position: absolute;
  top: 10%;
  right: -2%;
  font-size: clamp(50px, 8vw, 120px);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1.1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}


/* ═══ PAGE SECTIONS ══════════════════════════════════════════════════════════════ */

.pg-section {
  padding: 80px 48px;
  background: var(--white);
}
.pg-section-alt { background: #f7faff; }
.pg-section-navy {
  background: var(--navy);
  color: #fff;
}

.pg-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.pg-inner-sm { max-width: 800px; margin: 0 auto; }
.pg-inner-md { max-width: 960px; margin: 0 auto; }


/* ═══ TWO-COLUMN LAYOUT ══════════════════════════════════════════════════════════ */

.pg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pg-two-col.flip { direction: rtl; }
.pg-two-col.flip > * { direction: ltr; }

.pg-col-content {}

.pg-col-img {
  position: relative;
}
.pg-img-card {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,43,91,0.15);
}
.pg-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Float badge over image */
.pg-img-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(244,123,32,0.4);
  line-height: 1.3;
}
.pg-img-badge strong { font-size: 1.2rem; display: block; }


/* ═══ FEATURE CARDS GRID ════════════════════════════════════════════════════════ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,43,91,0.09);
  border-color: rgba(244,123,32,0.3);
}

.pg-section-alt .feature-card { background: #fff; }
.pg-section-navy .feature-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.pg-section-navy .feature-icon { background: rgba(244,123,32,0.15); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pg-section-navy .feature-card h3 { color: #fff; }

.feature-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}
.pg-section-navy .feature-card p { color: rgba(255,255,255,0.6); }


/* ═══ NUMBERED STEPS ════════════════════════════════════════════════════════════ */

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}
.step-item:last-child { border-bottom: none; }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ═══ CHECKLIST ═════════════════════════════════════════════════════════════════ */

.pg-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.pg-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcfce7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ═══ CALLOUT BOX ════════════════════════════════════════════════════════════════ */

.callout-box {
  background: #fff8f0;
  border: 1.5px solid rgba(244,123,32,0.3);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 32px 0;
}
.callout-box h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.callout-box p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.callout-box-navy {
  background: var(--navy);
  border-color: transparent;
  border-left-color: var(--orange);
}
.callout-box-navy h4 { color: #fff; }
.callout-box-navy p { color: rgba(255,255,255,0.7); }
.callout-box-navy a { color: var(--orange); }


/* ═══ STAT BAND ═════════════════════════════════════════════════════════════════ */

.stat-band {
  background: var(--navy);
  padding: 48px;
}
.stat-band-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-band-item .val {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-band-item .lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stat-band-item .sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
}

/* Divider between stat items */
.stat-band-item + .stat-band-item {
  border-left: 1px solid rgba(255,255,255,0.1);
}


/* ═══ INLINE CARDS (2-col or 3-col highlight blocks) ════════════════════════════ */

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.highlight-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 100%);
  border-radius: 16px;
  padding: 28px 24px;
  color: #fff;
}
.highlight-card .hc-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.highlight-card .hc-val {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 8px;
}
.highlight-card p { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.6; }


/* ═══ ELIGIBILITY / TABLE-STYLE ROWS ════════════════════════════════════════════ */

.elig-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.elig-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
}
.elig-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  flex-shrink: 0;
}
.elig-icon.orange-icon { background: #fff0e0; color: var(--orange); }
.elig-icon.elig-pass { background: #dcfce7; color: #16a34a; }
.elig-icon.elig-neutral { background: #fef9c3; color: #b45309; }
.elig-body strong { font-size: 0.9rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 3px; }
.elig-body span { font-size: 0.84rem; color: var(--muted); }
.elig-body h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.elig-body p { font-size: 0.84rem; color: var(--muted); margin: 0; line-height: 1.6; }


/* ═══ FINANCE OPTIONS ════════════════════════════════════════════════════════════ */

.finance-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.finance-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(244,123,32,0.15);
}
.finance-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,43,91,0.1); }
.finance-card .fc-icon {
  width: 52px;
  height: 52px;
  background: #fff0e0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
}
.finance-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.finance-card .fc-rate {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.finance-card .fc-term { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.finance-card .fc-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.finance-card .fc-rate-lbl { font-size: 0.75rem; color: var(--muted); margin-bottom: 14px; }
.finance-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }


/* ═══ TEAM / ABOUT ═══════════════════════════════════════════════════════════════ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,43,91,0.09); }
.team-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.team-card-body span { font-size: 0.78rem; color: var(--orange); font-weight: 700; }
.team-card-body p { font-size: 0.84rem; color: var(--muted); margin-top: 10px; line-height: 1.6; }


/* ═══ SECTION INTRO (above content body) ════════════════════════════════════════ */

.pg-section-intro {
  max-width: 700px;
  margin-bottom: 52px;
}
.pg-section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }
.pg-section-intro .section-desc { max-width: 100%; }


/* ═══ RESPONSIVE ════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .feature-grid   { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-band-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-band-item + .stat-band-item { border-left: none; }
  .stat-band-inner > *:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .highlight-cards { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pg-hero { min-height: 320px; }
  .pg-hero-inner { padding: 52px 24px; }
  .pg-section { padding: 60px 24px; }
  .stat-band { padding: 40px 24px; }
  .pg-two-col { grid-template-columns: 1fr; gap: 36px; }
  .pg-two-col.flip { direction: ltr; }
  .pg-col-img { order: -1; }
  .feature-grid   { grid-template-columns: 1fr; }
  .feature-grid-2 { grid-template-columns: 1fr; }
  .feature-grid-4 { grid-template-columns: 1fr 1fr; }
  .highlight-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .stat-band-inner { grid-template-columns: 1fr 1fr; }
  .stat-band-inner > *:nth-child(odd) { border-right: none; }
  .pg-hero-stats { gap: 20px; }
}

@media (max-width: 680px) {
  .pg-hero-inner { padding: 44px 16px; }
  .pg-section { padding: 52px 16px; }
  .stat-band { padding: 36px 16px; }
  .pg-hero-btns { flex-direction: column; }
  .pg-hero-btns a { justify-content: center; }
  .stat-band-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-grid-4 { grid-template-columns: 1fr; }
  .pg-img-badge { left: 16px; }
  .pkg-table { grid-template-columns: 1fr 1fr !important; }
}


/* ═══ PACKAGE COMPARISON TABLE ════════════════════════════════════════════════ */

.pkg-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.pkg-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15,43,91,0.1);
}

.pkg-featured {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(244,123,32,0.2);
  background: linear-gradient(160deg, #0F2B5B 0%, #1a4070 100%);
}
.pkg-featured .pkg-size  { color: #fff; }
.pkg-featured .pkg-label { color: rgba(255,255,255,0.6); }
.pkg-featured .pkg-price { color: rgba(255,255,255,0.85); }
.pkg-featured .pkg-price span { color: var(--orange); }
.pkg-featured .pkg-desc  { color: rgba(255,255,255,0.6); }
.pkg-featured .pkg-specs li { border-color: rgba(255,255,255,0.08); }
.pkg-featured .spec-l { color: rgba(255,255,255,0.5); }
.pkg-featured .spec-r { color: rgba(255,255,255,0.9); }

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pkg-size {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pkg-price {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.pkg-price span {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
}
.pkg-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.pkg-specs {
  list-style: none;
  margin-bottom: 22px;
  border-top: 1px solid var(--border);
}
.pkg-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}
.spec-l { color: var(--muted); }
.spec-r { color: var(--navy); font-weight: 700; }

@media (max-width: 1024px) {
  .pkg-table { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .pkg-table { grid-template-columns: 1fr; }
}


/* ═══ QUOTE / CONTACT FORMS ═════════════════════════════════════════════════ */

.pg-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(15,43,91,0.07);
}
.pg-form-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.pg-form-card p.sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.pg-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.pg-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.pg-field input,
.pg-field select,
.pg-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #f7faff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.pg-field input:focus,
.pg-field select:focus,
.pg-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,123,32,0.12);
  background: #fff;
}
.pg-field textarea { resize: vertical; min-height: 110px; }
.pg-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .pg-field-row { grid-template-columns: 1fr; } }

.pg-form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
}
.pg-form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.pg-form-submit:disabled {
  background: #c8cfd9;
  cursor: not-allowed;
  transform: none;
}

/* ─── Slide-to-confirm anti-bot widget ───────────────────────────────────── */

.slider-wrap {
  user-select: none;
  -webkit-user-select: none;
  margin-bottom: 16px;
}

.slider-track {
  position: relative;
  height: 50px;
  background: #f0f4fa;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  cursor: default;
}

.slider-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(244,123,32,0.18), rgba(244,123,32,0.30));
  border-radius: 50px;
  pointer-events: none;
  transition: background 0.2s;
}

.slider-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  color: #fff;
  box-shadow: 0 2px 8px rgba(244,123,32,0.40);
  touch-action: none;
  z-index: 2;
  outline: none;
  transition: box-shadow 0.15s;
}
.slider-thumb:active  { cursor: grabbing; box-shadow: 0 4px 16px rgba(244,123,32,0.55); }
.slider-thumb:focus-visible { box-shadow: 0 0 0 3px rgba(244,123,32,0.4), 0 2px 8px rgba(244,123,32,0.4); }

.slider-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  pointer-events: none;
  transition: opacity 0.15s;
  padding-left: 54px; /* clear the thumb */
}

/* Confirmed state */
.slider-wrap.slider-confirmed .slider-track {
  background: #dcfce7;
  border-color: #16a34a;
}
.slider-wrap.slider-confirmed .slider-thumb {
  background: #16a34a;
  cursor: default;
  box-shadow: 0 2px 8px rgba(22,163,74,0.35);
  left: calc(100% - 46px) !important;
}
.slider-wrap.slider-confirmed .slider-fill {
  width: 100% !important;
  background: rgba(22,163,74,0.15);
}
.slider-wrap.slider-confirmed .slider-label {
  color: #15803d;
  opacity: 1 !important;
  font-weight: 700;
  padding-left: 0;
}

/* ─── AJAX flash messages ─────────────────────────────────────────────── */

.form-flash {
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.5;
  display: none;
}
.form-flash-ok  { background: #dcfce7; border: 1.5px solid #16a34a; color: #15803d; }
.form-flash-err { background: #fef2f2; border: 1.5px solid #ef4444; color: #dc2626; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  background: #fff0e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-item-body h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-item-body p, .contact-item-body a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.4;
}
.contact-item-body a:hover { color: var(--orange); }
