/* ========================================
   Components - Reusable UI Elements
   ======================================== */

/* ----------------------------------------
   Buttons
   ---------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  white-space: nowrap;
  cursor: pointer;
}

.btn-bknow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border-radius: 10px;
  transition: all var(--transition-normal);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  height: 55px;
  border-radius: 15px;
  font-size: 17px;
  
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: var(--color-neutral-900);
  color: var(--color-white);
  height: 44px;
}

.btn--secondary:hover {
  background-color: var(--color-neutral-800);
  transform: translateY(-1px);
  
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-neutral-900);
}

.btn--sm {
  padding: var(--space-1) var(--space-4);
  font-size: var(--font-size-xs);
}

.btn--lg {
  padding: var(--space-3) var(--space-8);
  font-size: var(--font-size-base);
}

.btn__icon {
  width: 1em;
  height: 1em;
}

/* ----------------------------------------
   Offer Banner
   ---------------------------------------- */

.offer-banner {
  background-color: var(--color-primary);
  padding: var(--space-3) 0;
}

.offer-banner__text {
  color: var(--color-white);
  font-size: var(--font-size-sm);
  text-align: center;
}

.offer-banner__code {
  font-weight: var(--font-weight-bold);
}

/* ----------------------------------------
   Header / Navbar
   ---------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-fixed);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-neutral-100);
  transition: box-shadow var(--transition-normal);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-900);
}

.header__nav {
  display: none;
  gap: var(--space-8);
}

.header__nav-link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-700);
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-primary);
}

.header__nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

/* ----------------------------------------
   Dropdown Navigation
   ---------------------------------------- */

.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.header__nav-dropdown {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-700);
  transition: color var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.header__nav-dropdown:hover {
  color: var(--color-primary);
}

.header__nav-dropdown::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.header__nav-item:hover .header__nav-dropdown::after,
.header__nav-item.is-open .header__nav-dropdown::after {
  transform: scaleX(1);
}

.header__dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.header__nav-item:hover .header__dropdown-icon,
.header__nav-item.is-open .header__dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Panel */
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: var(--z-fixed);
  min-width: 240px;
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
  z-index: var(--z-dropdown);
}

.header__nav-item:hover .header__dropdown,
.header__nav-item.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown Links */
.header__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-700);
  border-radius: 12px;
  transition: all 200ms ease;
}

.header__dropdown-link:hover {
  background: var(--color-primary-50);
  color: var(--color-primary);
  transform: translateX(4px);
}

.header__dropdown-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.header__dropdown-icon-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neutral-100);
  border-radius: 10px;
  color: var(--color-neutral-600);
  transition: all 200ms ease;
  flex-shrink: 0;
}

.header__dropdown-link:hover .header__dropdown-icon-wrapper {
  background: var(--color-primary);
  color: var(--color-white);
}

.header__dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header__dropdown-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-900);
}

.header__dropdown-link:hover .header__dropdown-title {
  color: var(--color-primary);
}

/* Service-specific Dropdown Colors */
.header__dropdown-link--individual-therapy:hover {
  background: rgba(211, 125, 168, 0.1);
  color: #D37DA8;
}
.header__dropdown-link--individual-therapy:hover .header__dropdown-icon-wrapper {
  background: #D37DA8;
  color: var(--color-white);
}
.header__dropdown-link--individual-therapy:hover .header__dropdown-title {
  color: #D37DA8;
}

.header__dropdown-link--couple-therapy:hover {
  background: rgba(242, 201, 76, 0.15);
  color: #D4A72C;
}
.header__dropdown-link--couple-therapy:hover .header__dropdown-icon-wrapper {
  background: #F2C94C;
  color: var(--color-neutral-900);
}
.header__dropdown-link--couple-therapy:hover .header__dropdown-title {
  color: #D4A72C;
}

.header__dropdown-link--child-therapy:hover {
  background: rgba(219, 153, 101, 0.1);
  color: #DB9965;
}
.header__dropdown-link--child-therapy:hover .header__dropdown-icon-wrapper {
  background: #DB9965;
  color: var(--color-white);
}
.header__dropdown-link--child-therapy:hover .header__dropdown-title {
  color: #DB9965;
}

