/* =====================================================
   Aligned & Empowered Wellness
   One-page website styles
   Orchid / ethereal / luxury therapy brand
===================================================== */

:root {
  --cream: #fbf8f3;
  --warm-white: #fffdf9;
  --soft-blush: #f5ece8;
  --soft-orchid: #eaddea;
  --orchid: #8fa086;       /* soft sage */
--muted-orchid: #5f705b; /* deeper sage */
  --sage-light: #e5ece3;
  --sage: #8fa086;
  --sage-deep: #5f705b;
  --clay: #b98773;
  --ink: #2e332d;
  --muted-text: #6f756a;
  --border-soft: rgba(95, 112, 91, 0.18);
  --shadow-soft: 0 28px 80px rgba(79, 65, 54, 0.12);
  --shadow-card: 0 18px 45px rgba(79, 65, 54, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.045em;
}



p {
  color: var(--muted-text);
}

a {
  text-decoration: none;
}

section {
  padding: 100px 7%;
}

/* NAV */

.custom-nav {
  padding: 16px 7%;
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

/* ===== Elevated Text Logo ===== */

.navbar-brand {
  display: flex;
  flex-direction: row; /* ← THIS is what you want */
  align-items: center;
  gap: 10px;

  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--ink);

  font-size: 1.55rem;
}


.logo-wrap {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 72px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column; /* keeps "Wellness" under */
  line-height: 1;
}


.navbar-brand span {
  margin-top: 4px;

  font-family: "Open Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: var(--sage-deep);
}

/* subtle polish */
.navbar-brand:hover {
  color: var(--sage-deep);
}

.nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-text);
  margin: 0 0px;
}

.nav-link:hover {
  color: var(--sage-deep);
}

.nav-cta {
  display: inline-flex;
  margin-left: 12px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--sage-deep);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-cta:hover {
  background: #4f604b;
  color: #fff;
}

.navbar-toggler {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 768px) {
  .custom-nav {
    padding: 10px 6%;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    font-size: 1.1rem;
    max-width: calc(100% - 58px);
  }

  .nav-logo {
    height: 42px;
    width: auto;
  }

  .brand-text {
    line-height: 1;
  }

  .navbar-brand span {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    margin-top: 2px;
  }

  .navbar-collapse {
    width: 100%;
    text-align: right;
    overflow: hidden;
  }

  .navbar-nav {
    width: 100%;
    align-items: flex-end;
    padding-top: 12px;
  }

  .nav-item {
    width: 100%;
    text-align: right;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: right;
    padding-right: 0;
    white-space: nowrap;
  }

  .nav-cta {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    margin: 12px 0 0 auto;
    text-align: center;
    white-space: nowrap;
  }
}



/* HERO */

.hero-section {
  min-height: 100vh;
  padding: 165px 7% 105px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 249, 0.92) 0%,
      rgba(255, 253, 249, 0.84) 42%,
      rgba(255, 253, 249, 0.48) 70%,
      rgba(255, 253, 249, 0.3) 100%
    ),
    url("images/orchids_aligned_empowered_therapy_florida.jpg");
  background-size: cover;
  background-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(234, 221, 234, 0.72), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(229, 236, 227, 0.45), transparent 34%);
  z-index: 0;
}

.hero-content-wrap {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--orchid);
}

.centered {
  justify-content: center;
}

.hero-content-wrap h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 6.3rem);
  line-height: 0.98;
  color: var(--ink);
}

.hero-content-wrap h1 span {
  display: block;
  margin-top: 8px;
  color: var(--muted-orchid);
  font-weight: 600;
}

.hero-description {
  max-width: 650px;
  margin-top: 28px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--muted-text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn-primary-soft,
.btn-secondary-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-primary-soft {
  background: var(--sage-deep);
  color: #fff;
  box-shadow: 0 14px 34px rgba(95, 112, 91, 0.26);
}

.btn-primary-soft:hover {
  background: #4f604b;
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary-soft {
  background: rgba(255, 253, 249, 0.72);
  color: var(--sage-deep);
  border: 1px solid var(--border-soft);
}

.btn-secondary-soft:hover {
  background: var(--sage-light);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 680px;
  margin-top: 54px;
}

.hero-details div {
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.68);
  backdrop-filter: blur(14px);
}

.hero-details i {
  color: var(--muted-orchid);
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-details strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.hero-details span {
  font-size: 0.86rem;
  color: var(--muted-text);
}

/* ABOUT */

.about-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 25%, rgba(234, 221, 234, 0.5), transparent 32%),
    var(--cream);
}

