/* =========================
   style.css — Fixed & Updated
   - Restored full original stylesheet
   - Replaced truncated affirmation block with clean minimalist block
   - Blog preview, Plans, Footer left intact
   ========================= */

/* ========== Base ========== */

:root {
  --brand: #F5B2B6;
  --brand-soft: #ffe6e8;
  --brand-dark: #d27883;
  --bg: #fff9f9;
  --text: #222;
  --muted: #666;
  --card: #fff;
  --border: #f2d6d9;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: #fdf6f7;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.section-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Generic Grids */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #3d141c;
  box-shadow: 0 10px 24px rgba(245, 178, 182, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(245, 178, 182, 0.6);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: transparent;
}

.btn-outline:hover {
  background: #fff1f3;
}

.btn-full {
  width: 100%;
}

/* ========== Topbar & Header ========== */

.topbar {
  background: #fdf0f2;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

.topbar-phone {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.topbar-phone span.fa {
  color: var(--brand-dark);
}

.topbar-location {
  margin-left: 8px;
  border-left: 1px solid #e6c2c6;
  padding-left: 8px;
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f1d3d7;
  margin-left: 6px;
  font-size: 12px;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffffeb;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f2d6d9;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
}

.brand img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-toggle {
  border: none;
  background: none;
  font-size: 20px;
  display: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  align-items: center;
}

.nav-links a {
  position: relative;
  color: #555;
}

.nav-links a.active,
.nav-links a:hover {
  color: #111;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: #fff;
    flex-direction: column;
    padding: 10px 16px 14px;
    border-bottom: 1px solid #f0d2d6;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ========== Hero ========== */

.hero {
  padding: 40px 0 40px;
  background: var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--brand-dark);
  margin: 0 0 10px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 28px;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-notes p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain; /* ensures full image visible */
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.hero-mini-slides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.hero-mini-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #f3dadc;
}

/* Info strip under hero */

.info-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.info-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.info-card h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.info-card p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.info-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.info-card-cta {
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Services ========== */

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 14px 18px;
  text-align: left;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.service-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* ========== Why Coaching ========== */

.image-panel img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.text-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid #f3d6d8;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 16px;
}

.feature-row h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.feature-row p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* ==========================
   Minimalist Affirmation CSS (REPLACED & FIXED)
   - compact, two cards per row on desktop
   - sample pill + single CTA
   ========================== */

#affirmation-service {
  background: #ffffff;
  padding: 40px 0;
  color: #222;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial;
}

/* Header + CTA (compact) */
.aff-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 18px;
  padding: 0 10px;
}
.aff-header h2 {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 700;
  color: #2a1b1d;
}
.aff-sub {
  margin: 0;
  font-size: 13px;
  color: #6d6d72;
}

/* Single centered CTA */
.aff-cta-center {
  margin-top: 12px;
  margin-bottom: 18px;
}
.aff-cta-center .btn-primary {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

/* MAIN GRID: left (packs) + right (feature) */
.aff-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .aff-grid { grid-template-columns: 1fr; }
}

/* LEFT: make cards small & minimalist, two per row */
.aff-left {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
@media (max-width: 760px) {
  .aff-left { grid-template-columns: 1fr; gap: 12px; }
}

/* Pack card: minimal */
.aff-pack {
  background: #fff;
  border: 1px solid rgba(45, 20, 24, 0.06);
  border-radius: 10px;
  padding: 12px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;   /* compact height */
  transition: transform .14s ease, box-shadow .14s ease;
}
.aff-pack:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(18,12,14,0.06);
}

/* Pack header: title + small count */
.aff-pack-head {
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:space-between;
}
.aff-pack-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #291518;
  line-height: 1.05;
}
.aff-count {
  font-size: 11px;
  color: #7d3f46;
  background: rgba(125,63,70,0.06);
  padding: 4px 8px;
  border-radius: 999px;
  font-weight:700;
}