.header__dropdown-link--personal-diet:hover {
  background: rgba(189, 218, 203, 0.2);
  color: #6B9B7D;
}
.header__dropdown-link--personal-diet:hover .header__dropdown-icon-wrapper {
  background: #BDDACB;
  color: var(--color-neutral-900);
}
.header__dropdown-link--personal-diet:hover .header__dropdown-title {
  color: #6B9B7D;
}

.header__dropdown-link--personal-fitness:hover {
  background: rgba(192, 174, 219, 0.15);
  color: #8B7AAD;
}
.header__dropdown-link--personal-fitness:hover .header__dropdown-icon-wrapper {
  background: #C0AEDB;
  color: var(--color-white);
}
.header__dropdown-link--personal-fitness:hover .header__dropdown-title {
  color: #8B7AAD;
}

/* Mobile Menu Accordion */
.mobile-menu__accordion {
  border-bottom: 1px solid var(--color-neutral-100);
}

.mobile-menu__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) 0;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-900);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu__accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--color-neutral-500);
  transition: transform 300ms ease;
}

.mobile-menu__accordion.is-open .mobile-menu__accordion-icon {
  transform: rotate(180deg);
}

.mobile-menu__accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.mobile-menu__accordion.is-open .mobile-menu__accordion-content {
  grid-template-rows: 1fr;
}

.mobile-menu__accordion-inner {
  overflow: hidden;
}

.mobile-menu__accordion-links {
  display: flex;
  flex-direction: column;
  padding-bottom: var(--space-4);
}

.mobile-menu__accordion-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-base);
  color: var(--color-neutral-600);
  border-radius: 12px;
  transition: all 200ms ease;
}

.mobile-menu__accordion-link:hover {
  background: var(--color-neutral-50);
  color: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header__login {
  display: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-700);
  transition: color var(--transition-fast);
}

.header__login:hover {
  color: var(--color-primary);
}

.header__cta {
  display: none;
}

.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-neutral-700);
}

.header__menu-icon {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal);
  background-color: var(--color-white);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-4);
  border-bottom: 1px solid var(--color-neutral-100);
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-neutral-700);
}

.mobile-menu__nav {
  padding: var(--space-4);
}

.mobile-menu__link {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-900);
  border-bottom: 1px solid var(--color-neutral-100);
}

.mobile-menu__actions {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */

.hero {
  padding: var(--space-8) 0 var(--space-12);
}

/* Hero Carousel Container */
.hero__carousel {
  position: relative;
  overflow: hidden;
  padding-top: var(--space-10);
}

/* Carousel Track */
.carousel__track {
  display: flex;
  gap: var(--space-6);
  transition: transform 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

/* Hero Card Base */
.hero-card {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: visible;
  min-height: 320px;
  display: flex;
  flex-shrink: 0;
  width: var(--carousel-card-width, 100%);
  transition: transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  cursor: pointer;
}

/* Background layer */
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-3xl);
  background: inherit;
  z-index: 0;
}

.hero-card:hover {
  transform: translateY(-4px);
}