.about-image-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 28px;
  border-radius: 220px 220px 34px 34px;
  background: rgba(234, 221, 234, 0.45);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 220px 220px 34px 34px;
  box-shadow: var(--shadow-soft);
  border: 14px solid rgba(255, 253, 249, 0.9);
}

.about-badge {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: -58px auto 0;
  padding: 18px 20px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.about-badge span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.about-badge small {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted-text);
}

.text-panel,
.service-card,
.approach-card,
.fees-card,
.contact-card,
details {
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.text-panel {
  padding: 44px;
}

.about-text-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 28px;
}

.text-panel p + p {
  margin-top: 18px;
}

/* SHARED CONTENT */

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.split-section h2,
.centered-heading h2,
.fees-card h2,
.contact-card h2,
.pre-contact-content h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.08;
}

.soft-bg {
  background:
    radial-gradient(circle at 20% 30%, rgba(234, 221, 234, 0.5), transparent 30%),
    var(--warm-white);
}

.centered-heading {
  max-width: 850px;
  margin: 0 auto 56px;
  text-align: center;
}

.centered-heading p {
  font-size: 1.05rem;
}

/* ICONS */

.icon-circle {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 171, 201, 0.14);
  color: var(--sage-deep);
  box-shadow: 0 8px 18px rgba(79, 65, 54, 0.045);
}

.icon-circle i {
  font-size: 1.15rem;
  line-height: 1;
}

/* APPROACH + SERVICES */

.approach-section,
.services-section {
  background: var(--warm-white);
}

.approach-grid,
.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.approach-grid,
.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.approach-card,
.service-card {
  padding: 34px;
}

.approach-card h3,
.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.service-card ul,
.soft-list {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted-text);
}

.service-card li,
.soft-list li {
  margin-bottom: 10px;
}

/* ===== SERVICES ACCORDION ===== */

.services-accordion-section {
  background: var(--warm-white);
}

.accordion-container {
  max-width: 900px;
  margin: 50px auto 0;
}

/* Item */
.accordion-item {
  border-bottom: 1px solid var(--border-soft);
}

/* Header */
.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
color: var(--ink); /* fixes white text */
  padding: 22px 0;

  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;

  display: flex;
  justify-content: space-between;
  align-items: center;
gap:16px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .accordion-header {
    padding: 18px 20px;
  }

  .accordion-icon {
    font-size: 20px;
  }
}

/* Icon */
.accordion-icon {
  font-size: 1.4rem;
  color: var(--muted-orchid);
  transition: transform 0.3s ease;
}

/* Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;

  padding-right: 20px;
}

/* Open state */
.accordion-item.active .accordion-content {
  max-height: 500px;
  margin-bottom: 20px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Text styling */
.accordion-content p {
  margin-bottom: 14px;
  color: var(--muted-text);
}

.accordion-content ul {
  padding-left: 20px;
  color: var(--muted-text);
}

.accordion-content li {
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .accordion-header {
    font-size: 1.1rem;
  }
}

/* IMAGE BREAK */

.image-break-section {
  padding: 80px 7%;
  background: var(--cream);
}

.image-break-card {
  position: relative;
  max-width: 1240px;
  min-height: 460px;
  margin: 0 auto;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.image-break-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.image-break-card::after {
  content: "";
  position: absolute;
  inset: 0;

  /* darker, smooth overlay for readability */
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.15) 75%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.18) 35%,
      rgba(0, 0, 0, 0.08) 65%,
      rgba(0, 0, 0, 0.03) 100%
    );
}

@media (max-width: 768px) {

  .image-break-card::after {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.65) 40%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 0.45) 100%
    );
  }

}

.image-break-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  max-width: 620px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-break-overlay h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  color: #fffdf9;
  margin-bottom: 18px;
}