/* Compact list: reduce spacing and font-size */
.aff-items {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
  color: #5e5e66;
  font-size: 13px;
  line-height: 1.35;
  counter-reset: aff-counter;
}
.aff-items li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 22px;
  counter-increment: aff-counter;
}
.aff-items li::before {
  content: counter(aff-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  color: #3d2a2c;
  font-weight:700;
}

/* Numbering offset classes */
.aff-items.start-6 { counter-reset: aff-counter 5; }
.aff-items.start-11 { counter-reset: aff-counter 10; }
.aff-items.start-16 { counter-reset: aff-counter 15; }
.aff-items.start-21 { counter-reset: aff-counter 20; }

/* Small sample preview - pill-style to keep minimal */
.aff-sample-card {
  display: inline-block;
  background: rgba(245,178,182,0.06);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  color: #3b2a2b;
  align-self: start;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Visual separator if needed (very light) */
.aff-sep {
  color: rgba(150,100,104,0.14);
  font-size: 16px;
  text-align: center;
  margin-top: 6px;
}

/* RIGHT: featured card minimal */
.aff-right { display:flex; align-items:flex-start; }
.aff-feature {
  background: linear-gradient(180deg, #fff, #fff9f9);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid rgba(45,20,24,0.04);
  box-shadow: 0 12px 28px rgba(18,12,14,0.03);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.aff-tag {
  font-size: 11px;
  color: #7d3f46;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.aff-feature-title {
  font-size:16px;
  margin:0;
  color:#291518;
  font-weight:700;
}
.aff-feature-desc {
  font-size:13px;
  color:#5e5e66;
  margin:0;
}

/* Meta list small */
.aff-feature-meta { margin: 0; padding-left: 16px; color:#6b6b72; font-size:13px; }

/* Price row */
.aff-price-row { display:flex; gap:8px; align-items:baseline; margin-top:2px; }
.aff-price-label { font-size:12px; color:#6b6b72; }
.aff-price { font-size:20px; font-weight:800; color:#291518; }

/* Actions compact */
.aff-actions { display:flex; flex-direction:column; gap:8px; margin-top:8px; }
.aff-actions .btn-full { padding:10px 12px; border-radius:10px; font-weight:700; width:100%; }

/* Note text */
.aff-note { font-size:13px; color:#6d6d72; margin-top:6px; }

/* Accessibility focus */
.aff-cta-center .btn-primary:focus,
.aff-actions .btn-full:focus,
.aff-pack:focus { outline: 3px solid rgba(125,63,70,0.08); outline-offset:4px; }

/* Mobile adjustments: stack left cards and slightly reduce padding */
@media (max-width:760px){
  #affirmation-service { padding: 30px 0; }
  .aff-left { grid-template-columns: 1fr; }
  .aff-pack { min-height: auto; padding: 12px; }
  .aff-pack-head h3 { font-size: 15px; }
  .aff-items { font-size: 14px; padding-left: 18px; }
  .aff-sample-card { display:block; margin-top:6px; }
}

/* ========== Counters ========== */

.section-counters {
  background: #fff9f9;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.counter-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 0;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.counter-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

.counter-card span {
  font-size: 12px;
  color: var(--muted);
}

/* ========== Testimonials ========== */

.testimonial-card {
  background: #3b2632;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}

.quote-icon {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--brand);
}

.testimonial-text {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testimonial-img {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
}

.testimonial-author .name {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.testimonial-author .role {
  margin: 0;
  font-size: 11px;
  opacity: 0.8;
}

/* ==============================
   TESTIMONIAL SLIDER (MATCH BLOG)
============================== */

.testimonial-slider-wrap {
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-slider .testimonial-card {
  flex-shrink: 0;
}

/* Desktop: 3 testimonials */
@media (min-width: 1024px) {
  .testimonial-slider {
    flex-wrap: nowrap;
  }

  .testimonial-slider .testimonial-card {
    flex: 0 0 calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
  }
}

/* Tablet: 2 testimonials */
@media (max-width: 1023px) and (min-width: 768px) {
  .testimonial-slider .testimonial-card {
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
}

/* Mobile: 1 testimonial */
@media (max-width: 767px) {
  .testimonial-slider .testimonial-card {
    flex: 0 0 85%;
    max-width: 85%;
  }
}

/* ========== Blog Cards ========== */

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.blog-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  display: block;
}

.blog-body {
  padding: 12px 14px 15px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.blog-title {
  margin: 0;
  font-size: 14px;
}

/* ==============================
   Sessions with Charges — SINGLE CARD OPTIMIZED
   Scoped under #sessions-plans
============================== */

#sessions-plans {
  background: #fff9f9;
}

/* Header */
#sessions-plans .section-header h2 {
  font-size: 26px;
  color: #35131b;
  margin-bottom: 6px;
}

#sessions-plans .section-subtitle {
  color: var(--muted);
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto;
}

/* GRID — optimized for single card */
#sessions-plans .plans-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

/* Plan card — featured look */
#sessions-plans .plan-card {
  background: linear-gradient(180deg, #ffffff, #fff5f6);
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid rgba(242,214,217,0.7);
  box-shadow: 0 22px 48px rgba(18,12,14,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: auto;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Soft highlight ring */
#sessions-plans .plan-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    rgba(245,178,182,0.35),
    rgba(245,178,182,0.05),
    rgba(245,178,182,0.35)
  );
  opacity: 0.4;
  z-index: -1;
}

/* Hover */
#sessions-plans .plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 64px rgba(18,12,14,0.12);
}

/* Price */
#sessions-plans .plan-price {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: #291518;
  text-align: center;
}

#sessions-plans .plan-price .currency {
  font-size: 18px;
  margin-right: 4px;
  color: #6b6b72;
  vertical-align: top;
}

/* Name */
#sessions-plans .plan-name {
  margin: 0;
  font-size: 18px;
  color: #35131b;
  font-weight: 700;
  text-align: center;
}

/* Divider */
#sessions-plans .plan-divider {
  height: 1px;
  background: rgba(242,214,217,0.8);
  margin: 6px 0 4px;
}

/* Features list */
#sessions-plans .plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #5e5e66;
  font-size: 14px;
  line-height: 1.6;
}

#sessions-plans .plan-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

#sessions-plans .plan-list li::before {
  content: "✓";
  color: #b55a66;
  font-weight: 700;
  margin-top: 2px;
}

/* CTA */
#sessions-plans .plan-actions {
  margin-top: 10px;
}

#sessions-plans .plan-actions .btn-full {
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  background: var(--brand);
  color: #3d141c;
  box-shadow: 0 12px 26px rgba(245,178,182,0.5);
}

#sessions-plans .plan-actions .btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(245,178,182,0.6);
}

