/* =============================================
   DR. YIFTACH YANAI — HOMEPAGE STYLES
   Fonts: Heebo (Hebrew body), Montserrat (English headings), Playfair Display (accents)
   ============================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background: #fff;
  direction: rtl;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== BUTTONS ===================== */

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Heebo', sans-serif;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #E8556D;
  color: #fff;
}
.btn-primary:hover {
  background: #d44460;
}

.btn-outline-dark {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}
.btn-outline-dark:hover {
  background: #333;
  color: #fff;
}

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

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

/* ===================== HEADER ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease;
  display: flex;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
}

/* RIGHT side (first in row-reverse): logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* RIGHT side: nav + CTA + hamburger */
.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hamburger {
}

.main-nav {
}

.header-cta {
  display: none;
  background: #E8556D;
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  white-space: nowrap;
  transition: background 0.3s;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-img {
  height: 56px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #E8556D;
}

.header-cta:hover {
  background: #d44460;
}

.site-header.scrolled .header-cta {
  display: inline-block;
}

.site-header.scrolled .header-inner {
  height: 56px;
}

.site-header.scrolled .logo-img {
  height: 40px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger img {
  width: 28px;
  height: auto;
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* hide native video controls bar — all browsers */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-timeline,
.hero-video::-webkit-media-controls-current-time-display,
.hero-video::-webkit-media-controls-time-remaining-display,
.hero-video::-webkit-media-controls-mute-button,
.hero-video::-webkit-media-controls-volume-slider,
.hero-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
  color: #fff;
  padding: 0 80px 0 0;
  max-width: 600px;
  margin-right: 8%;
  margin-left: auto;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 36px;
  direction: ltr;
  text-align: right;
}

/* ===================== TREATMENTS GALLERY ===================== */

.treatments-gallery {
  padding: 58px 0 74px;
  background: #f3eceb;
}

.gallery-slider-wrap {
  overflow: hidden;
  width: 100%;
}

.gallery-slider {
  display: flex;
  flex-direction: row;
  direction: rtl;
  gap: 14px;
  padding: 0 0 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-slider:active {
  cursor: grabbing;
}

.gallery-card {
  position: relative;
  flex: 1 0 0;
  min-width: 180px;
  height: 466px;
  overflow: hidden;
  border-radius: 0;
  scroll-snap-align: start;
  cursor: pointer;
  background: #ddd;
}

.gallery-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s ease;
}

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

/* subtle dark fade at bottom for regular cards */
.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.0) 100%);
  z-index: 1;
  pointer-events: none;
}

.gallery-card-bottom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: auto;
  z-index: 2;
  padding: 0;
  background: none;
  display: block;
}

.gallery-label {
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
  color: #fff;
  text-align: right;
  text-shadow: 0 3px 10px rgba(0,0,0,0.28);
}

/* hidden by default on regular cards */
.gallery-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* regular hover state */
.gallery-card:not(.gallery-card-featured):hover .gallery-hover {
  opacity: 1;
  background: rgba(0,0,0,0.66);
}

.gallery-card:not(.gallery-card-featured) .gallery-hover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px 18px;
  text-align: center;
}

.gallery-card:not(.gallery-card-featured) .gallery-hover-text {
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  max-width: 85%;
}

.gallery-card:not(.gallery-card-featured) .gallery-hover-link {
  display: none;
}

/* featured card should always look active */
.gallery-card-featured::after {
  display: none;
}

.gallery-card-featured .gallery-hover {
  opacity: 1;
  background: rgba(0,0,0,0.52);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 34px 22px 24px;
  text-align: center;
}

.gallery-card-featured .gallery-hover-text {
  color: #fff;
  font-size: 22px;
  line-height: 1.33;
  font-weight: 700;
  text-align: center;
  max-width: 90%;
  margin-top: -16px;
}

.gallery-card-featured .gallery-hover-link {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  direction: rtl;
}

.gallery-card-featured .arrow-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e8b7bb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.gallery-card-featured .arrow-circle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #111;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-outline-pill {
  background: transparent;
  color: #222;
  border: 1.5px solid #222;
  border-radius: 999px;
  padding: 13px 42px;
  min-width: 192px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.btn-outline-pill:hover {
  background: #222;
  color: #fff;
}

.gallery-cta {
  text-align: center;
  margin-top: 54px;
}

/* ===================== DOCTOR SECTION ===================== */