/* Hero Card Gradient Backgrounds */
.hero-card--purple {
  background: linear-gradient(135deg, #9477ED 0%, #AC9BED 100%);
}

.hero-card--green {
  background: linear-gradient(135deg, #8FBD64 0%, #628D3C 100%);
}

.hero-card--orange {
  background: linear-gradient(135deg, #E5AD7B 0%, #C77E4D 100%);
}

.hero-card--yellow {
  background: linear-gradient(135deg, #FCF09D 0%, #E0CF5B 100%);
}

.hero-card--pink {
  background: linear-gradient(135deg, #E097BC 0%, #B96492 100%);
}

/* Card Content */
.hero-card__content {
  position: relative;
  z-index: 1;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  width: 60%;
}

.hero-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  border-radius: 10px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
}

.hero-card__badge--coral {
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-card__badge--green {
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-card__name {
  margin-top: var(--space-4);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}

.hero-card__text {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  max-width: 200px;
}

.hero-card__subtext {
  color: rgba(255, 255, 255, 0.7);
}

/* Override for yellow card (dark text for contrast) */
.hero-card--yellow .hero-card__name {
  color: var(--color-neutral-900);
}

.hero-card--yellow .hero-card__text {
  color: var(--color-neutral-700);
}

.hero-card--yellow .hero-card__subtext {
  color: var(--color-neutral-500);
}

.hero-card__cta {
  margin-top: auto;
  padding-top: var(--space-6);
}

.hero-card__time {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  padding: var(--space-2) var(--space-4);
  /* Glassmorphism effect */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

/* Override for yellow card (dark glassmorphism) */
.hero-card--yellow .hero-card__time {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-neutral-900);
}

.hero-card__image {
  position: absolute;
  right: 0;
  bottom: 0;
 
  height: 110%;
  object-fit: contain;
  object-position: bottom right;
  transition: transform 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

.hero-card:hover .hero-card__image {
  transform: scale(1.05);
}

/* Carousel Dot Navigation */
.carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding: var(--space-2) 0;
}

.carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: var(--color-neutral-300);
  border: none;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.25, 0.1, 0.25, 1);
  padding: 0;
}

.carousel__dot:hover {
  background-color: var(--color-neutral-400);
  transform: scale(1.2);
}

.carousel__dot:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.carousel__dot--active {
  width: 36px;
  background-color: var(--color-primary);
  transform: scale(1);
}

.carousel__dot--active:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1);
}

/* Carousel keyboard focus */
.hero__carousel:focus {
  outline: none;
}

.hero__carousel:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: var(--radius-3xl);
}

/* ----------------------------------------
   Service Cards
   ---------------------------------------- */

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--space-6);
  border-radius: var(--radius-3xl);
  
  min-height: 190px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Service Card Colors */
.service-card--pink {
  background-color: #D37DA8;
}

.service-card--yellow {
  background-color: #F2C94C;
}

.service-card--orange {
  background-color: #DB9965;
}

.service-card--green {
  background-color: #BDDACB;
}

.service-card--purple {
  background-color: #C0AEDB;
}

.service-card__icon {
  width: auto;
  height: 40px;
  margin-bottom: var(--space-2);
}

.service-card__title {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 400;
  text-align: left;
  line-height: var(--line-height-tight);
}

/* ----------------------------------------
   Why Us Section
   ---------------------------------------- */

.why-us {
  background-color: var(--color-white);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.why-us__images {
  display: flex;
  justify-content: center;
}

.why-us__collage {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.why-us__content {
  text-align: center;
}

.why-us__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-900);
}

.why-us__subtitle {
  position: relative;
  margin-top: var(--space-2);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: #8f8f8f;
  line-height: 1.4;
}

.why-us__subtitle-highlight {
  color: var(--color-primary);
  font-style: italic;
}

.why-us__vector {
  position: absolute;
  width: 20px;
  height: auto;
}

.why-us__vector--top-right {
  top: -10px;
  right: -5px;
}

.why-us__vector--bottom-left {
  bottom: 2px;
  left: -30px;
}

.why-us__description {
  margin-top: var(--space-6);
  font-size: var(--font-size-xl);
  color: var(--color-neutral-600);
  line-height: 1.6;
}

.why-us__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

/* Feature Pill */
.feature-pill {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-5);
  background-color: var(--color-neutral-100);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
  transition: background-color var(--transition-fast);
}

.feature-pill:hover {
  border-color: var(--color-neutral-300);
}

/* ----------------------------------------
   Therapist Cards
   ---------------------------------------- */

.therapist-card {
  background-color: var(--color-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-normal);
}

.therapist-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.therapist-card__image-wrapper {
  position: relative;
  height: 230px;
  border-radius: 30px;
}

.therapist-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 -30px;
  border-radius: 30px;
}

.therapist-card__voice {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-neutral-900);
  cursor: pointer;
  transition: all 200ms ease;
  z-index: 5;
}