/* Note */
#sessions-plans .plans-note {
  font-size: 13px;
  color: #6b6b72;
  text-align: center;
  margin-top: 12px;
}

#sessions-plans .plan-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#sessions-plans .plan-actions {
  margin-top: auto;
}


/* ==============================
   Sessions with Charges — 3 DESKTOP / 1 MOBILE
============================== */

/* Grid: 3 cards on desktop */
#sessions-plans .plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  align-items: stretch;
}

/* Tablet: still 3 (optional – keeps consistency) */
@media (max-width: 1100px) {
  #sessions-plans .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: single column */
@media (max-width: 700px) {
  #sessions-plans .plans-grid {
    grid-template-columns: 1fr;
  }
}


/* End Sessions with Charges */



/* ========== Footer ========== */

.site-footer {
  background: #201019;
  color: #f4e8ec;
  padding: 40px 0 18px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-bottom: 18px;
}

.footer-col h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.footer-col p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #e3d0d7;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.footer-col ul li + li {
  margin-top: 4px;
}

.footer-col a {
  color: #f6d0d6;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #3c222f;
  margin-right: 6px;
  font-size: 13px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #664352;
  padding: 8px 10px;
  font-size: 12px;
  margin-bottom: 8px;
  background: #2d1722;
  color: #f6dde4;
}

.footer-form textarea {
  resize: vertical;
}

.footer-bottom {
  border-top: 1px solid #3d2230;
  padding-top: 10px;
  font-size: 11px;
  color: #c9a7b3;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* ========== Responsive Tweaks ========== */

@media (max-width: 600px) {
  .hero {
    padding-top: 32px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .section {
    padding: 46px 0;
  }
}

/* ===== Page Hero (shared across inner pages) ===== */

.page-hero {
  padding: 40px 0 30px;
  background: #fff5f6;
  border-bottom: 1px solid #f3d5d7;
}

.page-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--brand-dark);
  margin: 0 0 8px;
}

.page-hero-title {
  margin: 0 0 6px;
  font-size: 26px;
}

.page-hero-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 620px;
}

/* Centered CTA on some pages */
.page-cta-center {
  text-align: center;
}

/* About photo card */
.about-photo-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-photo-card img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

.about-photo-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.about-highlight {
  margin: 4px 0 0;
  color: var(--brand-dark);
  font-weight: 600;
}

