/* =========================================================
RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fffff0;
  color: #4e4a45;
  overflow-x: hidden;
}

/* =========================================================
SECTION SCROLL FIX
========================================================= */

#hero,
#about,
#therapist,
#services,
#reviews,
#wellness-check,
#contact {
  scroll-margin-top: 140px;
}

/* =========================================================
NAVBAR
========================================================= */

.navbar {
  width: 92%;

  height: 82px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0 34px;

  position: fixed;

  top: 20px;

  left: 50%;

  transform: translateX(-50%);

  z-index: 1000;

  background: rgba(255, 255, 255, 0.58);

  backdrop-filter: blur(22px);

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 28px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.logo-container {
  display: flex;

  align-items: center;

  gap: 14px;
}

.logo-container img {
  height: 58px;

  width: auto;

  display: block;
}

.brand-name {
  font-size: 20px;

  font-weight: 600;

  color: #5b6f64;

  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;

  gap: 34px;

  list-style: none;
}

.nav-links a {
  text-decoration: none;

  color: #66756d;

  font-size: 14px;

  font-weight: 500;

  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #b89f84;
}

.primary-btn {
  padding: 14px 26px;

  background: #7f9b8d;

  color: white;

  border-radius: 40px;

  text-decoration: none;

  font-size: 14px;

  transition: 0.3s ease;

  border: none;
}

.primary-btn:hover {
  background: #6c8578;

  transform: translateY(-2px);
}

.navbar-actions {
  display: flex;

  align-items: center;

  gap: 12px;
}

.assessment-btn {
  padding: 14px 22px;

  border-radius: 40px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  color: #a88d73;

  background: #fff8ee;

  border: 1px solid #e6d7c6;

  transition: 0.3s ease;
}

.assessment-btn:hover {
  background: #f5ebdd;

  transform: translateY(-2px);
}

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

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 7% 0;
  background: linear-gradient(
      rgba(255, 255, 240, 0.55),
      rgba(255, 255, 240, 0.6)
    ),
    url("https://images.unsplash.com/photo-1516302752625-fcc3c50ae61f?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(203, 181, 156, 0.25),
    transparent 40%
  );
}

.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 2;
}

.tagline {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  background: #f1e7d8;
  color: #a88d73;
  font-size: 13px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #5d7267;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  color: #67625d;
  margin-bottom: 38px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.secondary-btn {
  padding: 14px 26px;
  border: 1px solid #b8c6be;
  border-radius: 40px;
  text-decoration: none;
  color: #6d7d73;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.secondary-btn:hover {
  background: #edf3ef;
  transform: translateY(-2px);
}

/* =========================================================
ABOUT
========================================================= */

.about-section {
  padding: 90px 7%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.section-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #b29c84;
}

.about-left h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 22px 0;
  color: #5c6f64;
}

.about-left p {
  line-height: 2;
  color: #6a655f;
  font-size: 16px;
}

.vision-card,
.values-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.vision-card h3,
.values-card h3 {
  margin-bottom: 18px;
  color: #6b8377;
  font-size: 24px;
}

.vision-card p {
  line-height: 1.9;
  color: #6c6661;
}

.values-card ul {
  list-style: none;
}

.values-card li {
  margin-bottom: 16px;
  color: #736c66;
  position: relative;
  padding-left: 22px;
  line-height: 1.8;
}

.values-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #bda588;
}

/* =========================================================
THERAPIST SECTION
========================================================= */

.editorial-therapist-section {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px 7%;
}

.therapist-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
}

.therapist-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92);
}

.therapist-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(20, 20, 20, 0.68) 18%,
    rgba(20, 20, 20, 0.3) 52%,
    rgba(20, 20, 20, 0.12) 100%
  );
}

.therapist-editorial-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 46px;
  border-radius: 36px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.therapist-editorial-card .section-label {
  color: #e5d6c2;
}

.therapist-editorial-card h2 {
  font-size: 44px;
  line-height: 1.15;
  color: white;
  margin: 20px 0 24px;
  font-weight: 600;
}

.therapist-name {
  font-size: 30px;
  color: #f8f3ec;
  margin-bottom: 10px;
  font-weight: 500;
}