.therapist-card__voice:hover {
  background: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.therapist-card__voice:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Voice icon states */
.therapist-card__voice .voice-icon {
  position: absolute;
  transition: opacity 200ms ease, transform 200ms ease;
}

.therapist-card__voice .voice-icon--play {
  opacity: 1;
  transform: scale(1);
}

.therapist-card__voice .voice-icon--pause {
  opacity: 0;
  transform: scale(0.8);
}

/* Playing state */
.therapist-card__voice.is-playing {
  background: var(--color-primary);
  color: var(--color-white);
  animation: voicePulse 1.5s ease-in-out infinite;
}

.therapist-card__voice.is-playing .voice-icon--play {
  opacity: 0;
  transform: scale(0.8);
}

.therapist-card__voice.is-playing .voice-icon--pause {
  opacity: 1;
  transform: scale(1);
}

@keyframes voicePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(139, 92, 246, 0);
  }
}

/* Play button for video */
.therapist-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  transition: all 300ms ease;
  z-index: 4;
}

.therapist-card__play:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  transform: translate(-50%, -50%) scale(1.1);
}

.therapist-card__play:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.therapist-card__play svg {
  margin-left: 3px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.video-modal--open {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal__container {
  position: relative;
  width: 100%;
  max-width: 900px;
  transform: scale(0.9) translateY(20px);
  transition: transform 300ms ease;
}

.video-modal--open .video-modal__container {
  transform: scale(1) translateY(0);
}

.video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  transition: all 200ms ease;
  z-index: 1;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.video-modal__content {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-modal__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive video modal */
@media (max-width: 640px) {
  .video-modal__close {
    top: -48px;
    right: 0;
  }

  .video-modal__content {
    border-radius: 12px;
  }
}

.therapist-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
    border-radius: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.therapist-card__name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
}

.therapist-card__role {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.therapist-card__body {
  padding: var(--space-4);
}

.therapist-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.therapist-card__clients {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 12px;
  color: white;
}

.therapist-card__star {
  color: var(--color-yellow);
}

.therapist-card__languages {
  display: flex;
  gap: var(--space-1);
}

.therapist-card__lang {
  padding: var(--space-1) var(--space-2);
  
  border-radius: 5px;
  border: 1px solid white;
  font-size: var(--font-size-xs);
  color: var(--color-white);
}

.therapist-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.therapist-card__slot {
  font-size: var(--font-size-xs);
  color: #62AD5D;
}

.therapist-card__price {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
}

/* ----------------------------------------
   Blog Cards - Concave Notch Design (SVG Mask)
   ---------------------------------------- */

.blog-card {
  position: relative;
  transition: transform 400ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card__link {
  display: block;
  text-decoration: none;
}

/* Image wrapper with SVG mask for concave notch */
.blog-card__image-wrapper {
  position: relative;
  aspect-ratio: 424 / 433;
  overflow: hidden;
  background-color: var(--color-neutral-200);

  /* SVG mask creates the curved concave notch */
  -webkit-mask-image: url('../assets/masks/blog-card-mask.svg');
  mask-image: url('../assets/masks/blog-card-mask.svg');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.blog-wrapper-image-placement{
  position: relative;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  will-change: transform;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.03);
}

/* Arrow button - positioned in the curved notch area */
.blog-card__cta {
  position: absolute;
  bottom: 0;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background-color: #0F1E2E;
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;

  transition: transform 400ms ease, background-color 300ms ease;
  will-change: transform;
  z-index: 999999;
}

.blog-card:hover .blog-card__cta {
  transform: translateY(-2px);
  background-color: #1a2d3d;
}

.blog-card__cta-icon {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

/* Title section */
.blog-card__body {
  padding: var(--space-5) var(--space-1) var(--space-2);
}

.blog-card__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-900);
  line-height: 1.5;
  margin: 0;
}

/* Blog Grid */
.blog__grid {
  gap: var(--space-8);
}

/* ----------------------------------------
   Customer Stories
   ---------------------------------------- */

.customer-stories__wrapper {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  height: 266px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -133px;
  border-radius: 60px 40px 150px 60px;
  overflow: hidden;
  /* background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%); */
  background: #0E0E0E;
}

.customer-stories__grid {
  display: grid;
  grid-template-columns: 375px 1fr;
  height: 100%;
}

.customer-stories__media {
  position: relative;
  width: 375px;
  height: 100%;
  border-radius: 60px 60px 0 60px;
  overflow: hidden;
}

.customer-stories__video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-stories__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 100%);
  display: flex;
  align-items: center;
  padding: var(--space-8);
}

.customer-stories__quote {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: var(--line-height-tight);
  max-width: 280px;
}

.customer-stories__content {
  padding: var(--space-8);
}

.customer-stories__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.customer-stories__description {
  font-size: var(--font-size-base);
  color: var(--color-neutral-300);
  margin-bottom: var(--space-8);
  line-height: var(--line-height-relaxed);
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */

.footer {
  background-color: #1F1F20;
  padding-top: calc(133px + var(--space-16));
  padding-bottom: var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer__description {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
}

.footer__certifications {
  display: flex;
  gap: var(--space-4);
}

.footer__cert-img {
 
  height: 40px;
  object-fit: contain;
}

.footer__column-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.footer__social-icon {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-8);
  margin-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer__legal-link {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--color-white);
}

/* ========================================
   Booking Modal - Multi-Step Wizard
   ======================================== */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.booking-modal--open {
  opacity: 1;
  visibility: visible;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal__container {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(20px);
  transition: transform 300ms ease;
  overflow: hidden;
}

.booking-modal--open .booking-modal__container {
  transform: scale(1) translateY(0);
}

/* Header */
.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-neutral-100);
}

.booking-modal__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  margin: 0;
}