/* Stories page tweaks */
.story-card {
  background: #3b2632;
}

/* Single blog layout adjustments (reuse existing single-layout in main css) */
.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.single-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.single-body p {
  margin-bottom: 12px;
}

.single-sidebar .card + .card {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .single-layout {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CONTACT PAGE — PREMIUM DESIGN
=========================== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

/* Section headline */
.contact-grid h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #3d1f25;
}

/* Form container */
.contact-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #f3d5d7;
  box-shadow: 0 10px 32px rgba(245, 178, 182, 0.12);
}

/* Input layout */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-weight: 600;
  font-size: 13px;
  color: #623a41;
  letter-spacing: 0.3px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #eac0c4;
  font-size: 14px;
  background: #fffdfd;
  transition: all 0.25s ease;
}

/* Focus interaction */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #F5B2B6;
  box-shadow: 0 0 8px rgba(245, 178, 182, 0.4);
  background: #ffffff;
  outline: none;
}

/* Placeholder tone */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b08a8f;
}

/* Submit button */
.contact-form .btn-primary {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 15px;
  background: #F5B2B6;
  border: none;
  color: #4b242a;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.contact-form .btn-primary:hover {
  background: #e89aa0;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(245, 178, 182, 0.35);
}

/* Right-side info cards */
.contact-grid .card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #f2cfd3;
  margin-bottom: 20px;
  transition: all 0.2s ease;
}

.contact-grid .card:hover {
  background: #fff7f8;
  border-color: #F5B2B6;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 178, 182, 0.15);
}

.contact-grid .card-title {
  font-size: 17px;
  margin-bottom: 8px;
  color: #472229;
}

/* Breakpoints */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 22px;
  }

  .contact-grid .card {
    padding: 18px;
  }
}
/* ==========================
   Services — detailed grid styles
   Paste into css/style.css
   ========================== */

/* Container intro */
#services-main .service-intro {
  max-width: 920px;
  margin: 0 auto 18px;
  color: #5e5e66;
  font-size: 15px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Service card */
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(242,214,217,0.6);
  box-shadow: 0 14px 32px rgba(18,12,14,0.03);
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height: 220px;
  transition: transform .14s ease, box-shadow .14s ease;
}
.service-card.compact { min-height: 160px; padding: 14px; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(18,12,14,0.06);
}

