/* =========================================
   SERVICES — Shared Styles
   Covers: Services Overview, Pre-Marital,
   Marital, and Youth Counseling pages
   ========================================= */

/* Hero Read More */
.hero-desc-truncate .hero-desc-more {
  display: none;
}
.hero-desc-truncate.expanded .hero-desc-more {
  display: inline;
}
.hero-read-more-btn {
  background: none;
  border: none;
  color: var(--gold-light, #e8c97a);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-read-more-btn:hover {
  color: #fff;
}

/* Page hero & breadcrumb use shared styles from resources.css */

/* Dot pattern background for services sections */
.services-dot-bg {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(26, 54, 93, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(43, 122, 120, 0.07) 0%, transparent 45%),
    var(--gray-50);
  overflow: hidden;
}
.services-dot-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--navy) 1.3px, transparent 1.3px);
  background-size: 16px 16px;
  opacity: 0.08;
  pointer-events: none;
}
.services-dot-bg > .container {
  position: relative;
  z-index: 1;
}

/* Hero tags */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(43,122,120,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.hero-tag-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.hero-tag-green {
  background: rgba(43,122,120,0.25);
  color: #7ee8a2;
  border: 1px solid rgba(43,122,120,0.3);
}

/* =============================================
   SERVICES OVERVIEW PAGE — Redesigned Cards
   ============================================= */

/* Service overview section — dot pattern background */
.services-overview {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(26, 54, 93, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(43, 122, 120, 0.07) 0%, transparent 45%),
    var(--gray-50);
  overflow: hidden;
}
.services-overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--navy) 1.3px, transparent 1.3px);
  background-size: 16px 16px;
  opacity: 0.08;
  pointer-events: none;
}
.services-overview > .container {
  position: relative;
  z-index: 1;
}

/* Service cards */
.svc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 3.5rem;
  box-shadow: 0 8px 40px rgba(26, 54, 93, 0.1);
  transition: box-shadow 0.3s ease;
}
.svc-card:hover {
  box-shadow: 0 12px 50px rgba(26, 54, 93, 0.15);
}
.svc-card:last-child {
  margin-bottom: 0;
}
.svc-card-reversed {
  direction: rtl;
}
.svc-card-reversed > * {
  direction: ltr;
}

/* Content side */
.svc-card-content {
  padding: 3.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Badge */
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: rgba(43, 122, 120, 0.08);
  border: 1px solid rgba(43, 122, 120, 0.15);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.svc-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.svc-badge-warm {
  color: #a0632e;
  background: rgba(200, 140, 60, 0.08);
  border-color: rgba(200, 140, 60, 0.18);
}
.svc-badge-warm .svc-badge-dot { background: #c8883c; }
.svc-badge-green {
  color: #2d7d4f;
  background: rgba(45, 134, 83, 0.08);
  border-color: rgba(45, 134, 83, 0.18);
}
.svc-badge-green .svc-badge-dot { background: #2d8653; }

/* Card title */
.svc-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Card description */
.svc-card-desc {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* Feature checklist */
.svc-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.svc-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.svc-feature-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(43, 122, 120, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card CTA button */
.svc-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

/* Visual side */
.svc-card-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-visual-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.svc-visual-bg::after {
  content: '';
  position: absolute;
  inset: 0;
}
.svc-visual-premarital .svc-visual-bg {
  background-image: url('../images/gallery/gallery-03.jpg');
  background-size: cover;
  background-position: center;
}
.svc-visual-premarital .svc-visual-bg::after {
  background: linear-gradient(145deg, rgba(15,34,64,0.88) 0%, rgba(26,54,93,0.85) 40%, rgba(45,106,159,0.82) 80%, rgba(43,122,120,0.85) 100%);
}
.svc-visual-marital .svc-visual-bg {
  background-image: url('../images/gallery/gallery-06.jpg');
  background-size: cover;
  background-position: center;
}
.svc-visual-marital .svc-visual-bg::after {
  background: linear-gradient(145deg, rgba(26,54,93,0.88) 0%, rgba(15,34,64,0.85) 40%, rgba(43,122,120,0.82) 80%, rgba(26,54,93,0.85) 100%);
}
.svc-visual-youth .svc-visual-bg {
  background-image: url('../images/gallery/gallery-09.jpg');
  background-size: cover;
  background-position: center;
}
.svc-visual-youth .svc-visual-bg::after {
  background: linear-gradient(145deg, rgba(26,74,58,0.88) 0%, rgba(45,134,83,0.82) 40%, rgba(43,122,120,0.82) 80%, rgba(26,54,93,0.85) 100%);
}

/* Visual content */
.svc-visual-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  gap: 2rem;
}

/* Large icon */
.svc-visual-icon-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}

/* Stat */
.svc-visual-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
}
.svc-visual-stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.svc-visual-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* Quote */
.svc-visual-quote {
  max-width: 300px;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.svc-visual-quote p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0 0 0.5rem;
}
.svc-visual-quote span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Decorative circles */
.svc-visual-circles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.svc-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.svc-circle-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(43, 122, 120, 0.1) 0%, transparent 70%);
}
.svc-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

