/* =========================================================
   VIA CLARA PEDIATRIC THERAPY
   COMPLETE WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --yellow: #ffd84d;
  --yellow-dark: #f8b900;
  --soft-yellow: #fff5bf;

  --orange: #ff9f43;
  --pink: #ff7eb6;
  --blue: #75c9ff;
  --green: #8de68d;
  --purple: #c8a2ff;

  --dark: #283044;
  --gray: #667085;
  --light: #fffaf0;
  --white: #ffffff;

  --danger: #b42318;
  --success: #1f8f4d;

  --border-color: #f0e4bc;

  --shadow:
    0 15px 35px rgba(40, 48, 68, 0.12);

  --soft-shadow:
    0 10px 28px rgba(40, 48, 68, 0.1);

  --radius: 24px;
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;

  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: var(--light);

  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 20px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(248, 185, 0, 0.45);
  outline-offset: 3px;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;

  width: 100%;
  height: 88px;

  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid rgba(248, 185, 0, 0.22);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  width: 100%;
  max-width: 1320px;
  height: 88px;

  margin: 0 auto;
  padding: 4px 22px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;

  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-image-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  width: auto;
  height: 78px;
  max-width: 285px;

  object-fit: contain;
}

.footer-logo-image {
  height: 100px;
  padding: 8px 14px;

  background: var(--white);
  border-radius: 18px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;

  margin: 0;
  padding-left: 0;

  list-style: none;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--dark);

  padding: 12px 9px;

  font-size: 1.08rem;
  font-weight: 700;
  white-space: nowrap;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-links a:not(.book-consultation-link)::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;

  height: 2px;

  background: var(--yellow-dark);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.3s ease;
}

.nav-links a:not(.book-consultation-link):hover {
  color: var(--yellow-dark);
}

.nav-links a:not(.book-consultation-link):hover::after,
.nav-links a.active-nav-link:not(.book-consultation-link)::after {
  transform: scaleX(1);
}

.active-nav-link {
  color: var(--yellow-dark) !important;
}


/* =========================================================
   HIGHLIGHTED BOOK CONSULTATION NAVIGATION
========================================================= */

.book-consultation-link {
  min-height: 54px;
  padding: 13px 27px;

  border: 2px solid var(--yellow);
  border-radius: 999px;

  background: var(--soft-yellow);
  color: #7a5900 !important;

  font-size: 1.08rem;
  font-weight: 800 !important;

  box-shadow:
    0 6px 16px rgba(248, 185, 0, 0.15);
}

.book-consultation-link:hover {
  border-color: var(--yellow-dark);

  background: var(--yellow);
  color: var(--dark) !important;

  transform: translateY(-2px);

  box-shadow:
    0 10px 22px rgba(248, 185, 0, 0.26);
}

.book-consultation-link::after {
  display: none !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;

  min-width: 46px;
  min-height: 42px;
  padding: 8px 14px;

  border: none;
  border-radius: 12px;

  background: var(--yellow);
  color: var(--dark);

  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.menu-toggle:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}


/* =========================================================
   GENERAL TYPOGRAPHY
========================================================= */

.eyebrow {
  display: inline-block;

  margin-bottom: 16px;
  padding: 8px 16px;

  border-radius: 999px;

  background: var(--soft-yellow);
  color: #9a6f00;

  font-size: 0.9rem;
  font-weight: 700;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 42px;

  text-align: center;
}

