/* Chapters CTC Design System
   Palette: Navy #0D1F3C | Blue #1B6BC4 | Gold #B09040 | Ground #F8F7F5 | Slate #64748B | White #FFFFFF
   Type: Playfair Display (display) + DM Sans (body)
------------------------------------------------------------------ */

:root {
  --navy:     #0D1F3C;
  --blue:     #1B6BC4;
  --blue-dk:  #155299;
  --gold:     #B09040;
  --gold-lt:  #CBA94A;
  --ground:   #F8F7F5;
  --slate:    #64748B;
  --slate-dk: #475569;
  --white:    #FFFFFF;
  --border:   #E2DDD8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --radius:   6px;
  --radius-lg: 12px;
  --shadow:   0 2px 16px rgba(13, 31, 60, 0.10);
  --shadow-md: 0 4px 28px rgba(13, 31, 60, 0.14);

  /* Fixed header height: 42px logo + 2×0.85rem padding + 1px border */
  --header-height: 70px;
}

/* ----------------------------------------------------------------
   Reset & Base
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-dk);
  background: var(--ground);
  margin: 0;
  padding: 0;
}

img { max-width: 100%; height: auto; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dk); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
  color: var(--navy);
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.ch-btn,
.ch-btn-primary,
.ch-btn-outline,
.ch-btn-gold,
.ch-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}

.ch-btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.ch-btn-primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  color: var(--white);
  transform: translateY(-1px);
}

.ch-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.ch-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.ch-btn-gold {
  background: transparent;
  color: var(--gold-lt);
  border-color: var(--gold);
  font-size: 0.85rem;
  padding: 9px 22px;
}
.ch-btn-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.ch-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.72);
  border-color: transparent;
  padding: 9px 14px;
  font-size: 0.85rem;
}
.ch-btn-ghost:hover {
  color: var(--white);
}

.ch-btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  padding: 11px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s;
}
.ch-btn-navy:hover {
  background: #0a1829;
  color: var(--white);
}

.ch-btn-blue-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s;
}
.ch-btn-blue-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ----------------------------------------------------------------
   Header / Navigation
---------------------------------------------------------------- */
.ch-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.ch-header.scrolled {
  box-shadow: 0 2px 20px rgba(13,31,60,0.35);
}
.ch-header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.ch-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  flex-shrink: 0;
}
.ch-logo:hover img { opacity: 1; }

.ch-nav { flex: 1; }
.ch-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}
.ch-nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.ch-nav a:hover,
.ch-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.ch-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ── User dropdown ──────────────────────────────────────────────── */
.ch-user-menu { position: relative; }

.ch-user-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 5px 12px 5px 5px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.18s, border-color 0.18s;
}
.ch-user-trigger:hover,
.ch-user-trigger[aria-expanded="true"] {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

.ch-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.ch-user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.ch-user-chevron {
  font-size: 0.7rem;
  transition: transform 0.2s;
  opacity: 0.7;
}
.ch-user-trigger[aria-expanded="true"] .ch-user-chevron { transform: rotate(180deg); }

.ch-user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(13,31,60,0.18);
  overflow: hidden;
  z-index: 500;
}
.ch-user-dropdown.open { display: block; }

.ch-user-dropdown-header {
  padding: 0.85rem 1rem 0.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--ground);
}
.ch-user-dropdown-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.ch-user-dropdown-email { font-size: 0.75rem; color: var(--slate); margin-top: 1px; word-break: break-all; }

.ch-user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--slate-dk);
  text-decoration: none;
  transition: background 0.14s;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
}
.ch-user-dropdown-item i { font-size: 1rem; color: var(--slate); width: 18px; text-align: center; }
.ch-user-dropdown-item:hover { background: var(--ground); color: var(--navy); }
.ch-user-dropdown-item:hover i { color: var(--navy); }

.ch-user-dropdown-divider { height: 1px; background: var(--border); margin: 2px 0; }