.therapist-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.12);
  color: #efe8de;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.therapist-editorial-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #f4efe8;
  margin-bottom: 28px;
  max-width: 600px;
}

.editorial-specialities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.editorial-specialities span {
  padding: 10px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

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

.services-section {
  padding: 90px 7%;
  background: linear-gradient(to bottom, #fffff0, #faf8f2);
}

.services-header {
  max-width: 760px;
  margin-bottom: 55px;
}

.services-header h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
  color: #5c6f64;
}

.services-header p {
  font-size: 16px;
  line-height: 2;
  color: #6b655f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  border-radius: 34px;
  padding: 38px;
  transition: 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.service-duration {
  padding: 10px 16px;
  border-radius: 30px;
  background: #f2e8da;
  color: #b19577;
  font-size: 13px;
}

.service-price {
  color: #7a9185;
  font-size: 22px;
  font-weight: 600;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: #5f7267;
}

.service-card p {
  line-height: 1.9;
  color: #6f6a64;
  margin-bottom: 32px;
}

.service-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 40px;
  background: #7e998c;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  background: #6b8578;
}

/* =========================================================
TRUSTED SECTION
========================================================= */

.trusted-section {
  padding: 70px 7% 50px;
  background: #fffff0;
  overflow: hidden;
}

.trusted-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.trusted-content h2 {
  font-size: 44px;
  line-height: 1.3;
  color: #5c6f64;
  margin-top: 20px;
}

.logo-slider {
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.logo-track img {
  height: 42px;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: 0.3s ease;
  object-fit: contain;
  max-width: 140px;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
TESTIMONIALS
========================================================= */

.premium-testimonial-section {
  padding: 90px 7%;
  background: linear-gradient(to bottom, #fffdf7, #f8f5ee);
}

.testimonial-wrapper {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;

  padding-bottom: 120px;
}

.premium-testimonial-section {
  position: relative;
  z-index: 1;
}

.quote-mark {
  font-size: 120px;
  color: #e8ded0;
  line-height: 1;
  margin-bottom: 10px;
  font-family: serif;
}

/* FIXED */

.testimonial-slider {
  position: relative;
  width: 100%;
}

.testimonial-slide {
  display: none;
  width: 100%;
  animation: fadeSlide 0.5s ease;
}

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

.testimonial-slide p {
  font-size: 32px;
  line-height: 1.7;
  color: #5f5b56;
  font-weight: 300;
  margin-bottom: 45px;
}

.testimonial-slide h4 {
  font-size: 24px;
  color: #6b8175;
  margin-bottom: 8px;
}

.testimonial-slide span {
  color: #a68f77;
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonial-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d0c2;
  transition: 0.3s ease;
  cursor: pointer;
}

.dot.active {
  width: 28px;
  border-radius: 20px;
  background: #7f988b;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================================
BOOKING SECTION
========================================================= */

.booking-section {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.booking-section {
  padding: 90px 7%;
  background: linear-gradient(to bottom, #eef4f0, #f8faf7);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.booking-left,
.booking-right {
  min-width: 0;
}

.booking-left h2 {
  font-size: 48px;
  line-height: 1.2;
  color: #5c6f64;
  margin: 22px 0;
}

.booking-left p {
  font-size: 16px;
  line-height: 2;
  color: #667066;
  margin-bottom: 40px;
  max-width: 540px;
}

.booking-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.booking-stat {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 22px 26px;
  min-width: 160px;
}

.booking-stat h3 {
  font-size: 32px;
  color: #6d8578;
  margin-bottom: 6px;
}

.booking-stat span {
  font-size: 13px;
  color: #7a7a74;
  line-height: 1.6;
}

.booking-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.booking-form {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border-radius: 36px;
  padding: 42px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #6b8377;
  font-size: 14px;
  font-weight: 500;
}

label.required::after {
  content: " *";
  color: #c08f8f;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: none;
  outline: none;
  border-radius: 18px;
  background: #f6f8f5;
  color: #5f5b56;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

/* =========================================================
PREMIUM PRICE + AVAILABILITY CARD
========================================================= */

.dynamic-price-card {
  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(16px);

  border-radius: 28px;

  padding: 30px;

  margin-bottom: 24px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* AVAILABILITY */

.availability-wrapper h4 {
  color: #5f7468;

  font-size: 20px;

  margin-bottom: 24px;

  font-weight: 600;
}

.availability-row {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 14px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.availability-row:last-child {
  border-bottom: none;
}

.availability-row span {
  color: #5e5b56;

  font-size: 15px;

  font-weight: 500;
}

.availability-row p {
  color: #7a857b;

  font-size: 15px;
}

/* DIVIDER */

.price-divider {
  width: 100%;

  height: 1px;

  background: rgba(0, 0, 0, 0.06);

  margin: 28px 0;
}

/* SESSION FEE */

.session-fee-wrapper {
  text-align: center;
}

.fee-label {
  display: block;

  color: #8b948c;

  font-size: 13px;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 10px;
}

.session-fee-wrapper h3 {
  font-size: 56px;

  color: #6d8578;

  font-weight: 600;

  line-height: 1;
}

/* MOBILE */

@media (max-width: 768px) {
  .dynamic-price-card {
    padding: 24px;
  }

  .availability-wrapper h4 {
    font-size: 18px;
  }

  .availability-row {
    flex-direction: column;

    align-items: flex-start;

    gap: 4px;
  }

  .session-fee-wrapper h3 {
    font-size: 46px;
  }

  /* NEW NAVBAR BUTTON FIX */

  .navbar-actions {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 10px;
  }

  .assessment-btn {
    width: 100%;

    text-align: center;

    display: block;
  }
}

/* =========================================================
SUCCESS POPUP
========================================================= */

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-content {
  background: white;
  padding: 50px;
  border-radius: 34px;
  max-width: 420px;
  text-align: center;
}

/* =========================================================
SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f2ea;
}

::-webkit-scrollbar-thumb {
  background: #c6b199;
  border-radius: 20px;
}

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

@media (max-width: 992px) {
  .navbar {
    width: 94%;
    padding: 18px 24px;
    height: auto;
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .about-grid,
  .booking-container,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 52px;
  }

  .therapist-bg-image {
    width: 100%;
  }
}

/* =========================================================
MOBILE RESPONSIVE FINAL
========================================================= */

@media (max-width: 768px) {
  #hero,
  #about,
  #therapist,
  #services,
  #reviews,
  #wellness-check,
  #contact {
    scroll-margin-top: 240px;
  }

  body {
    overflow-x: hidden;
  }

  .navbar {
    width: 94%;

    top: 14px;

    padding: 20px 18px;

    border-radius: 26px;

    height: auto;

    gap: 20px;
  }

  .logo-container {
    justify-content: center;
    width: 100%;
  }

  .logo-container img {
    height: 46px;
  }

  .brand-name {
    font-size: 22px;
  }

  .nav-links {
    width: 100%;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 14px;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 15px;

    padding: 10px 14px;

    background: rgba(255, 255, 255, 0.45);

    border-radius: 18px;
  }

  .primary-btn {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: clamp(320px, 40vw, 380px);
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .about-section,
  .services-section,
  .premium-testimonial-section,
  .booking-section {
    padding: 80px 5%;
  }

  .about-left h2,
  .services-header h2,
  .trusted-content h2,
  .booking-left h2 {
    font-size: 34px;
  }

  /* THERAPIST FINAL MOBILE FIX */

  .editorial-therapist-section {
    display: flex;

    flex-direction: column;

    padding: 70px 5%;

    gap: 24px;

    min-height: auto;
  }

  .therapist-bg-image {
    position: relative;

    width: 100%;

    height: 420px;

    border-radius: 32px;

    overflow: hidden;

    margin: 0 auto;
  }

  .therapist-bg-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: top center;

    filter: none;

    display: block;
  }

  .therapist-overlay {
    display: none;
  }

  .therapist-editorial-card {
    width: 100%;

    max-width: 100%;

    margin: 0;

    padding: 34px 28px;

    border-radius: 30px;

    background: rgba(35, 35, 35, 0.72);

    backdrop-filter: blur(18px);

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }

  .therapist-editorial-card h2 {
    font-size: 34px;

    line-height: 1.18;

    margin-bottom: 22px;
  }

  .therapist-name {
    font-size: 26px;

    margin-bottom: 12px;
  }

  .therapist-editorial-card p {
    font-size: 14px;

    line-height: 1.9;
  }

  .editorial-specialities {
    gap: 10px;
  }

  .editorial-specialities span {
    font-size: 12px;

    padding: 9px 14px;
  }

  .testimonial-slide p {
    font-size: 22px;
    line-height: 1.8;
  }

  .quote-mark {
    font-size: 80px;
  }

  .logo-track {
    gap: 50px;
  }

  .logo-track img {
    height: 30px;
  }

  .booking-form {
    padding: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 576px) {
  .hero h1 {
    font-size: 36px;
  }

  .about-left h2,
  .services-header h2,
  .trusted-content h2,
  .booking-left h2 {
    font-size: 30px;
  }

  .testimonial-slide p {
    font-size: 20px;
  }

  .booking-stat {
    width: 100%;
  }

  .therapist-bg-image {
    height: 360px;
  }
}

/* =========================================================
ONLINE COUNSELLING POSITIONING
========================================================= */

.virtual-badge {
  margin-top: 26px;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 22px;

  border-radius: 40px;

  background: rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  color: #6b7d73;

  font-size: 14px;

  font-weight: 500;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.virtual-badge::before {
  content: "●";

  color: #7f9b8d;

  font-size: 12px;
}

/* SERVICES NOTE */

.online-service-note {
  margin-top: 24px;

  display: inline-block;

  padding: 14px 20px;

  background: #f2eadf;

  border-radius: 24px;

  color: #8a7864;

  font-size: 14px;

  line-height: 1.7;
}

/* ONLINE SESSION CARD */

.online-session-card {
  background: rgba(255, 255, 255, 0.68);

  backdrop-filter: blur(16px);

  border-radius: 28px;

  padding: 26px;

  margin-bottom: 24px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.online-session-card h4 {
  color: #5f7468;

  font-size: 20px;

  margin-bottom: 14px;
}

.online-session-card p {
  color: #6b6762;

  line-height: 1.9;

  font-size: 14px;
}

/* MOBILE */

@media (max-width: 768px) {
  .virtual-badge {
    width: 100%;

    justify-content: center;

    text-align: center;

    font-size: 13px;

    padding: 14px 18px;

    line-height: 1.6;
  }

  .online-service-note {
    width: 100%;

    text-align: center;

    font-size: 13px;
  }

  .online-session-card {
    padding: 22px;
  }

  .online-session-card h4 {
    font-size: 18px;
  }

  .online-session-card p {
    font-size: 13px;

    line-height: 1.8;
  }
}

/* =========================================
MENTAL WELLNESS CHECK
========================================= */

.wellness-check-section {
  padding: 90px 7%;

  background: linear-gradient(to bottom, #fffdf7, #eef4f0);
}

.wellness-container {
  max-width: 900px;

  margin: auto;

  text-align: center;
}

.wellness-container h2 {
  font-size: 48px;

  color: #5c6f64;

  margin: 20px 0;
}

.wellness-container p {
  color: #6b655f;

  margin-bottom: 40px;

  line-height: 1.8;
}

.assessment-card {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(18px);

  border-radius: 36px;

  padding: 50px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.question-progress {
  color: #a68f77;

  margin-bottom: 20px;

  font-weight: 500;
}

#questionText {
  color: #5c6f64;

  line-height: 1.6;

  margin-bottom: 35px;
}

.answer-container {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.answer-btn {
  border: none;

  background: #f7f8f7;

  padding: 18px;

  border-radius: 18px;

  cursor: pointer;

  transition: 0.3s ease;

  font-family: "Poppins", sans-serif;

  font-size: 15px;
}

.answer-btn:hover {
  background: #e8f0eb;

  transform: translateY(-2px);
}

.result-card {
  display: none;

  margin-top: 30px;

  background: white;

  padding: 40px;

  border-radius: 30px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.result-card h3 {
  color: #5c6f64;

  margin-bottom: 15px;
}

.result-card p {
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .wellness-container h2 {
    font-size: 34px;
  }

  .assessment-card {
    padding: 30px 24px;
  }

  #questionText {
    font-size: 22px;
  }
}