.section-heading h2,
.expect-content h2,
.booking-content h2 {
  margin-bottom: 15px;

  font-family: "Baloo 2", cursive;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-heading p {
  color: var(--gray);
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
  padding: 70px 22px;
  scroll-margin-top: 100px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  border: none;
  border-radius: 999px;

  font-family: inherit;
  font-weight: 800;
  text-align: center;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.primary-btn {
  background: var(--yellow);
  color: var(--dark);

  box-shadow:
    0 10px 25px rgba(248, 185, 0, 0.25);
}

.primary-btn:hover {
  background: var(--yellow-dark);

  transform: translateY(-3px);

  box-shadow:
    0 14px 28px rgba(248, 185, 0, 0.3);
}

.secondary-btn {
  border: 2px solid var(--yellow);

  background: var(--white);
  color: var(--dark);
}

.secondary-btn:hover {
  background: var(--soft-yellow);
  transform: translateY(-3px);
}

.btn:disabled,
.full-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  position: relative;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;

  width: 100%;
  max-width: 1180px;

  margin: 0 auto;
  padding: 70px 22px 60px;

  overflow: hidden;
  scroll-margin-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  z-index: -1;

  border-radius: 50%;
  opacity: 0.7;
}

.shape-one {
  top: 40px;
  left: -80px;

  width: 220px;
  height: 220px;

  background: var(--soft-yellow);
}

.shape-two {
  right: 10px;
  bottom: 40px;

  width: 180px;
  height: 180px;

  background: #ffe1ec;
}

.hero h1 {
  margin-bottom: 22px;

  font-family: "Baloo 2", cursive;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 28px;

  color: var(--gray);
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-bottom: 30px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.hero-badges div {
  padding: 16px;

  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-badges strong {
  display: block;

  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
}

.hero-badges span {
  color: var(--gray);
  font-size: 0.85rem;
}

.hero-image-card {
  position: relative;

  padding: 16px;

  background: var(--yellow);
  border-radius: 38px;
  box-shadow: var(--shadow);

  overflow: hidden;

  transform: rotate(2deg);
}

.hero-image-card img {
  display: block;

  width: 100%;
  height: 520px;

  border-radius: 28px;

  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: 35px;
  left: -25px;

  display: flex;
  align-items: center;
  gap: 10px;

  max-width: 220px;
  padding: 16px;

  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.floating-card span {
  font-size: 2rem;
}

.floating-card p {
  font-size: 0.9rem;
  font-weight: 600;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
  padding-top: 70px;
  padding-bottom: 70px;

  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;

  width: 100%;
  max-width: 1180px;

  margin: 0 auto;
}

.about-card {
  padding: 28px;

  background: var(--light);
  border: 2px dashed rgba(248, 185, 0, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 42px rgba(40, 48, 68, 0.14);
}

.card-icon {
  margin-bottom: 14px;
  font-size: 2.5rem;
}

.about-card h3 {
  margin-bottom: 8px;

  font-family: "Baloo 2", cursive;
  font-size: 1.45rem;
}

.about-card p {
  color: var(--gray);
  font-size: 0.95rem;
}


/* =========================================================
   THERAPY SERVICES SECTION
========================================================= */

.therapy-section {
  padding-top: 70px;
  padding-bottom: 70px;

  background:
    radial-gradient(
      circle at top left,
      #fff0b5,
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      #ffe2ef,
      transparent 28%
    ),
    var(--light);
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 24px;

  width: 100%;
  max-width: 900px;

  margin: 0 auto;
}

.therapy-card {
  height: 100%;
  padding: 28px;

  background: var(--white);
  border-top: 10px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.therapy-card:hover {
  transform: translateY(-8px) rotate(-1deg);

  box-shadow:
    0 20px 42px rgba(40, 48, 68, 0.14);
}

.therapy-icon {
  display: grid;
  place-items: center;

  width: 62px;
  height: 62px;

  margin-bottom: 14px;

  background: var(--soft-yellow);
  border-radius: 50%;

  font-size: 2rem;
}

.therapy-card h3 {
  margin-bottom: 10px;

  font-family: "Baloo 2", cursive;
  font-size: 1.55rem;
  line-height: 1.1;
}

.therapy-card p,
.therapy-card li {
  color: var(--gray);
  font-size: 0.95rem;
}

.therapy-card h4 {
  margin: 18px 0 8px;
  font-size: 1rem;
}

.therapy-card ul {
  display: grid;
  gap: 5px;
}

.yellow-card {
  border-color: var(--yellow);
}

.blue-card {
  border-color: var(--blue);
}

.green-card {
  border-color: var(--green);
}

.pink-card {
  border-color: var(--pink);
}

.orange-card {
  border-color: var(--orange);
}

.purple-card {
  border-color: var(--purple);
}


/* =========================================================
   WHAT TO EXPECT SECTION
========================================================= */

.expect-section {
  padding-top: 70px;
  padding-bottom: 50px;

  background: var(--white);
}

.expect-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 50px;

  width: 100%;
  max-width: 1180px;

  margin: 0 auto;
}

.expect-content p {
  color: var(--gray);
}

.steps {
  display: grid;
  gap: 18px;

  margin-top: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 18px;

  background: var(--light);
  border-radius: 20px;

  box-shadow:
    0 10px 25px rgba(40, 48, 68, 0.08);
}

.step > span {
  display: grid;
  place-items: center;
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  background: var(--yellow);
  border-radius: 50%;

  font-weight: 800;
}

.step h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
}

.expect-image {
  padding: 16px;

  background: var(--yellow);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.expect-image img {
  width: 100%;
  height: 560px;

  border-radius: 26px;

  object-fit: cover;
}


/* =========================================================
   THERAPISTS SECTION
========================================================= */

.therapists-section {
  padding-top: 55px;
  padding-bottom: 80px;

  background: var(--light);

  scroll-margin-top: 100px;
}

.therapists-section .section-heading {
  margin-bottom: 42px;
}

.therapist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

  width: 100%;
  max-width: 1180px;

  margin: 0 auto;
}

.therapist-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.therapist-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 42px rgba(40, 48, 68, 0.14);
}

.therapist-card img {
  width: 100%;
  height: 260px;

  object-fit: cover;
}

.therapist-info {
  padding: 22px;
}

.therapist-info h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
}

.role {
  margin-bottom: 10px;

  color: var(--yellow-dark);
  font-weight: 700;
}

.therapist-info p {
  color: var(--gray);
  font-size: 0.92rem;
}

.empty-therapist-card {
  grid-column: 1 / -1;
}


/* =========================================================
   BOOKING SECTION
========================================================= */

#booking {
  scroll-margin-top: 100px;
}

.booking-section {
  min-height: calc(100vh - 82px);

  padding-top: 70px;
  padding-bottom: 70px;

  background:
    radial-gradient(
      circle at 10% 20%,
      #ffeeb0,
      transparent 25%
    ),
    radial-gradient(
      circle at 95% 85%,
      #ffd9e8,
      transparent 28%
    ),
    var(--white);

  overflow: visible;
}

.booking-container {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  align-items: start;
  gap: 45px;

  width: 100%;
  max-width: 1280px;

  margin: 0 auto;
}

.booking-content {
  padding-top: 8px;
}

.booking-content .eyebrow {
  margin-bottom: 10px;
  padding: 5px 13px;

  font-size: 0.78rem;
}

.booking-content h2 {
  margin-bottom: 12px;

  font-family: "Baloo 2", cursive;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  line-height: 1.02;
}

.booking-content p {
  max-width: 540px;

  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.45;
}


/* =========================================================
   BOOKING FORM
========================================================= */

.booking-form {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 780px;

  margin-left: auto;
  padding: 24px;

  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);

  overflow: visible;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.address-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.form-group {
  width: 100%;
  margin-bottom: 10px;
}

.form-group label {
  display: block;

  margin-bottom: 5px;

  color: var(--dark);

  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 100%;

  padding: 8px 12px;

  border: 2px solid var(--border-color);
  border-radius: 13px;

  outline: none;

  background: #fffdf6;
  color: var(--dark);

  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  line-height: 1.2;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.form-group input,
.form-group select {
  height: 40px;
  min-height: 40px;
}

.form-group select {
  cursor: pointer;
  appearance: auto;
}

.form-group textarea {
  height: 76px;
  min-height: 76px;
  max-height: 76px;

  resize: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #e8d392;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow-dark);

  background: var(--white);

  box-shadow:
    0 0 0 4px rgba(255, 216, 77, 0.25);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
  opacity: 1;
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* =========================================================
   REQUIRED FIELDS
========================================================= */

.required {
  margin-left: 2px;
  color: var(--danger);
}

.label-note {
  color: var(--gray);

  font-size: 0.75rem;
  font-weight: 600;
}

.required-field-note,
.Required-field {
  margin-top: 8px;

  color: #666;

  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
  text-align: left;
}

.required-field-note span,
.Required-field span {
  color: var(--danger);

  font-style: normal;
  font-weight: 700;
}


/* =========================================================
   CUSTOM THERAPY MULTISELECT
========================================================= */

.therapy-needed-group {
  position: relative;
  width: 100%;
}

.custom-multiselect {
  position: relative;
  width: 100%;
}

.multiselect-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  width: 100%;
  min-height: 40px;

  padding: 8px 12px;

  border: 2px solid var(--border-color);
  border-radius: 13px;

  outline: none;

  background: #fffdf6;
  color: var(--dark);

  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: left;

  cursor: pointer;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.multiselect-button:hover,
.custom-multiselect.open .multiselect-button {
  border-color: var(--yellow-dark);

  background: var(--white);

  box-shadow:
    0 0 0 4px rgba(255, 216, 77, 0.25);
}

.custom-multiselect.has-error .multiselect-button {
  border-color: var(--danger);

  box-shadow:
    0 0 0 4px rgba(180, 35, 24, 0.12);
}

#therapyDropdownText {
  display: block;

  min-width: 0;

  color: var(--gray);

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#therapyDropdownText.has-selection {
  color: var(--dark);
  font-style: normal;
}

.dropdown-arrow {
  flex-shrink: 0;

  font-size: 1rem;
  font-weight: 800;

  transition: transform 0.3s ease;
}

.custom-multiselect.open .dropdown-arrow {
  transform: rotate(180deg);
}

.multiselect-options {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 200;

  display: none;

  max-height: 230px;
  padding: 8px;

  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);

  overflow-y: auto;
}

.custom-multiselect.open .multiselect-options {
  display: grid;
  gap: 4px;
}

.multiselect-option {
  display: flex !important;
  align-items: center;
  gap: 9px;

  margin: 0;
  padding: 9px 10px;

  border-radius: 10px;

  color: var(--dark);

  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;

  cursor: pointer;

  transition: background 0.2s ease;
}

.multiselect-option:hover {
  background: var(--soft-yellow);
}

.multiselect-option input {
  flex-shrink: 0;

  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;

  padding: 0;

  accent-color: var(--yellow-dark);

  cursor: pointer;
}

.multiselect-option span {
  display: inline-block;
}


/* =========================================================
   FORM BUTTON AND MESSAGES
========================================================= */

.full-btn {
  width: 100%;
  height: 42px;
  min-height: 42px;

  margin-top: 4px;
  padding: 8px 18px;

  font-size: 0.84rem;
}

.form-message {
  min-height: 18px;
  margin-top: 10px;

  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.success-message {
  color: var(--success);
}

.error-message {
  color: var(--danger);
}


/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
  padding-top: 70px;
  padding-bottom: 80px;

  background: var(--light);
}

.faq-container {
  display: grid;
  gap: 16px;

  width: 100%;
  max-width: 850px;

  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 20px;

  box-shadow:
    0 10px 25px rgba(40, 48, 68, 0.08);

  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  width: 100%;
  padding: 20px 24px;

  border: none;

  background: var(--white);
  color: var(--dark);

  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;

  cursor: pointer;

  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #fffdf6;
}

.faq-question span {
  display: grid;
  place-items: center;
  flex-shrink: 0;

  width: 30px;
  height: 30px;

  background: var(--yellow);
  border-radius: 50%;

  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  max-height: 240px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 50px 22px;

  background: var(--dark);
  color: var(--white);

  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  justify-content: center;

  margin-bottom: 14px;

  color: var(--white);
}

.footer p {
  color: #d8dce8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;

  margin: 25px 0;
}

.footer-links a {
  color: var(--white);
  font-weight: 600;

  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

.copyright {
  font-size: 0.9rem;
}


/* =========================================================
   BACK TO TOP BUTTON
========================================================= */

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;

  display: none;
  place-items: center;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: var(--yellow);
  color: var(--dark);
  box-shadow: var(--shadow);

  font-size: 1.25rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.back-to-top:hover {
  background: var(--yellow-dark);
  transform: translateY(-3px);
}

.back-to-top.show {
  display: grid;
}


/* =========================================================
   CAREERS PAGE HERO
========================================================= */

.careers-hero {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.85fr);
  align-items: center;
  gap: 60px;

  width: 100%;
  max-width: 1180px;
  min-height: calc(100vh - 82px);

  margin: 0 auto;
  padding: 80px 22px;

  overflow: hidden;
}

.careers-hero-content {
  position: relative;
  z-index: 2;
}

.careers-hero-content h1 {
  margin: 0 0 22px;

  color: var(--dark);

  font-family: "Baloo 2", cursive;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
}

.careers-hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 30px;

  color: var(--gray);

  font-size: 1.05rem;
  line-height: 1.7;
}

