/* =============================================
   TREATMENTS PAGE — Dr. Yiftach Yanai
   ============================================= */

/* ===================== SECTION 1 — HERO ===================== */
.treat-hero {
  width: 100%;
  min-height: 520px;
}

.treat-hero__inner {
  display: flex;
  min-height: 520px;
}

.treat-hero__image {
  flex: 0 0 58%;
  position: relative;
  overflow: hidden;
}

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

.treat-hero__content {
  flex: 1;
  background: #f0eded;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
}

.treat-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  direction: ltr;
  text-align: left;
}

.treat-hero__text {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 32px;
  max-width: 420px;
}

.treat-hero__dots {
  display: flex;
  gap: 8px;
}

.treat-hero__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E8556D;
  opacity: 0.7;
}

.treat-hero__dots span:first-child {
  opacity: 1;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .treat-hero__image {
    flex: 0 0 50%;
  }
  .treat-hero__content {
    padding: 48px 36px;
  }
}

@media (max-width: 768px) {
  .treat-hero__inner {
    flex-direction: column;
    min-height: auto;
  }
  .treat-hero__image {
    flex: none;
    height: 360px;
  }
  .treat-hero__content {
    padding: 40px 24px;
  }
  .treat-hero__title {
    font-size: 32px;
  }
}

/* ===================== SECTION 2 — TREATMENTS GRID ===================== */
.treat-grid-section {
  background: #fff;
  padding: 60px 0 80px;
}

.treat-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.treat-card {
  text-align: right;
}

.treat-card__img {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
}

.treat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.treat-card:hover .treat-card__img img {
  transform: scale(1.03);
}

.treat-card__title {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.treat-card__desc {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #888;
  margin-bottom: 12px;
}

.treat-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #555;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.treat-card__link:hover {
  border-color: #E8556D;
  color: #E8556D;
}

/* Responsive */
@media (max-width: 1024px) {
  .treat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

@media (max-width: 768px) {
  .treat-grid-section {
    padding: 40px 0 60px;
  }
  .treat-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 32px;
    padding: 0 16px;
  }
}

/* ===================== HEADER FIX — always dark on treatments page ===================== */
.site-header {
  background: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(10px);
}

/* ===================== BOTOX PAGE — HERO (overlay layout) ===================== */
.botox-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
}

/* Full-width background photo */
.botox-hero__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
}

/* English text overlay — right side, on the photo */
.botox-hero__overlay-text {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  direction: ltr;
  text-align: left;
}

.botox-hero__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.botox-hero__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

/* White floating card — left side, anchored to bottom */
.botox-hero__card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: #fff;
  padding: 48px 44px;
  max-width: 540px;
  width: 46%;
  min-width: 360px;
}

.botox-hero__title {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #E8556D;
  line-height: 1.45;
  margin-bottom: 24px;
  text-align: right;
  direction: rtl;
}

.botox-hero__desc {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 12.5px;
  line-height: 1.85;
  color: #777;
  text-align: right;
  direction: rtl;
}

/* Responsive */
@media (max-width: 1024px) {
  .botox-hero__card {
    width: 42%;
    padding: 36px 32px;
  }
  .botox-hero__overlay-text {
    right: 5%;
  }
}

@media (max-width: 768px) {
  .botox-hero {
    min-height: auto;
  }
  .botox-hero__bg {
    position: relative;
    height: 360px;
  }
  .botox-hero__overlay-text {
    position: absolute;
    right: 16px;
    bottom: 24px;
    top: auto;
    transform: none;
  }
  .botox-hero__heading {
    font-size: 28px;
  }
  .botox-hero__card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    min-width: auto;
    padding: 32px 20px;
  }
}

/* ===================== BOTOX — SECTION 2 VIDEO ===================== */
.botox-video {
  width: 100%;
  background: #000;
}

.botox-video__inner {
  display: flex;
  min-height: 380px;
}