.booking-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-neutral-100);
  color: var(--color-neutral-600);
  transition: all 200ms ease;
}

.booking-modal__close:hover {
  background: var(--color-neutral-200);
  color: var(--color-neutral-900);
}

/* Progress */
.booking-modal__progress {
  padding: var(--space-4) var(--space-6);
  background: var(--color-neutral-50);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
}

.progress-step__number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-neutral-200);
  color: var(--color-neutral-500);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  transition: all 300ms ease;
}

.progress-step__label {
  font-size: 11px;
  color: var(--color-neutral-500);
  text-align: center;
  transition: color 300ms ease;
}

.progress-step--active .progress-step__number {
  background: var(--color-primary);
  color: var(--color-white);
}

.progress-step--active .progress-step__label {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}

.progress-step--completed .progress-step__number {
  background: #22c55e;
  color: var(--color-white);
}

.progress-bar {
  height: 4px;
  background: var(--color-neutral-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width 400ms ease;
}

/* Body */
.booking-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-6);
  position: relative;
}

/* Step */
.booking-step {
  display: none;
  animation: stepFadeIn 300ms ease;
}

.booking-step--active {
  display: block;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.booking-step__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  margin: 0 0 var(--space-1);
}

.booking-step__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
  margin: 0 0 var(--space-6);
}

/* Service Options - Step 1 */
.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.service-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5);
  background: var(--color-neutral-50);
  border: 2px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition: all 200ms ease;
  text-align: center;
}

.service-option__card:hover {
  background: var(--color-neutral-100);
  border-color: var(--color-neutral-200);
}

.service-option__input:checked + .service-option__card {
  background: rgba(139, 92, 246, 0.08);
  border-color: var(--color-primary);
}

.service-option__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 12px;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-option__name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
}

.service-option__desc {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}

/* Package Options - Step 2 */
.package-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.package-option {
  position: relative;
}

.package-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-6) var(--space-4);
  background: var(--color-neutral-50);
  border: 2px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition: all 200ms ease;
  text-align: center;
  position: relative;
}

.package-option__card:hover {
  border-color: var(--color-neutral-300);
}

.package-option__input:checked + .package-option__card {
  background: rgba(139, 92, 246, 0.08);
  border-color: var(--color-primary);
}