.careers-main-button {
  min-width: 190px;
}

.careers-hero-visual {
  position: relative;
  z-index: 2;
}

.career-illustration-card {
  width: 100%;
  padding: 50px 38px;

  background: var(--white);
  border: 12px solid var(--yellow);
  border-radius: 40px;
  box-shadow: var(--shadow);

  text-align: center;

  transform: rotate(2deg);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.career-illustration-card:hover {
  transform:
    rotate(0deg)
    translateY(-5px);

  box-shadow:
    0 22px 45px rgba(40, 48, 68, 0.15);
}

.career-icon-large {
  display: grid;
  place-items: center;

  width: 100px;
  height: 100px;

  margin: 0 auto 22px;

  background: var(--soft-yellow);
  border-radius: 50%;

  font-size: 3.5rem;
}

.career-illustration-card h2 {
  margin: 0 0 14px;

  color: var(--dark);

  font-family: "Baloo 2", cursive;
  font-size: 2.2rem;
  line-height: 1.05;
}

.career-illustration-card p {
  margin: 0;
  color: var(--gray);
}

.careers-hero-shape {
  position: absolute;
  z-index: 0;

  border-radius: 50%;

  pointer-events: none;
}

.careers-shape-one {
  top: 40px;
  left: -100px;

  width: 280px;
  height: 280px;

  background: var(--soft-yellow);
}

.careers-shape-two {
  right: -60px;
  bottom: 30px;

  width: 220px;
  height: 220px;

  background: #ffe1ec;
}


/* =========================================================
   CAREERS BENEFITS
========================================================= */

.career-benefits-section {
  padding: 80px 22px;

  background: var(--white);
}

.career-benefits-section .section-heading {
  max-width: 800px;
  margin: 0 auto 45px;

  text-align: center;
}

.career-benefits-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 24px;

  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
}