/* === TRUST INDICATORS BAND === */
.svc-trust-band {
  background: var(--navy);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.svc-trust-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(43, 122, 120, 0.15) 0%, transparent 60%);
}
.svc-trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.svc-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-trust-item:last-child {
  border-right: none;
}
.svc-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.svc-trust-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.svc-trust-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* === WORKSHOP SECTION === */
.workshop-section {
  background: var(--gray-50);
  padding: 5rem 0;
}
.workshop-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  padding: 3rem;
  align-items: center;
  border-left: 6px solid var(--gold);
}
.workshop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(43,122,120,0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(43,122,120,0.25);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}
.workshop-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.workshop-desc {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.workshop-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}
.workshop-meta-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.35rem 0.9rem;
}
.workshop-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
}
.workshop-date-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(43,122,120,0.25);
  margin-bottom: 1rem;
  min-width: 180px;
}
.workshop-date-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.workshop-date-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
}
.workshop-date-note {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* === HOW IT WORKS — Steps === */
.how-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--navy) 1.3px, transparent 1.3px);
  background-size: 16px 16px;
  opacity: 0.04;
  pointer-events: none;
}
.how-section > .container {
  position: relative;
  z-index: 1;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}
.step-item {
  text-align: center;
  padding: 0 2rem;
  position: relative;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(43,122,120,0.3);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* === INSURANCE & FEES === */
.fees-section {
  padding: 5rem 0;
  background: var(--gray-50);
}
.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.fees-content-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.fees-content-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.fees-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.tag-navy {
  background: rgba(26,54,93,0.1);
  color: var(--navy);
}
.tag-green {
  background: rgba(43,122,120,0.1);
  color: var(--green);
}
.tag-gold {
  background: rgba(43,122,120,0.08);
  color: var(--gold-dark);
}

/* Contact box */
.contact-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
}
.contact-box-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-box-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-box-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.contact-box-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.9rem;
}
.contact-box-item a { color: var(--gold); }
.contact-box-item a:hover { color: var(--gold-light); }
.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 1.5rem 0;
}

/* =============================================
   DETAIL PAGES — Shared Components
   ============================================= */

/* 2-column content layout */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

/* Content blocks */
.content-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.content-block:last-child { margin-bottom: 0; }
.content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(26,54,93,0.07);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.content-card:last-child { margin-bottom: 0; }

.content-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.85rem;
}
.content-intro {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.content-intro:last-child { margin-bottom: 0; }

/* Content section title with gold bar */
.content-section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.content-section-title::before {
  content: '';
  width: 4px;
  height: 1.4rem;
  background: var(--gold);
  border-radius: 99px;
  display: inline-block;
}

/* Content quote */
.content-quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

/* === SESSION LIST (Pre-Marital) === */
.sessions-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.session-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.session-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.session-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.session-num.final {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--white);
}
.session-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}
.session-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.session-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* === SESSION TIMELINE (Marital) === */
.session-timeline { position: relative; }
.session-timeline .session-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  align-items: flex-start;
}
.session-timeline .session-item:last-child { margin-bottom: 0; }
.session-timeline .session-item:hover {
  border-color: transparent;
  box-shadow: none;
}
.session-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.session-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.session-line {
  width: 2px;
  flex: 1;
  background: var(--gray-200);
  margin: 3px 0;
  min-height: 20px;
}
.session-timeline .session-item:last-child .session-line { display: none; }
.session-timeline .session-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.25rem;
  padding-top: 4px;
  font-family: var(--font-body);
}
.session-timeline .session-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* === WHO SHOULD ATTEND === */
.who-attend-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.who-attend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.who-attend-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(43,122,120,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Tip/callout box */
.callout-box {
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43,122,120,0.2);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.callout-box-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.callout-box-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.callout-box-text {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 0;
}

/* === BOOKING SIDEBAR (Light design) === */
.booking-sidebar {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 4px 24px rgba(26,54,93,0.1);
  border: 1px solid var(--gray-200);
}
.booking-sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.booking-sidebar-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.75rem;
}

/* Form labels */
.booking-sidebar .form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}
.booking-sidebar .form-label span {
  color: var(--gold-dark);
}