.package-option__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-1) var(--space-3);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.package-option__sessions {
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-900);
  line-height: 1;
}

.package-option__label {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
  margin-bottom: var(--space-3);
}

.package-option__price {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
}

.package-option__per {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}

.package-option__save {
  margin-top: var(--space-2);
  padding: var(--space-1) var(--space-2);
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
}

/* Date & Time - Step 3 */
.datetime-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.calendar {
  background: var(--color-neutral-50);
  border-radius: 16px;
  padding: var(--space-4);
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.calendar__month {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
}

.calendar__nav {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--color-neutral-600);
  transition: all 200ms ease;
}

.calendar__nav:hover {
  background: var(--color-neutral-200);
  color: var(--color-neutral-900);
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.calendar__weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-500);
  padding: var(--space-2) 0;
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-1);
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  background: rgba(139, 92, 246, 0.1);
  /* border: 1px solid var(--color-primary); */
  border-radius: 8px;
  cursor: pointer;
  transition: all 200ms ease;
}

.calendar__day:hover:not(:disabled):not(.calendar__day--fully-booked) {
  background: rgba(139, 92, 246, 0.2);
}

.calendar__day--disabled {
  background: var(--color-neutral-100);
  border-color: var(--color-neutral-200);
  color: var(--color-neutral-300);
  cursor: not-allowed;
}

.calendar__day--today {
  font-weight: var(--font-weight-semibold);
}

.calendar__day--selected {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  font-weight: var(--font-weight-semibold);
}

.calendar__day--fully-booked {
  background: var(--color-neutral-100) !important;
  border-color: var(--color-neutral-200) !important;
  color: var(--color-neutral-400) !important;
  cursor: not-allowed;
}

.calendar__day--fully-booked:hover {
  background: var(--color-neutral-100) !important;
}

.calendar__day--partially-booked {
  position: relative;
}

.calendar__day--partially-booked::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-warning, #f59e0b);
  border-radius: 50%;
}

.time-slots__message {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
  text-align: center;
  padding: var(--space-4);
}

.time-slots__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  margin: 0 0 var(--space-3);
}

.time-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.time-slot {
  position: relative;
}

.time-slot input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  margin: 0;
}

.time-slot__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  cursor: pointer;
  transition: all 200ms ease;
}

.time-slot__label:hover {
  background: rgba(139, 92, 246, 0.2);
}

.time-slot input[type="radio"]:checked + .time-slot__label {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
}

.time-slot--booked .time-slot__label {
  background: var(--color-neutral-100);
  border-color: var(--color-neutral-200);
  color: var(--color-neutral-400);
  cursor: not-allowed;
}

.time-slot--booked .time-slot__label:hover {
  background: var(--color-neutral-100);
}

.time-slot--booked input[type="radio"]:disabled + .time-slot__label {
  background: var(--color-neutral-100);
  border-color: var(--color-neutral-200);
  color: var(--color-neutral-400);
}

/* Form - Step 4 */
.booking-for-toggle {
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  background: rgba(139, 92, 246, 0.05);
  border-radius: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: var(--space-4) var(--space-4) var(--space-2);
  background: var(--color-neutral-50);
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: var(--font-size-base);
  color: var(--color-neutral-900);
  transition: all 200ms ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}

.form-label {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-base);
  color: var(--color-neutral-500);
  pointer-events: none;
  transition: all 200ms ease;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: 12px;
  font-size: 11px;
  color: var(--color-primary);
}

.form-section {
  margin-bottom: var(--space-5);
}

.form-section__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  margin: 0 0 var(--space-3);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.radio-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
}

.radio-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-option__custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-neutral-300);
  border-radius: 50%;
  position: relative;
  transition: all 200ms ease;
}

.radio-option__custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: transform 200ms ease;
}

.radio-option__input:checked + .radio-option__custom {
  border-color: var(--color-primary);
}

.radio-option__input:checked + .radio-option__custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-option__label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
}

.radio-option__label svg {
  color: var(--color-neutral-400);
}