.career-benefit-card {
  min-width: 0;
  padding: 32px;

  background: var(--light);

  border:
    2px dashed rgba(248, 185, 0, 0.35);

  border-radius: var(--radius);
  box-shadow: var(--shadow);

  text-align: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.career-benefit-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 42px rgba(40, 48, 68, 0.14);
}

.career-benefit-icon {
  display: grid;
  place-items: center;

  width: 70px;
  height: 70px;

  margin: 0 auto 16px;

  background: var(--soft-yellow);
  border-radius: 50%;

  font-size: 2rem;
}

.career-benefit-card h3 {
  margin: 0 0 10px;

  color: var(--dark);

  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  line-height: 1.15;
}

.career-benefit-card p {
  margin: 0;

  color: var(--gray);

  font-size: 0.95rem;
  line-height: 1.65;
}


/* =========================================================
   CAREERS CTA
========================================================= */

.career-cta-section {
  padding: 70px 22px 90px;

  background:
    radial-gradient(
      circle at 10% 20%,
      #ffeeb0,
      transparent 26%
    ),
    radial-gradient(
      circle at 90% 80%,
      #ffd9e8,
      transparent 26%
    ),
    var(--light);
}

.career-cta-card {
  width: 100%;
  max-width: 850px;

  margin: 0 auto;
  padding: 55px 35px;

  background: var(--white);
  border-radius: 36px;
  box-shadow: var(--shadow);

  text-align: center;
}