.botox-video__media {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.botox-video__vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.botox-video__play {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E8556D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.botox-video__play span {
  color: #fff;
  font-size: 18px;
  margin-left: 3px;
}

.botox-video__play:hover {
  transform: scale(1.08);
  background: #d44460;
}

.botox-video__text {
  flex: 1;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 56px;
  text-align: right;
  direction: rtl;
}

.botox-video__heading {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #E8556D;
  line-height: 1.4;
  margin-bottom: 10px;
}

.botox-video__desc {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .botox-video__inner {
    flex-direction: column;
    min-height: auto;
  }
  .botox-video__media {
    flex: none;
    height: 260px;
  }
  .botox-video__text {
    padding: 32px 20px;
  }
  .botox-video__play {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* ===================== BOTOX — SECTION 3 PRODUCT ===================== */
.botox-product {
  background: #fff;
  padding: 70px 0;
}

.botox-product__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 56px;
  min-height: 360px;
}

/* Image — first child = RIGHT in RTL */
.botox-product__image {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
}

.botox-product__image img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
}

/* Text — second child = LEFT in RTL */
.botox-product__text {
  flex: 1;
  text-align: right;
  direction: rtl;
}

.botox-product__heading {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #E8556D;
  margin-bottom: 10px;
}

.botox-product__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.botox-product__desc {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: #777;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 768px) {
  .botox-product {
    padding: 48px 0;
  }
  .botox-product__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
  }
  .botox-product__image {
    flex: none;
  }
  .botox-product__image img {
    max-height: 260px;
  }
}

/* ===================== BOTOX — SECTION 4 BEFORE & AFTER ===================== */
.botox-ba {
  background: #E29191;
  padding: 0;
  overflow: hidden;
}

.botox-ba__inner {
  display: flex;
  min-height: 400px;
}

/* Text — first child = RIGHT in RTL */
.botox-ba__text {
  flex: 1;
  background: none;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  direction: rtl;
  text-align: right;
}

.botox-ba__heading {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 20px;
}

.botox-ba__desc {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: #333;
  max-width: 420px;
}

/* Photos — second child = LEFT in RTL */
.botox-ba__photos {
  flex: 0 0 45%;
  position: relative;
  padding: 40px 32px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.botox-ba__images {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  max-width: 360px;
}

.botox-ba__img-wrap {
  flex: 1;
  text-align: center;
}

.botox-ba__img-wrap img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.botox-ba__label {
  display: block;
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
  direction: rtl;
}

.botox-ba__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  z-index: 2;
  pointer-events: none;
}

.botox-ba__nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  padding: 0;
}

.botox-ba__arrow {
  width: 20px;
  height: 20px;
}

.botox-ba__arrow--left {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .botox-ba__inner {
    flex-direction: column;
    min-height: auto;
  }
  .botox-ba__photos {
    flex: none;
    padding: 24px 16px 16px;
  }
  .botox-ba__img-wrap img {
    max-height: 180px;
  }
  .botox-ba__text {
    padding: 36px 20px;
  }
}

/* ===================== SECTION 5 — Q&A ACCORDION ===================== */

.botox-qa {
  background: #fff;
}

.botox-qa__inner {
  display: flex;
  min-height: 480px;
}

/* Black CTA side — second child = LEFT in RTL */
.botox-qa__cta-side {
  flex: 1;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  text-align: center;
}

.botox-qa__cta-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 1px;
  margin-bottom: 36px;
  direction: ltr;
}

.botox-qa__cta-btn {
  display: inline-block;
  background: #E8556D;
  color: #fff;
  padding: 14px 48px;
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.botox-qa__cta-btn:hover {
  background: #d44460;
}

/* FAQ side — first child = RIGHT in RTL */
.botox-qa__faq-side {
  flex: 1;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.botox-qa__title {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E8556D;
  text-align: right;
  margin-bottom: 36px;
}

.botox-qa__list {
  display: flex;
  flex-direction: column;
}

.botox-qa__item {
  border-bottom: 1px solid #e0e0e0;
}

.botox-qa__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  direction: rtl;
  gap: 16px;
  user-select: none;
}

.botox-qa__q-text {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-align: right;
  flex: 1;
}

.botox-qa__icon {
  font-size: 22px;
  font-weight: 300;
  color: #999;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
  transition: transform 0.2s;
}

/* Answer — hidden by default */
.botox-qa__answer {
  display: none;
  padding: 0 0 20px;
}

.botox-qa__answer p {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  text-align: right;
  direction: rtl;
}

/* Open state */
.botox-qa__item--open .botox-qa__answer {
  display: block;
  padding: 0 0 20px;
}

.botox-qa__item--open .botox-qa__q-text {
  font-weight: 700;
}

.botox-qa__item--open .botox-qa__icon {
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .botox-qa__inner {
    flex-direction: column-reverse;
  }
  .botox-qa__cta-side {
    padding: 48px 24px;
  }
  .botox-qa__faq-side {
    padding: 40px 20px;
  }
  .botox-qa__cta-heading {
    font-size: 22px;
  }
}