/* Form inputs */
.booking-sidebar .form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-800);
  background: var(--white);
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.booking-sidebar .form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(43,122,120,0.12);
}
.booking-sidebar .form-input::placeholder {
  color: var(--gray-400);
}
.booking-sidebar select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237D8793' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.booking-sidebar .form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Form layout */
.form-group { margin-bottom: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Booking notes */
.booking-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 1rem;
  justify-content: center;
}
.booking-note span { color: var(--gold-dark); font-weight: 600; }

/* === FORM VALIDATION === */
.input-error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.field-error {
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 0.3rem;
}
.form-message-error {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  background: #fdecea;
  color: #9a2c2c;
  border: 1px solid #f5c6cb;
}

/* === CONFIRMATION SCREEN === */
.confirmation-screen {
  text-align: center;
  padding: 1rem 0;
}
.confirmation-icon {
  margin-bottom: 1.25rem;
}
.confirmation-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.confirmation-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.confirmation-text strong {
  color: var(--navy);
}
.confirmation-email-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #eef6fb;
  border: 1px solid #c9dff0;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
  color: var(--gray-700);
  line-height: 1.55;
  text-align: left;
  margin-bottom: 1.5rem;
}
.confirmation-email-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.confirmation-email-notice strong {
  color: var(--navy);
}
.confirmation-next {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1.15rem 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
.confirmation-next-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.confirmation-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.confirmation-steps li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.confirmation-steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.confirmation-contact {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.confirmation-contact a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.confirmation-contact a:hover {
  color: var(--gold-dark);
}

/* Sidebar form label (legacy compat) */
.sidebar-form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.sidebar-form-group { margin-bottom: 0.85rem; }

/* Info sidebar card */
.info-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(26,54,93,0.07);
  padding: 1.35rem 1.5rem;
  margin-top: 1.25rem;
}
.info-sidebar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.85rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
}
.info-item:last-child { margin-bottom: 0; }
.info-item-icon { font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }
.info-item-text {
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.info-item-text strong { color: var(--gray-800); }

/* Fee banner */
.fee-banner {
  background: rgba(43,122,120,0.06);
  border: 1px solid rgba(43,122,120,0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1.5;
}
.fee-banner strong { color: var(--navy); }

/* === PREPARE/ENRICH SECTION === */
.pe-section {
  padding: 5rem 0;
  background: var(--gray-50);
}
.pe-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.pe-card-content { padding: 3rem; }
.pe-card-visual {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pe-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(43,122,120,0.15) 0%, transparent 65%);
}
.pe-stat {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}
.pe-stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.pe-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.pe-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}
.pe-instructor-badge {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pe-instructor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pe-instructor-name { color: var(--white); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem; }
.pe-instructor-role { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

.pe-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.pe-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.pe-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(43,122,120,0.12);
  color: var(--green);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* === ISSUES GRID === */
.issues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.issue-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.83rem;
  color: var(--navy);
  font-weight: 500;
}
.issue-chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26,54,93,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* === CHECK LIST === */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.check-list li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === APPROACH BOX === */
.approach-box {
  background: linear-gradient(135deg, rgba(26,54,93,0.04) 0%, rgba(43,122,120,0.04) 100%);
  border: 1px solid rgba(26,54,93,0.1);
  border-radius: 10px;
  padding: 1.5rem;
}
.approach-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.approach-desc {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0 0 0.75rem;
}
.approach-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(43,122,120,0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

/* === APPROACH LIST (Youth) === */
.approach-list { list-style: none; padding: 0; margin: 0; }
.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.approach-list li:last-child { border-bottom: none; }
.approach-list li::before {
  content: '\2726';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* === AGE GROUPS (Youth) === */
.age-groups { display: flex; flex-direction: column; gap: 1rem; }
.age-group-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.1rem;
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s;
}
.age-group-card:hover { border-color: var(--gold); }
.age-group-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.age-group-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
}
.age-group-range {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(43,122,120,0.1);
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 0.4rem;
}
.age-group-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* === PARENT RESOURCES (Youth) === */
.parent-resources {
  background: rgba(43,122,120,0.04);
  border: 1px solid rgba(43,122,120,0.15);
  border-radius: 10px;
  padding: 1.35rem 1.5rem;
  margin-top: 1.25rem;
}
.parent-resources-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.parent-tip-list { list-style: none; padding: 0; margin: 0; }
.parent-tip-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.parent-tip-list li::before {
  content: '\2192';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Parent note card (sidebar) */
.parent-note-card {
  background: rgba(26,54,93,0.04);
  border: 1px solid rgba(26,54,93,0.12);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
}
.parent-note-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.parent-note-text {
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.7;
  text-align: left;
}

/* === AFTER FIRST SESSION (Youth) === */
.after-section {
  padding: 4rem 0;
  background: var(--white);
}
.after-section-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 0.5rem;
}
.after-section-desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  text-align: center;
  margin: 0 0 2.5rem;
}
.after-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.after-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.after-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}
.after-step-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.after-step-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* === TESTIMONIALS === */
.testimonial-section {
  padding: 5rem 0;
}
.testimonial-large {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.testimonial-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(43,122,120,0.1) 0%, transparent 60%);
}
.testimonial-large-quote {
  font-size: 6rem;
  line-height: 1;
  font-family: var(--font-heading);
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
}
.testimonial-large-content { position: relative; z-index: 1; }
.testimonial-large-stars {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}
.testimonial-large-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.testimonial-large-author {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
}
.testimonial-large-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-large-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-large-role {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}