.career-cta-card h2 {
  margin: 0 0 15px;

  color: var(--dark);

  font-family: "Baloo 2", cursive;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1;
}

.career-cta-card > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 28px;

  color: var(--gray);
  line-height: 1.7;
}


/* =========================================================
   APPLICATION PAGE
========================================================= */

.application-page {
  min-height: calc(100vh - 82px);

  background:
    radial-gradient(
      circle at 8% 15%,
      #fff0b5,
      transparent 24%
    ),
    radial-gradient(
      circle at 95% 80%,
      #ffe2ef,
      transparent 26%
    ),
    var(--light);
}

.application-heading-section {
  padding: 70px 22px 30px;
}

.application-heading-content {
  max-width: 900px;
  margin: 0 auto;

  text-align: center;
}

.application-heading-content h1 {
  margin-bottom: 15px;

  font-family: "Baloo 2", cursive;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1;
}

.application-heading-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;

  color: var(--gray);
}

.back-careers-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-bottom: 18px;

  color: var(--dark);
  font-weight: 700;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.back-careers-link:hover {
  color: var(--yellow-dark);
  transform: translateX(-3px);
}

.application-form-section {
  padding: 20px 22px 90px;
}


/* =========================================================
   CAREER APPLICATION FORM
========================================================= */

.career-application-form {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 900px;

  margin: 0 auto;
  padding: 36px;

  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.application-form-header {
  margin-bottom: 24px;
}

.application-form-header h2 {
  margin-bottom: 5px;

  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  line-height: 1.1;
}

.application-form-header p {
  color: var(--gray);
  font-size: 0.92rem;
}

.application-form-divider {
  height: 1px;
  margin: 28px 0;

  background: rgba(40, 48, 68, 0.12);
}

.career-application-form .form-group {
  margin-bottom: 17px;
}

.career-application-form .form-group input,
.career-application-form .form-group select {
  height: 50px;
  min-height: 50px;
}

.career-application-form .form-group textarea {
  height: auto;
  min-height: 130px;
  max-height: none;

  resize: vertical;
}

.career-application-form input[type="file"] {
  height: auto;
  min-height: 52px;
  padding: 10px;

  cursor: pointer;
}

.career-application-form
input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 10px 14px;

  border: none;
  border-radius: 10px;

  background: var(--yellow);
  color: var(--dark);

  font-family: "Poppins", sans-serif;
  font-weight: 700;

  cursor: pointer;

  transition: background 0.3s ease;
}