.image-break-overlay p {
  color: rgba(255, 253, 249, 0.86);
  font-size: 1.08rem;
}

.image-break-overlay .section-kicker {
  color: rgba(255, 253, 249, 0.86);
}

.image-break-overlay .section-kicker::before {
  background: rgba(255, 253, 249, 0.72);
}

/* COACHING */

.note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: var(--soft-orchid);
  color: var(--ink);
}

/* ===== COACHING VISUAL SECTION (FULL WIDTH IMAGE STYLE) ===== */

.coaching-visual-section {
  position: relative;
  padding: 120px 7%;
  color: #fff;

  background:
    url("images/coaching_image_aligned_and_empowered_therapy_florida.jpg");
  background-size: cover;
  background-position: center;
}

.coaching-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* Content container */
.coaching-content {
  position: relative;
  z-index: 1;
 max-width: 1400px; 
  margin: 0 auto;
}

/* Headline */
.coaching-content h2 {
  max-width: 780px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 60px;
  color: #fff;
}

/* Grid */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(500px, 1fr));
  gap: 50px 80px; /* more breathing room */
}

/* Items */
.coaching-item {
  border-top: 1px solid rgba(255,255,255,0.35);
  padding-top: 18px;
}

.coaching-item h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #fff;
}

.coaching-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  max-width: 440px;
}

/* ===== COACHING INTRO ===== */
.coaching-intro {
  max-width: 700px;
  margin-bottom: 50px;
}

.coaching-intro p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.coaching-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* CTA */
.coaching-cta {
  margin-top: 50px;
  font-weight: 600;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .coaching-visual-section {
    padding: 90px 6%;
  }

  .coaching-content h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* FEES */

.fees-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(229, 236, 227, 0.9), transparent 28%),
    var(--cream);
}

.fees-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 54px;
  text-align: center;
}

.price {
  margin: 24px auto 8px;
  font-family: "Poppins", sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--muted-orchid);
}

.price-detail {
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 24px;
}

/* LOCATIONS */

.locations-section {
  background:
    radial-gradient(circle at 10% 25%, rgba(234, 221, 234, 0.55), transparent 32%),
    var(--warm-white);
}

.location-grid {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.location-grid span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid var(--border-soft);
  color: var(--sage-deep);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .location-grid {
    justify-content: center;
  }
}

/* FAQ */

.faq-section {
  background: var(--warm-white);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

details {
  padding: 24px 28px;
  margin-bottom: 16px;
}

summary {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--ink);
}

details p {
  margin-top: 16px;
}

details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
}

details summary::after {
  content: "+";
  float: none;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-orchid);
  font-size: 1.2rem;
}

details summary::-webkit-details-marker {
  display: none;
}

/* Rotate when open */
details[open] summary::after {
  transform: rotate(45deg);
}

/* PRE CONTACT CTA */

.pre-contact-section {
  padding: 110px 7%;
  background:
    radial-gradient(circle at 20% 20%, rgba(234, 221, 234, 0.75), transparent 34%),
    radial-gradient(circle at 82% 80%, rgba(229, 236, 227, 0.9), transparent 32%),
    var(--cream);
}

.pre-contact-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  border-radius: 38px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.pre-contact-content p {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

/* CONTACT */

.contact-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(234, 221, 234, 0.75), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(229, 236, 227, 0.9), transparent 30%),
    var(--cream);
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 54px;
  text-align: center;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.72);
  font-family: "Open Sans", sans-serif;
}

textarea {
  min-height: 130px;
}

button {
  border: none;
  border-radius: 999px;
  padding: 15px 24px;
  background: var(--sage-deep);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.contact-email {
  margin-top: 24px;
}

.contact-email a {
  color: var(--sage-deep);
  font-weight: 700;
}

/* Thank You Page Styling */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.thank-you-section h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.thank-you-section p {
  max-width: 500px;
  margin: 10px auto;
  line-height: 1.6;
}

/* FOOTER */

.site-footer {
  padding: 60px 7% 28px;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 40px;
}

.site-footer h3,
.site-footer h4 {
  color: #fffdf9;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

.site-footer a {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: #fffdf9;
}

.footer-bottom {
  max-width: 1180px;
  margin: 38px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding-top: 145px;
    background-position: center;
  }

  .hero-content-wrap {
    max-width: 100%;
  }

  .about-section,
  .split-section,
  .approach-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
  max-width: 700px; /* controls line break */
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 26px;
}

  .about-section {
    gap: 42px;
  }

  .about-img {
    height: 480px;
  }

  .image-break-overlay {
    padding: 46px;
  }


}