/* Centered testimonial card */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(26,54,93,0.07);
  padding: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* === RELATED SERVICES === */
.related-section {
  padding: 5rem 0;
  background: var(--gray-50);
}
.related-section-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  display: block;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.related-card-top {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  background-size: cover;
  background-position: center;
}
.related-card-top-premarital {
  background:
    linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(30, 74, 138, 0.75) 100%),
    url('../images/gallery/gallery-03.jpg') center/cover no-repeat;
}
.related-card-top-marital {
  background:
    linear-gradient(135deg, rgba(15, 37, 72, 0.8) 0%, rgba(26, 54, 93, 0.75) 100%),
    url('../images/gallery/gallery-06.jpg') center/cover no-repeat;
}
.related-card-top-youth {
  background:
    linear-gradient(135deg, rgba(26, 74, 58, 0.8) 0%, rgba(45, 134, 83, 0.75) 100%),
    url('../images/gallery/gallery-09.jpg') center/cover no-repeat;
}
.related-card-top-workshop {
  background:
    linear-gradient(135deg, rgba(168, 137, 62, 0.8) 0%, rgba(43, 122, 120, 0.75) 100%),
    url('../images/gallery/gallery-08.jpg') center/cover no-repeat;
}
.related-card-top-courses {
  background:
    linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(43, 122, 120, 0.75) 100%),
    url('../images/gallery/gallery-05.jpg') center/cover no-repeat;
}
.related-card-body { padding: 1.5rem; }
.related-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.related-card-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Simple related card (no image top) */
.related-card-simple {
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.related-card-simple:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26,54,93,0.1);
}
.related-card-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.related-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .svc-card { grid-template-columns: 1fr; }
  .svc-card-reversed { direction: ltr; }
  .svc-card-visual { min-height: 360px; }
  .svc-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .svc-trust-item { border-right: none; padding: 0.75rem; }
  .svc-trust-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .workshop-card { grid-template-columns: 1fr; }
  .workshop-cta-col { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
  .fees-grid { grid-template-columns: 1fr; }
  .pe-card { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .after-steps { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
  .svc-card-content { padding: 2rem; }
  .svc-card-visual { min-height: 300px; }
  .svc-visual-content { padding: 1.5rem; gap: 1.5rem; }
  .svc-visual-icon-large { width: 80px; height: 80px; }
  .svc-visual-icon-large svg { width: 40px; height: 40px; }
  .svc-visual-stat-number { font-size: 2.25rem; }
  .svc-trust-grid { grid-template-columns: 1fr; }
  .svc-trust-item { border-right: none !important; padding: 0.5rem 0; }
  .steps-row { grid-template-columns: 1fr; gap: 2rem; }
  .steps-row::before { display: none; }
  .step-item { padding: 0; }
  .issues-grid { grid-template-columns: 1fr; }
  .testimonial-large { padding: 2.5rem 1.5rem; }
  .pe-card-content { padding: 2rem; }
  .pe-card-visual { padding: 2rem; }
  .booking-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .speaker-booking-band { grid-template-columns: 1fr; }
  .speaker-booking-speakers { flex-direction: column; }
}

/* === BOOK A SPEAKER BAND === */
.speaker-booking-band {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  align-items: center;
}
.speaker-booking-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin: 0.5rem 0 1rem;
}
.speaker-booking-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.speaker-booking-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.speaker-topic-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}
.speaker-booking-speakers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.speaker-card-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}
.speaker-mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.speaker-card-mini strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
}
.speaker-card-mini span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.speaker-booking-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0.25rem 0 0;
  font-style: italic;
}

@media (max-width: 1024px) {
  .speaker-booking-band {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
}