.career-application-form
input[type="file"]::file-selector-button:hover {
  background: var(--yellow-dark);
}

.field-help-text {
  margin-top: 5px;

  color: var(--gray);
  font-size: 0.75rem;
}

.consent-group {
  margin-top: 10px;
}

.consent-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;

  font-weight: 500 !important;
  line-height: 1.5 !important;

  cursor: pointer;
}

.consent-label input {
  flex-shrink: 0;

  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;

  margin-top: 2px;
  padding: 0;

  accent-color: var(--yellow-dark);
}

.application-submit-button {
  height: 50px;
  min-height: 50px;

  margin-top: 12px;

  font-size: 0.95rem;
}


/* =========================================================
   RESPONSIVE: 1180PX
========================================================= */

@media (max-width: 1180px) {
  .navbar {
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    padding-right: 7px;
    padding-left: 7px;

    font-size: 1rem;
  }

  .book-consultation-link {
    min-height: 50px;
    padding: 11px 21px;
  }
}


/* =========================================================
   RESPONSIVE: 1100PX
========================================================= */

@media (max-width: 1100px) {
  .logo-image {
    height: 68px;
    max-width: 230px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    padding-right: 5px;
    padding-left: 5px;

    font-size: 0.94rem;
  }

  .book-consultation-link {
    min-height: 46px;
    padding: 10px 17px;
  }

  .booking-container {
    grid-template-columns: 0.85fr 1.15fr;
  }
}