.ch-user-dropdown-item--logout { color: #b91c1c; }
.ch-user-dropdown-item--logout i { color: #b91c1c; }
.ch-user-dropdown-item--logout:hover { background: #fef2f2; color: #991b1b; }

/* ── Mobile toggle ──────────────────────────────────────────────── */
.ch-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* Mobile nav */
@media (max-width: 900px) {
  .ch-nav { display: none; }
  .ch-nav-actions .ch-btn-ghost { display: none; }
  .ch-mobile-toggle { display: block; }
  .ch-nav-actions { margin-left: auto; }

  .ch-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
  }
  .ch-nav.open ul {
    flex-direction: column;
    padding: 0 1rem;
  }
  .ch-nav.open a {
    display: block;
    padding: 10px 14px;
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------------
   Hero
---------------------------------------------------------------- */
.ch-hero {
  background: var(--navy);
  padding: 7rem 0 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ch-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 65% 50%, rgba(27,107,196,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ch-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ch-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}

.ch-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 400;
}
.ch-hero h1 em {
  font-style: normal;
  font-weight: 700;
}

.ch-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 48ch;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ch-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ch-hero-image {
  position: relative;
}
.ch-hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-md);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .ch-hero { padding: 6rem 0 3rem; min-height: auto; }
  .ch-hero .container { grid-template-columns: 1fr; }
  .ch-hero-image { display: none; }
}

/* ----------------------------------------------------------------
   Section common
---------------------------------------------------------------- */
.ch-section {
  padding: 5rem 0;
}
.ch-section-alt {
  background: var(--white);
  padding: 5rem 0;
}
.ch-section-dark {
  background: var(--navy);
  padding: 5rem 0;
}

.ch-section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.ch-section-dark .ch-section-label { color: var(--gold-lt); }

.ch-section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.ch-section-dark .ch-section-title { color: var(--white); }

.ch-section-sub {
  font-size: 1rem;
  color: var(--slate);
  max-width: 58ch;
  line-height: 1.6;
}
.ch-section-dark .ch-section-sub { color: rgba(255,255,255,0.62); }

/* ----------------------------------------------------------------
   Wellbeing Library Teaser
---------------------------------------------------------------- */
.ch-library {
  background: var(--navy);
  padding: 5.5rem 0;
}
.ch-library-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ch-library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .ch-library-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ch-library-grid { grid-template-columns: 1fr; }
}

.ch-assessment-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.ch-assessment-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.ch-assessment-card-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.75rem;
}

.ch-assessment-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: 400;
}

.ch-assessment-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1.25rem;
}

.ch-assessment-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s, color 0.15s;
  margin-top: auto;
}
.ch-assessment-card:hover .ch-assessment-card-link {
  gap: 10px;
  color: #5ba3e8;
}

.ch-library-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ----------------------------------------------------------------
   About Section
---------------------------------------------------------------- */
.ch-about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .ch-about .container { grid-template-columns: 1fr; gap: 2rem; }
}

.ch-about-text p {
  color: var(--slate-dk);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ch-about-mvv {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 700px) {
  .ch-about-mvv { grid-template-columns: 1fr; }
}

.ch-mvv-item {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.ch-mvv-item h5 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.ch-mvv-item p {
  font-size: 0.875rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

.ch-facility-carousel { position: relative; }
.ch-facility-carousel .carousel { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.ch-facility-carousel .carousel img { height: 320px; object-fit: cover; }

/* ----------------------------------------------------------------
   Stats Strip
---------------------------------------------------------------- */
.ch-stats {
  background: var(--navy);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ch-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 640px) {
  .ch-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.ch-stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.ch-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   Services / Activities
---------------------------------------------------------------- */
.ch-activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .ch-activities-grid { grid-template-columns: 1fr; }
}

.ch-activity-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ch-activity-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.85) 0%, rgba(13,31,60,0.20) 60%, transparent 100%);
}
.ch-activity-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 1;
}
.ch-activity-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.ch-activity-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.825rem;
  line-height: 1.5;
  margin: 0;
}

/* ----------------------------------------------------------------
   Support / Services List
---------------------------------------------------------------- */
.ch-support {
  background: var(--white);
  padding: 5rem 0;
}
.ch-support .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .ch-support .container { grid-template-columns: 1fr; gap: 2rem; }
}

.ch-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ch-service-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.ch-service-list li:last-child { border-bottom: none; }