/* Headings inside card */
.service-head h2 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #35131b;
  line-height: 1.08;
}
.service-sub { margin: 0; font-size: 13px; color: #6b6b72; }

/* Service body copy */
.service-body { flex: 1; display:flex; flex-direction:column; gap:12px; }
.service-highlights { margin: 0; padding-left: 18px; color: #5e5e66; line-height: 1.5; }
.service-highlights li { margin-bottom: 8px; font-size: 14px; }

/* Meta info & CTA */
.service-meta { color: #6b6b72; font-size: 13px; margin-top: 4px; }
.btn-cta { align-self:flex-start; padding: 10px 14px; border-radius: 10px; }

/* FAQ block */
.service-faq { margin-top: 22px; }
.faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
@media (max-width: 980px) { .faq-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item { background: #fff; padding: 14px; border-radius: 10px; border: 1px solid rgba(242,214,217,0.5); box-shadow: 0 12px 26px rgba(18,12,14,0.02); }
.faq-item h3 { margin: 0 0 8px; font-size: 15px; color: #35131b; }
.faq-item p { margin: 0; color: #6b6b72; font-size: 14px; }

/* Minimal utility tweaks for mobile readability */
@media (max-width: 480px) {
  .service-card { padding: 14px; min-height: auto; }
  .service-head h2 { font-size: 16px; }
  .service-highlights li { font-size: 13px; }
  .btn-cta { width: 100%; text-align:center; }
}

/* Accessibility */
.service-card:focus-within, .service-card:hover { outline: none; }

/* End Services styles */

/* ==============================
   Success Stories – Single Card View
============================== */

.stories-unified-grid {
  display: grid;
  grid-template-columns: 1fr !important; /* ✅ one card only */
  gap: 22px;
}

/* Ensure story card layout stays clean */
.story-item {
  width: 100%;
}

.story-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(242,214,217,0.6);
  box-shadow: 0 14px 32px rgba(18,12,14,0.04);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 16px;
}

.story-audio {
  width: 100%;
  margin: 12px 0;
}


/* ==============================
   Success Stories – Dynamic Image Sizing
============================== */

.story-item {
  display: grid;
  grid-template-columns: 280px 1fr; /* image + text */
  gap: 22px;
  align-items: stretch; /* 🔑 key for equal height */
}

/* Image wrapper grows with content */
.story-media {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
}

/* Image adapts to card height */
.story-media img {
  width: 100%;
  height: auto;          /* 🔑 remove fixed height */
  max-height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Mobile: image on top */
@media (max-width: 768px) {
  .story-item {
    grid-template-columns: 1fr;
  }

  .story-media img {
    width: 100%;
    height: auto;
  }
}



.story-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #35131b;
}

.story-meta {
  font-size: 12px;
  color: #8b5a62;
  margin-bottom: 10px;
}

.story-content p {
  font-size: 14px;
  color: #5e5e66;
  line-height: 1.6;
  margin-bottom: 10px;
}

.story-quote {
  font-style: italic;
  color: #7a4a52;
}

.story-audio {
  width: 100%;
  margin: 10px 0;
}

/* Load more */
.load-more-wrap {
  text-align: center;
  margin-top: 26px;
}

/* Tablet */
@media (max-width: 900px) {
  .stories-unified-grid {
    grid-template-columns: 1fr;
  }

  .story-item {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .story-item {
    padding: 14px;
  }

  .story-content h3 {
    font-size: 16px;
  }
}

/* ==============================
   Blog Single – Featured Image
   ============================== */
.blog-featured-image {
  margin: 0 0 24px;
  border-radius: 14px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==============================
   Blog Single – More Blogs Section
   ============================== */
.single-layout + .section-alt {
  margin-top: 40px;
}

.section-alt .blog-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.section-alt .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}

.section-alt .blog-title {
  font-size: 15px;
  margin: 0;
  line-height: 1.4;
}

/* ==============================
   Masonry Gallery – Balanced Look
============================== */

.gallery-grid {
  column-count: 4;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8f8f8;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-grid {
    column-count: 3;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    column-count: 1;
  }
}


/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 12px;
  cursor: zoom-out;
  touch-action: pinch-zoom;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* ==============================
   COURSES – FINAL CLEAN DESIGN
============================== */

#courses-offer {
  background: #fdf6f7;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

/* Card */
.course-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid #f2d6d9;
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.08);
}

/* Number pill */
.course-number {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: #7d3f46;
  background: rgba(245,178,182,0.35);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Title */
.course-title {
  font-size: 17px;
  margin: 0 0 8px;
  color: #2a1b1d;
}

/* Body */
.course-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.course-tagline {
  font-size: 13px;
  font-style: italic;
  color: #7d3f46;
}

.course-intro {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Points */
.course-points {
  margin: 0;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #555;
}

.course-points li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   BLOG SLIDER (Performance Optimized)
============================== */

.blog-slider-wrap {
  position: relative;
}

/* Shared base */
.blog-slider {
  display: flex;                 /* ✅ REQUIRED */
  gap: 18px;
  scroll-behavior: smooth;
  overflow-x: auto;
}


/* Hide scrollbar */
.blog-slider::-webkit-scrollbar {
  display: none;
}

/* Blog card base */
.blog-slider .blog-card {
  flex-shrink: 0;
}

/* Slider arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #f2d6d9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  z-index: 5;
}

.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }

/* =====================================
   BLOG SLIDER – SHOW 3 CARDS ON DESKTOP
===================================== */

/* Desktop: exactly 3 cards visible */
@media (min-width: 1024px) {
  .blog-slider {
    flex-wrap: nowrap;
  }

  .blog-slider .blog-card {
    flex: 0 0 calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
  }
}


@media (max-width: 1023px) and (min-width: 768px) {
  .blog-slider .blog-card {
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 767px) {
  .blog-slider .blog-card {
    flex: 0 0 85%;
    max-width: 85%;
  }
}

/* ===============================
   HERO DISCLAIMER
================================ */

.hero-disclaimer {
  margin-top: 18px;
  max-width: 520px;
}

.hero-disclaimer p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: black;
  font-style: italic;
  border-left: 2px solid rgba(255, 255, 255, 0.35);
  padding-left: 12px;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .hero-disclaimer {
    margin-top: 14px;
  }

  .hero-disclaimer p {
    font-size: 0.78rem;
    padding-left: 10px;
  }
}