/* =========================================================
   RESPONSIVE: 1024PX
========================================================= */

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 100px;
  }

  .hero,
  .expect-container,
  .booking-container {
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding-top: 65px;
    padding-bottom: 60px;
  }

  .booking-container {
    max-width: 900px;
    gap: 28px;
  }

  .booking-content {
    padding-top: 0;
    text-align: left;
  }

  .booking-content p {
    max-width: 100%;
  }

  .booking-form {
    max-width: 780px;
    margin: 0 auto;
  }

  .hero-image-card {
    max-width: 680px;
    margin: 0 auto;
  }

  .about-grid,
  .therapist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .therapy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expect-section {
    padding-bottom: 45px;
  }

  .therapists-section {
    padding-top: 50px;
  }

  .careers-hero {
    grid-template-columns: 1fr;

    min-height: auto;

    padding-top: 65px;
    padding-bottom: 65px;

    text-align: center;
  }

  .careers-hero-content > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .career-illustration-card {
    max-width: 680px;
    margin: 0 auto;

    transform: none;
  }

  .career-illustration-card:hover {
    transform: translateY(-5px);
  }
}


/* =========================================================
   RESPONSIVE: 900PX
========================================================= */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-header {
    height: auto;
  }

  .navbar {
    height: auto;
    min-height: 82px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    z-index: 1000;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;

    padding: 18px;

    background: var(--white);
    border:
      1px solid rgba(248, 185, 0, 0.18);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    justify-content: flex-start;

    width: 100%;
    min-height: 44px;

    padding: 10px 13px;

    border-radius: 11px;

    font-size: 0.95rem;
  }

  .nav-links a:not(.book-consultation-link):hover,
  .nav-links a.active-nav-link:not(.book-consultation-link) {
    background: var(--soft-yellow);
  }

  .nav-links a:not(.book-consultation-link)::after {
    display: none;
  }

  .book-consultation-link {
    justify-content: center;

    width: 100%;
    min-height: 46px;

    margin: 3px 0;

    border-color: var(--yellow-dark);

    background: var(--yellow);
    color: var(--dark) !important;
  }
}


/* =========================================================
   RESPONSIVE: 860PX
========================================================= */

@media (max-width: 860px) {
  html {
    scroll-padding-top: 110px;
  }

  .navbar {
    padding: 6px 18px;
  }

  .logo-image {
    height: 70px;
    max-width: 240px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-badges,
  .about-grid,
  .therapy-grid,
  .therapist-grid,
  .form-row,
  .address-row-3 {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    transform: none;
  }

  .hero-image-card img,
  .expect-image img {
    height: 380px;
  }

  .floating-card {
    right: 15px;
    bottom: 20px;
    left: 15px;

    max-width: none;
  }

  .section {
    padding: 60px 18px;
    scroll-margin-top: 110px;
  }

  #booking {
    scroll-margin-top: 110px;
  }

  .about-section,
  .therapy-section,
  .expect-section,
  .therapists-section,
  .booking-section,
  .faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .expect-section {
    padding-bottom: 42px;
  }

  .therapists-section {
    padding-top: 48px;
  }

  .booking-container {
    gap: 24px;
  }

  .booking-content h2 {
    font-size: 2.25rem;
  }

  .booking-form {
    max-width: 100%;
    padding: 20px;

    border-radius: 22px;
  }

  .form-row,
  .address-row-3 {
    gap: 0;
  }

  .form-group {
    margin-bottom: 11px;
  }

  .form-group input,
  .form-group select,
  .multiselect-button {
    height: 42px;
    min-height: 42px;
  }

  .form-group textarea {
    height: 86px;
    min-height: 86px;
    max-height: 86px;
  }

  .multiselect-options {
    max-height: 250px;
  }

  .career-benefits-grid {
    grid-template-columns: 1fr;
  }

  .career-benefit-card {
    width: 100%;
    max-width: 620px;

    margin: 0 auto;
  }

  .career-application-form {
    padding: 26px 22px;
  }

  .career-application-form .form-group input,
  .career-application-form .form-group select {
    height: 48px;
    min-height: 48px;
  }

  .career-application-form .form-group textarea {
    min-height: 120px;
    max-height: none;
  }

  .application-heading-section {
    padding-top: 55px;
  }
}