.doctor-section {
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.doctor-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Left column (visually): heading + photo + triangle */
/* In RTL, grid-column:1 is on the RIGHT, so we force column 1 = visual left */
.doctor-left {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 600px;
  grid-column: 1 / 2;
  grid-row: 1;
  direction: ltr;
}

.doctor-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  height: 100%;
}

.doctor-image img {
  height: 85%;
  width: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.doctor-triangle {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-40%);
  width: 0;
  height: 0;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  border-bottom: 450px solid #E8556D;
  opacity: 0.85;
  z-index: 1;
}

.doctor-heading-en {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  z-index: 3;
  direction: ltr;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.doctor-heading-en .highlight {
  color: #E8556D;
}

/* Right column: text content */
.doctor-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  z-index: 2;
  direction: rtl; /* Hebrew text stays RTL */
  grid-column: 2 / 3;
  grid-row: 1;
}

.doctor-name {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 24px;
}

.doctor-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 480px;
}

.doctor-btn {
  align-self: flex-start;
  padding: 14px 36px;
  font-size: 15px;
}

/* ===================== PODCAST ===================== */

.podcast-section {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

/* Photo is the full background */
.podcast-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.podcast-brand {
  position: absolute;
  top: 32px;
  left: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 8px;
  color: rgba(255,255,255,0.7);
  direction: ltr;
  z-index: 1;
}

.podcast-statue {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content box floats on top, on the LEFT side visually */
.podcast-content {
  position: relative;
  z-index: 2;
  background: rgba(80,75,70,0.88);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  max-width: 520px;
  margin: 60px 40px 60px auto;
  backdrop-filter: blur(6px);
  color: #fff;
}

.podcast-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.podcast-title-bold {
  font-weight: 900;
  font-size: 56px;
}

.podcast-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Featured episode card */
.podcast-featured {
  margin-bottom: 20px;
}

.podcast-ep-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.podcast-ep-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.podcast-ep-meta {
  font-size: 12px;
  color: #aaa;
}

.podcast-ep-tags {
  font-size: 11px;
  color: #999;
}

.podcast-ep-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-top: 4px;
}

.podcast-ep-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Episode slider row */
.podcast-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.podcast-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.podcast-nav:hover {
  background: rgba(255,255,255,0.15);
}

.podcast-slider-cards {
  display: flex;
  gap: 12px;
  flex: 1;
  overflow: hidden;
}

.podcast-ep-small {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
  min-width: 0;
}

.podcast-ep-small-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.podcast-ep-small-info strong {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-ep-small-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.podcast-ep-play {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
}

/* Podcast CTA */
.podcast-cta {
  text-align: center;
  margin-top: 8px;
}

.podcast-btn {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.podcast-btn:hover {
  background: #fff;
  color: #333;
}

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

.testimonials-section {
  position: relative;
  padding: 80px 0 100px;
  background: center/cover no-repeat;
  color: #fff;
}

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

.testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 900;
  font-style: italic;
  margin-bottom: 12px;
  letter-spacing: -1px;
  direction: ltr;
  text-align: left;
  color: #fff;
  line-height: 1;
}

.testimonials-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 60px;
  color: rgba(255,255,255,0.75);
  direction: ltr;
  letter-spacing: 8px;
  text-align: left;
  font-style: italic;
}

.testimonials-slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.testimonials-nav:hover {
  background: rgba(0,0,0,0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
}

.testimonial-card {
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 20px 24px 24px;
  text-align: center;
  position: relative;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: -60px auto 12px;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: #222;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 40px;
  font-weight: 900;
  color: #E8556D;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
}

/* ===================== ACADEMY ===================== */

.academy-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: #1a1a2e center/cover no-repeat;
  color: #fff;
}

.academy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,20,40,0.7);
  z-index: 1;
}

.academy-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 80px 0 auto;
  text-align: right;
}

.academy-logo {
  margin-bottom: 40px;
}

.academy-logo-img {
  height: 60px;
  width: auto;
}

.academy-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #E8556D;
}

.academy-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 32px;
}

.academy-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50px;
}

.academy-btn:hover {
  background: #fff;
  color: #222;
  border-color: #fff;
}

.academy-register {
  margin-top: 24px;
  font-size: 14px;
  color: #aaa;
}

.academy-register a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

/* ===================== CONTACT ===================== */

.contact-section {
  background: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.contact-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  grid-column: 2 / 3;
  grid-row: 1;
}

.contact-overline {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #888;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  font-size: 15px;
  font-family: 'Heebo', sans-serif;
  background: transparent;
  transition: border-color 0.2s;
  color: #333;
}

.contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23E8556D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 10px 7px;
  padding-left: 32px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-bottom-color: #E8556D;
}

.contact-submit {
  display: inline-block;
  background: #E8556D;
  color: #fff;
  border: none;
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  margin-top: 8px;
  align-self: flex-start;
}

.contact-submit:hover {
  background: #d44460;
}

.contact-privacy {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}

.contact-privacy a {
  color: #E8556D;
  text-decoration: underline;
}

.contact-hero-side {
  position: relative;
  overflow: hidden;
  grid-column: 1 / 2;
  grid-row: 1;
}

.contact-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contact-hero-text {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.contact-hero-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  direction: ltr;
  text-align: left;
}

.contact-hero-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
  direction: ltr;
  text-align: left;
  letter-spacing: 4px;
  color: #E8556D;
}

/* ===================== FOOTER ===================== */

.site-footer {
  background: #111;
  color: #fff;
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 32px 48px;
}

.footer-brand p {
  color: #aaa;
  font-size: 14px;
  margin: 12px 0 20px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 4px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a {
  color: #aaa;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #E8556D;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #E8556D;
}

.social-icons a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #666;
}

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

@media (max-width: 1024px) {
  .gallery-slider-wrap {
    /* full width at 1024 */
  }

  .gallery-card {
    height: 390px;
  }

  .doctor-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .doctor-left {
    min-height: 500px;
    grid-column: auto;
    grid-row: auto;
    order: 1;
  }

  .doctor-text {
    padding: 60px 32px;
    text-align: center;
    align-items: center;
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }

  .doctor-image {
    height: 500px;
    justify-content: center;
  }

  .doctor-image img {
    height: 100%;
  }

  .doctor-heading-en {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    text-align: left;
    font-size: clamp(28px, 4vw, 48px);
  }

  .doctor-btn {
    align-self: center;
  }

  .podcast-content {
    margin: 40px 20px;
    max-width: none;
  }

  .podcast-brand {
    left: 20px;
    top: 20px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-slider-wrap {
    gap: 12px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-hero-side {
    min-height: 400px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 32px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav a {
    font-size: 18px;
  }

  .header-left .main-nav {
    display: none;
  }

  .header-left .main-nav.open {
    display: block;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .treatments-gallery {
    padding: 44px 0 56px;
  }

  .gallery-slider-wrap {
    /* full width at 768 */
  }

  .gallery-slider {
    gap: 10px;
  }

  .gallery-card {
    min-width: 150px;
    height: 300px;
  }

  .gallery-card-bottom {
    right: 12px;
    bottom: 12px;
  }

  .gallery-label {
    font-size: 15px;
  }

  .gallery-card-featured .gallery-hover-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .gallery-card-featured .gallery-hover-link {
    right: 14px;
    bottom: 14px;
    font-size: 12px;
    gap: 8px;
  }

  .gallery-card-featured .arrow-circle {
    width: 38px;
    height: 38px;
  }

  .btn-outline-pill {
    min-width: 170px;
    padding: 12px 28px;
    font-size: 16px;
  }

  .doctor-name {
    font-size: 36px;
  }

  .doctor-left {
    min-height: 400px;
  }

  .doctor-triangle {
    border-left-width: 140px;
    border-right-width: 140px;
    border-bottom-width: 280px;
  }

  .doctor-heading-en {
    font-size: clamp(24px, 5vw, 36px);
    left: 20px;
  }

  .podcast-title {
    font-size: 36px;
  }

  .podcast-title-bold {
    font-size: 42px;
  }

  .podcast-slider-cards {
    flex-direction: column;
  }

  .podcast-ep-card {
    flex-direction: column;
    text-align: center;
  }

  .podcast-ep-thumb {
    width: 60px;
    height: 60px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-nav {
    display: none;
  }

  .contact-form-side {
    padding: 48px 24px;
  }

  .contact-hero-text h2 {
    font-size: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gallery-slider-wrap {
    /* full width at 480 */
  }

  .gallery-card {
    min-width: 140px;
    height: 280px;
  }

  .hero {
    min-height: 500px;
  }

  .section-title-dark {
    font-size: 28px;
  }

  .podcast-title {
    font-size: 28px;
  }

  .podcast-title-bold {
    font-size: 32px;
  }

  .academy-title {
    font-size: 28px;
  }

  .academy-content {
    margin: 0 24px 0 auto;
  }
}