.ch-service-icon {
  width: 36px;
  height: 36px;
  background: rgba(27,107,196,0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.ch-service-list h5 {
  font-size: 0.925rem;
  margin-bottom: 0.2rem;
  color: var(--navy);
}
.ch-service-list p {
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   Team
---------------------------------------------------------------- */
.ch-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .ch-team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.ch-team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ch-team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ch-team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.ch-team-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.ch-team-card-body h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--navy);
}
.ch-team-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.ch-team-card-body p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------------------------------------
   YouTube Thumbnail Facade
---------------------------------------------------------------- */
.ch-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .ch-media-grid { grid-template-columns: 1fr; }
}

.ch-yt-card {
  display: flex;
  flex-direction: column;
}
.ch-yt-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.6rem;
}

.yt-facade {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  aspect-ratio: 16/9;
  background: var(--navy);
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}
.yt-facade:hover img {
  transform: scale(1.03);
  opacity: 0.88;
}
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.72);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.2s;
}
.yt-facade:hover .yt-play {
  background: rgba(255, 0, 0, 0.85);
}
.yt-play i {
  color: var(--white);
  font-size: 1.4rem;
  margin-left: 3px;
}

.yt-link {
  font-size: 0.825rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.6rem;
  transition: color 0.2s;
}
.yt-link:hover { color: var(--blue); }

.ch-yt-card h4 {
  font-size: 0.925rem;
  color: var(--navy);
  margin: 0.5rem 0 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

/* ----------------------------------------------------------------
   Gallery
---------------------------------------------------------------- */
.ch-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .ch-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.ch-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}
.ch-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.ch-gallery-item:hover img { transform: scale(1.04); }

.ch-instagram-cta {
  text-align: center;
  margin-top: 1.5rem;
}
.ch-instagram-cta a {
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 500;
}
.ch-instagram-cta a:hover { color: var(--blue); }

/* ----------------------------------------------------------------
   Testimonials
---------------------------------------------------------------- */
.ch-testimonials {
  background: var(--navy);
  padding: 5rem 0;
}
.testimonials-slider { padding-bottom: 3rem; }

.ch-testimonial-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
}
.ch-testimonial-item p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.ch-testimonial-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-lt);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.swiper-pagination-bullet { background: rgba(255,255,255,0.4) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ----------------------------------------------------------------
   FAQ Accordion
---------------------------------------------------------------- */
.ch-faq .accordion-button {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius) !important;
  box-shadow: none;
}
.ch-faq .accordion-button:not(.collapsed) {
  background: var(--navy);
  color: var(--white);
}
.ch-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.ch-faq .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.ch-faq .accordion-body {
  font-size: 0.9rem;
  color: var(--slate-dk);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   Contact
---------------------------------------------------------------- */
.ch-contact { background: var(--white); padding: 5rem 0; }
.ch-contact .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .ch-contact .container { grid-template-columns: 1fr; }
}

.ch-contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.ch-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.ch-contact-item i {
  color: var(--blue);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.ch-contact-item span {
  font-size: 0.9rem;
  color: var(--slate-dk);
  line-height: 1.5;
}

.ch-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.ch-social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s;
}
.ch-social-row a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.ch-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ch-map-wrap iframe {
  display: block;
  width: 100%;
}

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.ch-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0;
}
.ch-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ch-footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ch-footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.ch-footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.ch-footer-copy a {
  color: rgba(255,255,255,0.6);
}
.ch-footer-copy a:hover { color: var(--white); }

.ch-footer-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.ch-footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ch-footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.ch-footer-links a:hover { color: var(--white); }

@media (max-width: 640px) {
  .ch-footer .container { flex-direction: column; text-align: center; }
  .ch-footer-right { flex-direction: column; gap: 1rem; }
}

/* ----------------------------------------------------------------
   WhatsApp Float
---------------------------------------------------------------- */
.ch-float-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.ch-float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  color: var(--white);
}

/* ----------------------------------------------------------------
   Utilities
---------------------------------------------------------------- */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-slate { color: var(--slate); }

.section-header { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .ch-section-sub { margin: 0 auto; }

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