/* =========================================================
   RESPONSIVE: 520PX
========================================================= */

@media (max-width: 520px) {
  html {
    scroll-padding-top: 105px;
  }

  .navbar {
    padding: 6px 16px;
  }

  .logo-image {
    height: 66px;
    max-width: 220px;
  }

  .footer-logo-image {
    height: 86px;
  }

  .nav-links {
    right: 16px;
    left: 16px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn,
  .full-btn {
    width: 100%;
  }

  .hero-badges {
    gap: 10px;
  }

  .hero-badges div {
    padding: 14px;
  }

  .booking-section {
    padding-top: 60px;
  }

  .booking-content h2 {
    font-size: 2.08rem;
  }

  .booking-form {
    padding: 18px;
    border-radius: 20px;
  }

  .careers-hero {
    padding: 55px 18px;
  }

  .careers-hero-content h1 {
    font-size: 3.4rem;
  }

  .career-illustration-card {
    padding: 38px 22px;

    border-width: 8px;
  }

  .career-illustration-card h2 {
    font-size: 1.8rem;
  }

  .career-benefits-section {
    padding: 60px 18px;
  }

  .career-cta-section {
    padding:
      60px
      16px
      70px;
  }

  .career-cta-card {
    padding: 42px 22px;
  }

  .application-heading-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .application-form-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .career-application-form {
    padding: 22px 16px;

    border-radius: 22px;
  }

  .application-form-header h2 {
    font-size: 1.7rem;
  }

  .application-heading-content h1 {
    font-size: 2.8rem;
  }

  .career-application-form
  input[type="file"]::file-selector-button {
    display: block;

    width: 100%;

    margin: 0 0 8px;
  }
}


/* =========================================================
   RESPONSIVE: 420PX
========================================================= */

@media (max-width: 420px) {
  .logo {
    font-size: 1.6rem;
  }

  .logo-image {
    height: 62px;
    max-width: 205px;
  }

  .footer-logo-image {
    height: 82px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-image-card img,
  .expect-image img {
    height: 320px;
  }

  .hero-badges strong {
    font-size: 1.05rem;
  }

  .hero-badges span {
    font-size: 0.78rem;
  }

  .career-icon-large {
    width: 82px;
    height: 82px;

    font-size: 2.8rem;
  }

  .careers-hero-content h1 {
    font-size: 3rem;
  }

  .career-cta-card h2 {
    font-size: 2.3rem;
  }

  .application-heading-content h1 {
    font-size: 2.45rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .multiselect-button {
    font-size: 0.78rem;
  }
}


/* =========================================================
   RESPONSIVE: 360PX
========================================================= */

@media (max-width: 360px) {
  .navbar {
    padding-right: 12px;
    padding-left: 12px;
  }

  .logo-image {
    height: 58px;
    max-width: 180px;
  }

  .menu-toggle {
    min-width: 42px;
    padding: 7px 11px;
  }

  .nav-links {
    right: 12px;
    left: 12px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .section-heading h2,
  .expect-content h2,
  .booking-content h2 {
    font-size: 2rem;
  }

  .booking-form,
  .career-application-form {
    padding: 16px 13px;
  }

  .careers-hero-content h1 {
    font-size: 2.7rem;
  }

  .career-illustration-card {
    padding: 32px 18px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}