/* =============================================
   LJS Psychology — Main Stylesheet
   ============================================= */

:root {
  --teal: #3E5163;
  --teal-light: #5a7389;
  --teal-dark: #2a3845;
  --lavender: #b8aed2;
  --lavender-light: #ddd8ec;
  --lavender-pale: #f0edf8;
  --pink: #d4a8b4;
  --pink-light: #ede0e5;
  --pink-pale: #f8f0f3;
  --sage: #8faa8b;
  --sage-light: #d4e0d2;
  --sage-pale: #edf5ec;
  --cream: #faf8f5;
  --warm-white: #ffffff;
  --text-dark: #2c2c2c;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #ede9f5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: white;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */

.serif { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; color: var(--teal); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.2; color: var(--teal); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); line-height: 1.3; color: var(--teal); font-weight: 600; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; font-weight: 300; }

.lead { font-size: 1.05rem; line-height: 1.8; }

/* =============================================
   LAYOUT
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

.section-cream { background: var(--cream); }
.section-white { background: white; }
.section-teal { background: var(--teal); }
.section-dark { background: var(--teal-dark); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary { background: var(--teal); color: white; }
.btn-secondary { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-white { background: white; color: var(--teal); }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.6); }

.btn-lg { padding: 15px 32px; font-size: 0.95rem; }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid #f0eee9;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img { height: 100px; width: auto; }
.home-page .nav-logo img { display: none; }
.home-page .nav-logo-text { display: none; }
.home-page .nav-logo-sub { display: none; }

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 600;
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.83rem;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color 0.15s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--lavender);
  border-radius: 1px;
}

.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.83rem;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; }
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   FOOTER
   ============================================= */

.footer { background: #2a3540; color: rgba(255,255,255,0.7); }

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  font-weight: 300;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.footer-hcpc {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.07);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  font-weight: 300;
  transition: color 0.15s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   TRUST BAR
   ============================================= */

.trust-bar {
  background: var(--teal);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
}

.trust-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* =============================================
   CARDS
   ============================================= */

.card {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.card-body { padding: 28px; }

.card-icon-top {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.card-icon-lav { background: linear-gradient(135deg, var(--lavender-light), #e8e2f5); }
.card-icon-pink { background: linear-gradient(135deg, var(--pink-light), #f0e4e8); }
.card-icon-sage { background: linear-gradient(135deg, var(--sage-light), #deeadb); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.88rem; margin-bottom: 0; }

.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--teal);
  border-bottom: 1px solid var(--lavender);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.card-link:hover { border-color: var(--teal); }

/* =============================================
   PILLS & BADGES
   ============================================= */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  color: var(--teal);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lavender);
  flex-shrink: 0;
}

.tag-pill {
  display: inline-block;
  background: var(--lavender-light);
  color: var(--teal);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 10px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* =============================================
   FORMS
   ============================================= */

.form-box {
  background: var(--cream);
  border-radius: 10px;
  padding: 36px;
  border: 1px solid var(--border);
}

.form-box h3 { margin-bottom: 22px; }

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: white;
  border: 1px solid #ddd8ec;
  border-radius: 4px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--lavender);
}

.form-field textarea { height: 100px; resize: vertical; }

.form-submit {
  width: 100%;
  background: var(--teal);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  margin-top: 8px;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}

.form-submit:hover { opacity: 0.88; }

.form-note {
  font-size: 0.74rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}

/* =============================================
   HERO - PAGE BANNER
   ============================================= */

.page-banner {
  padding: 72px 0;
}

.page-banner-teal { background: var(--teal); }
.page-banner-teal h1,
.page-banner-teal .eyebrow ~ h1 { color: white; }
.page-banner-teal p { color: rgba(255,255,255,0.75); }
.page-banner-teal .eyebrow { color: var(--lavender); }

.page-banner-cream { background: var(--cream); }

/* =============================================
   QUAL / FEATURE LIST
   ============================================= */

.qual-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
}

.qual-tick {
  width: 20px;
  height: 20px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   STEPS
   ============================================= */

.step {
  background: white;
  border-radius: 8px;
  padding: 36px 30px;
  border: 1px solid var(--border);
  position: relative;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--lavender-light);
  line-height: 1;
  margin-bottom: 14px;
}

.step-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--lavender-light);
  color: var(--teal);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 10px;
}

/* =============================================
   INFO / CRISIS BOXES
   ============================================= */

.info-box {
  background: var(--lavender-pale);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 24px 0;
}

.info-box p { color: var(--teal); font-size: 0.88rem; }

.crisis-box {
  background: var(--pink-pale);
  border-left: 3px solid var(--pink);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.crisis-box h4 {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
}

.crisis-box p { font-size: 0.86rem; }

/* =============================================
   TESTIMONIAL
   ============================================= */

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: white;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.5;
  text-align: center;
}

.testimonial-attr {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.05em;
}

/* =============================================
   FEES
   ============================================= */

.fee-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--border);
}

.fee-card h3 { margin-bottom: 6px; }

.fee-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--teal);
  font-weight: 300;
  line-height: 1;
  margin: 10px 0 8px;
}

.fee-amount span { font-size: 1.2rem; }

.fee-detail { font-size: 0.83rem; color: var(--text-light); font-weight: 300; line-height: 1.6; }

.fee-free {
  background: linear-gradient(135deg, var(--lavender-light), var(--pink-light));
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.fee-free h3 { color: var(--teal); }
.fee-free p { font-size: 0.88rem; color: var(--text-mid); }

/* =============================================
   FAQ
   ============================================= */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--teal);
  font-weight: 600;
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--lavender);
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-question.open::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 22px;
}