@media (max-width: 768px) {
  section {
    padding: 78px 6%;
  }

  .custom-nav {
    padding: 14px 6%;
  }

  .hero-section {
    padding: 125px 6% 78px;
    background:
      linear-gradient(
        rgba(255, 253, 249, 0.9),
        rgba(255, 253, 249, 0.88)
      ),
      url("images/orchids_aligned_empowered_therapy_florida.jpg");
    background-size: cover;
    background-position: center;
  }

  .hero-content-wrap h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-soft,
  .btn-secondary-soft {
    width: 100%;
  }

  .hero-details {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .about-img {
    height: 420px;
  }

  .about-badge {
    margin-top: -42px;
  }

  .text-panel,
  .fees-card,
  .contact-card,
  .pre-contact-content {
    padding: 32px;
  }

  .image-break-section {
    padding: 60px 6%;
  }

  .image-break-card,
  .image-break-card img {
    min-height: 420px;
  }

  .image-break-overlay {
    padding: 32px;
  }


  .site-footer {
    padding: 52px 6% 28px;
  }
}

/* ===== TESTIMONIAL SECTION (LIGHT BRAND VERSION) ===== */

.testimonial-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(234, 221, 234, 0.6), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(229, 236, 227, 0.8), transparent 30%),
    #fbf8f3;
  padding: 120px 7%;
  color: #2e332d;
  text-align: center;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Slides */
.testimonial-slide {
  display: none;
}

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

/* Icon */
.quote-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(201, 171, 201, 0.18);
  color: var(--sage-deep);;
  font-size: 18px;
}

/* Text */
.testimonial-text {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 30px;
  color: #2e332d;
}

/* Author */
.testimonial-author {
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-source {
  font-size: 0.85rem;
  color: #6f756a;
}

/* Arrows (moved OUTSIDE container spacing) */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 26px;
   color: var(--sage-deep);
  cursor: pointer;
}

/* push arrows further away */
.testimonial-arrow.left {
  left: -90px;
}

.testimonial-arrow.right {
  right: -90px;
}

@media (max-width: 768px) {

  .testimonial-container {
    padding: 0 40px; /* creates space for arrows */
  }

  .testimonial-arrow {
    font-size: 22px;
  }

  .testimonial-arrow.left {
    left: 0;
  }

  .testimonial-arrow.right {
    right: 0;
  }
}

/* Dots */
.testimonial-dots {
  margin-top: 40px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
    background-color: rgba(143, 160, 134, 0.4);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
 background-color: var(--sage-deep);
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .testimonial-arrow.left {
    left: -10px;
  }

  .testimonial-arrow.right {
    right: -10px;
  }
}

/* ===== GOOGLE REVIEW CARD (REFINED) ===== */

.footer-review-card {
  background: #fffdf9;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 18px 18px 16px;
  text-align: center;
  max-width: 240px;

  box-shadow: 0 10px 24px rgba(79, 65, 54, 0.08);
}


/* tighter spacing */
.review-sub {
  margin: 4px 0 2px;
  font-size: 0.85rem;
  color: var(--ink) !important;
}

.review-small {
  font-size: 0.78rem;
  color: var(--ink) !important;
  margin-bottom: 10px;
}

/* AVATARS (closer together) */
.review-avatars {
  display: flex;
  justify-content: center;
  gap: 4px; /* tighter */
  margin-bottom: 12px;
}

.review-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fffdf9;
  object-fit: cover;
}

/* BUTTON (more contrast) */
.review-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;

  background: var(--sage-deep); /* stronger brand color */
  color: #fff !important;

  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s ease;
}

.review-btn:hover {
  background: #4f604b;
  color: #fff;
}