/* Terms - Step 5 */
.terms-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.terms-box {
  max-height: 280px;
  overflow-y: auto;
  padding: var(--space-5);
  background: var(--color-neutral-50);
  border-radius: 16px;
}

.terms-box h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  margin: 0 0 var(--space-2);
}

.terms-box h4:not(:first-child) {
  margin-top: var(--space-4);
}

.terms-box p {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-600);
  line-height: 1.6;
  margin: 0;
}

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.checkbox-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-option__custom {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neutral-100);
  border: 2px solid var(--color-neutral-300);
  border-radius: 6px;
  color: transparent;
  transition: all 200ms ease;
}

.checkbox-option__input:checked + .checkbox-option__custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.checkbox-option__label {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
  line-height: 1.5;
}

.checkbox-option__label a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Payment - Step 6 */
.payment-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.booking-summary {
  background: var(--color-neutral-50);
  border-radius: 16px;
  padding: var(--space-5);
}

.booking-summary__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-900);
  margin: 0 0 var(--space-4);
}

.booking-summary__item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
}

.booking-summary__item:not(:last-child) {
  border-bottom: 1px solid var(--color-neutral-200);
}

.booking-summary__label {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
}

.booking-summary__value {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-900);
}

.coupon-section__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-700);
  margin: 0 0 var(--space-2);
}

.coupon-input {
  display: flex;
  gap: var(--space-2);
}

.coupon-input__field {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: var(--color-neutral-50);
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: var(--font-size-sm);
  color: var(--color-neutral-900);
  transition: all 200ms ease;
}

.coupon-input__field:focus {
  outline: none;
  border-color: var(--color-primary);
}

.coupon-input__btn {
  padding: var(--space-3) var(--space-5);
  background: var(--color-neutral-900);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  border-radius: 10px;
  transition: all 200ms ease;
}

.coupon-input__btn:hover {
  background: var(--color-neutral-800);
}

.coupon-message {
  font-size: var(--font-size-sm);
  margin: var(--space-2) 0 0;
}

.coupon-message--success {
  color: #16a34a;
}

.coupon-message--error {
  color: #dc2626;
}

.price-breakdown {
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-neutral-200);
}

.price-breakdown__item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: var(--font-size-sm);
  color: var(--color-neutral-600);
}

.price-breakdown__item--discount {
  color: #16a34a;
}

.price-breakdown__item--total {
  padding-top: var(--space-3);
  margin-top: var(--space-2);
  border-top: 2px solid var(--color-neutral-200);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-900);
}

.payment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-4);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border-radius: 12px;
  transition: all 200ms ease;
}

.payment-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.payment-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
  margin: 0;
}

.payment-secure svg {
  color: #16a34a;
}

/* Footer */
.booking-modal__footer {
  display: flex;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-neutral-100);
  background: var(--color-neutral-50);
}

.booking-modal__btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  border-radius: 10px;
  transition: all 200ms ease;
}

.booking-modal__btn--back {
  background: var(--color-white);
  color: var(--color-neutral-700);
  border: 1px solid var(--color-neutral-300);
}

.booking-modal__btn--back:hover {
  background: var(--color-neutral-100);
}

.booking-modal__btn--next {
  background: var(--color-primary);
  color: var(--color-white);
  margin-left: auto;
}

.booking-modal__btn--next:hover:not(:disabled) {
  background: var(--color-primary-dark);
}

.booking-modal__btn--next:disabled {
  background: var(--color-neutral-300);
  cursor: not-allowed;
}

/* Body scroll lock */
body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 640px) {
  .booking-modal__container {
    max-height: 80vh;
    border-radius: 24px 24px 24px 24px;
    /* margin-top: auto; */
  }

  .booking-modal__header{
    padding: 1rem;
  }

  .booking-modal__title{
    font-size: 18px;
  }

  .progress-step__label {
    display: none;
  }

  .progress-step__number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .package-options {
    grid-template-columns: 1fr;
  }

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

  .time-slots__grid {
    grid-template-columns: 1fr;
  }

  .radio-group {
    flex-direction: column;
  }
}