.faq-answer p { font-size: 0.9rem; }

/* =============================================
   ABOUT IMAGE AREA
   ============================================= */

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--lavender-light) 0%, var(--pink-light) 60%, var(--sage-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.82rem;
  text-align: center;
  padding: 24px;
}

.about-img-placeholder .img-note { line-height: 1.6; }

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  color: white;
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 175px;
  box-shadow: 0 8px 30px rgba(62,81,99,0.25);
}

.about-badge strong {
  display: block;
  font-size: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 80px;
  background: var(--cream);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--border);
}

.legal-sidebar h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.legal-sidebar a {
  display: block;
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
  transition: color 0.15s;
}

.legal-sidebar a:last-child { border-bottom: none; }
.legal-sidebar a:hover { color: var(--teal); }

.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--teal);
  margin: 32px 0 12px;
  font-weight: 600;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.legal-body ul {
  margin: 0 0 14px 20px;
}

.legal-body li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 4px;
}

.legal-part-divider {
  background: var(--lavender-pale);
  border-radius: 8px;
  padding: 16px 22px;
  margin: 36px 0 24px;
}

.legal-part-divider h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--teal);
  font-weight: 600;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .about-badge { right: 0; bottom: -40px; }
  .trust-bar-inner { gap: 24px; }
  .fee-free { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .four-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .trust-item:nth-child(n+3) { display: flex; }
}

/* =============================================
   SERVICE ICON BANNERS (services page)
   ============================================= */

/* Desktop: hide the top banner, show the inline icon col */
.service-icon-banner { display: none; }
.service-icon-col { display: block; }

.service-icon-desktop {
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 24px;
}

.service-icon-lav    { background: linear-gradient(135deg, var(--lavender-light), #e8e2f5); }
.service-icon-pink   { background: linear-gradient(135deg, var(--pink-light), #f0e4e8); }
.service-icon-sage   { background: linear-gradient(135deg, var(--sage-light), #deeadb); }


@media (max-width: 700px) {

  /* Hero - stack vertically */
  .home-page section > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 40px 20px !important;
  }

  /* Hero photo - smaller on mobile */
  .home-page section img[style*="border-radius:200px"] {
    width: 260px !important;
    height: 320px !important;
  }

  /* Hero logo - smaller on mobile */
  .home-page section img[alt="LJS Psychology Logo"] {
    width: 180px !important;
  }

  /* About page qualification grid - single column */
  .about-quals-grid {
    grid-template-columns: 1fr !important;
  }

  /* General three column grids to single column on mobile */
  .three-col {
    grid-template-columns: 1fr !important;
  }

  /* Two col sections stack */
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* About badge repositioned */
  .about-badge {
    right: 0 !important;
    bottom: -10px !important;
  }

  /* Container padding */
  .container {
    padding: 0 20px !important;
  }

  /* Section padding reduced */
  .section {
    padding: 48px 0 !important;
  }

  /* Nav */
  .nav-inner {
    padding: 12px 20px !important;
  }

  /* Trust bar - wrap all 5 items */
  .trust-bar-inner {
    gap: 12px !important;
    padding: 16px 20px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .trust-item {
    font-size: 0.78rem !important;
    flex: 0 0 auto !important;
  }

  /* Footer grid single column */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-main {
    padding: 40px 0 24px !important;
  }

  /* Fees grid single column */
  .fee-free {
    grid-column: span 1 !important;
  }

  /* Force fee grids to single column */
  div[style*="grid-template-columns:1fr 1fr"] .fee-card,
  div[style*="grid-template-columns:repeat(2,1fr)"] .fee-card {
    grid-column: span 1 !important;
  }

  div[style*="grid-template-columns:1fr 1fr"]:has(.fee-card),
  div[style*="grid-template-columns:repeat(2,1fr)"]:has(.fee-card) {
    grid-template-columns: 1fr !important;
  }

  /* Four col grid */
  .four-col {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Services page - full-width icon banners on mobile */
  .service-icon-banner {
    display: block !important;
    width: calc(100% + 40px) !important;
    margin: -48px -20px 32px -20px !important;
    border-radius: 0 !important;
    padding: 40px 20px !important;
    font-size: 3.5rem !important;
    text-align: center !important;
  }

  /* Hide the desktop inline icon col on mobile */
  .service-icon-col { display: none !important; }

  /* Services page - icon boxes always appear above text on mobile */
  /* CAT section: icon is 2nd child, needs to come first */
  #cat .two-col > div:nth-child(2) { order: -1; }
  /* Anxiety section: icon is 2nd child, needs to come first */
  #anxiety .two-col > div:last-child { order: -1; }
  /* Ensure two-col uses flex for order to work */
  #cat .two-col,
  #trauma .two-col,
  #anxiety .two-col {
    display: flex !important;
    flex-direction: column !important;
  }

}

/* =============================================
   TESTIMONIAL CAROUSEL
   ============================================= */

.testimonial-slides { position: relative; min-height: 160px; }

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover { background: rgba(255,255,255,0.28); }
.carousel-prev { left: -56px; }
.carousel-next { right: -56px; }

.carousel-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active { background: white; }

@media (max-width: 700px) {
  .carousel-prev { left: -8px; }
  .carousel-next { right: -8px; }
  #cookie-banner { padding: 16px 20px !important; }
}
