/* ============================================================
   DrSiju.com — Main Stylesheet
   Color Scheme: Yellow (#FFC72C), White (#FFFFFF), Black (#1A1A1A)
   Author: DrSiju Website
   ============================================================ */

/* ── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  --yellow:       #FFC72C;
  --yellow-dark:  #E5B000;
  --yellow-light: #FFF3CC;
  --black:        #1A1A1A;
  --black-soft:   #2C2C2C;
  --white:        #FFFFFF;
  --gray-light:   #F8F8F8;
  --gray-mid:     #E8E8E8;
  --gray-text:    #666666;
  --gray-dark:    #444444;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-width:    1200px;
  --section-pad:  80px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.16);
  --transition:   0.3s ease;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--gray-dark); }
p:last-child { margin-bottom: 0; }

/* ── 4. UTILITY CLASSES ───────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--gray { background: var(--gray-light); }
.section--black { background: var(--black); color: var(--white); }
.section--yellow { background: var(--yellow); color: var(--black); }

.section-label {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 640px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.text-yellow { color: var(--yellow); }
.text-white  { color: var(--white); }

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 199, 44, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── 6. NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__logo-mark {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
}

.navbar__logo-title {
  font-size: 0.68rem;
  color: var(--gray-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav links */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__menu a {
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}

.navbar__menu a:hover,
.navbar__menu a.active {
  background: var(--yellow-light);
  color: var(--black);
}

.navbar__cta {
  flex-shrink: 0;
}

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

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  padding: 16px 24px 24px;
  gap: 4px;
}

.navbar__mobile.open { display: flex; }

.navbar__mobile a {
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 6px;
  transition: background var(--transition);
}

.navbar__mobile a:hover { background: var(--yellow-light); }

.navbar__mobile .btn {
  margin-top: 8px;
  justify-content: center;
  width: 100%;
}

/* ── 7. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Layer 1 placeholder (no styling needed — bg is on the section) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Layer 2: semi-transparent dark overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Force container to full width inside the flex hero */
.hero > .container {
  width: 100%;
}

/* Layer 3: text content — left-aligned, matches other sections */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.hero__content .btn-group {
  flex-wrap: nowrap;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 199, 44, 0.15);
  border: 1px solid rgba(255, 199, 44, 0.4);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.hero h1 span { color: var(--yellow); }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat svg {
  color: #fff;
  width: 28px;
  height: 28px;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ── 8. TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--yellow);
  padding: 28px 0;
  margin: 0;
  overflow: hidden;
}
.trust-bar .container {
  max-width: 1480px;
  padding: 0 40px;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.trust-bar__icon svg {
  width: 24px;
  height: 24px;
  color: #1a3a5c;
}

.trust-bar__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.trust-bar__text span {
  font-size: 12px;
  color: var(--black-soft);
}

.trust-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* ── 9. FEATURE CARDS (3-column) ──────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-mid);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow);
}

.card__icon {
  background: #f0f0f0;
  border-radius: 14px;
  padding: 14px;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.card__icon svg {
  color: #1a1a1a;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Icon containers */
.icon-container {
  background: #f0f0f0;
  border-radius: 14px;
  padding: 14px;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.icon-container svg {
  color: #1a1a1a;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.icon-container--dark {
  background: rgba(255,199,44,0.15);
}
.icon-container--dark svg {
  color: #FFC72C;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
  font-family: var(--font-heading);
}

.card__text {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── 10. INVISALIGN SECTION ───────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }

.split-visual {
  background: var(--gray-light);
  border-radius: var(--border-radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 0.9rem;
  border: 2px dashed var(--gray-mid);
  text-align: center;
  padding: 24px;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.who-for-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}

.tag {
  background: var(--yellow-light);
  color: var(--black);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--yellow);
}

/* ── 11. TREATMENT STEPS / TIMELINE ──────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--border-radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 0;
}

/* ── 12. BEFORE/AFTER GALLERY ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.case-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  background: var(--gray-light);
}

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

.case-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.case-image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  text-align: center;
}

.case-image--before {
  background: #5a5a5a;
}

.case-image--after {
  background: #2C7A4B;
}

.case-image-icon { font-size: 1.6rem; }

.case-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  box-shadow: var(--shadow);
  z-index: 1;
}

.case-info {
  padding: 16px 20px;
}

.case-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.case-info p {
  font-size: 0.82rem;
  color: var(--gray-text);
  margin: 0;
}

/* ── 13. TESTIMONIALS ─────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-label {
  font-size: 0.8rem;
  color: var(--gray-text);
}

/* ── 14. FAQ ACCORDION ────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--yellow); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover { background: var(--gray-light); }
.faq-item.open .faq-question { background: var(--yellow-light); }

.faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin: 0;
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--transition);
  color: var(--black);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 16px 24px 24px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

.faq-answer > p {
  padding: 16px 24px 24px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin: 0;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ── 15. CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--black) 0%, #2C2C2C 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 199, 44, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; }
.cta-banner .btn-group { justify-content: center; }

/* ── 16. FOOTER ───────────────────────────────────────────── */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__logo-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__about {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover { background: var(--yellow); color: var(--black); }

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--yellow); }

.footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer__contact-icon {
  color: var(--yellow);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}

.footer__contact-text strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer__bottom a:hover { color: var(--yellow); }

/* ── 17. PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #2C2C2C 100%);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}

.page-hero__breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a { color: var(--yellow); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.3); }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; }

/* ── 18. ABOUT PAGE ───────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.about-photo {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: sticky;
  top: 90px;
}

.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2C2C2C, #3A3A3A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
}

.about-photo-placeholder .icon { font-size: 3rem; }

.about-badge-strip {
  background: var(--yellow);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.about-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}

/* ── Credential Badges Strip ────────────────────────────── */
.credential-badges {
  display: flex;
  width: 100%;
  border-top: 1px solid #eee;
  background: var(--white);
}

.credential-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid #eee;
}

.credential-badge:last-child { border-right: none; }

.credential-badge-icon {
  width: 24px;
  height: 24px;
  color: var(--yellow);
  margin-bottom: 6px;
  flex-shrink: 0;
}

.credential-badge-title {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.credential-badge-sub {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .credential-badges { flex-direction: column; }
  .credential-badge {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 12px;
  }
  .credential-badge:last-child { border-bottom: none; }
}

.quals-list, .interests-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 32px;
}

.qual-item, .interest-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--yellow);
}

.qual-icon, .award-icon {
  width: 32px;
  height: 32px;
  color: #FFC72C;
  flex-shrink: 0;
  margin-top: 2px;
}

.qual-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.qual-text p {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin: 0;
}

/* ── Awards Section (Laurel Wreath Style) ──────────────── */
.awards-section {
  background: #1a1a1a;
  padding: 80px 0;
}
.awards-section .section-label {
  color: rgba(255,199,44,0.8);
}
.awards-section .section-title {
  color: #ffffff;
}
.awards-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  margin-top: 48px;
}
.award-card {
  transition: transform 0.3s ease;
}
.award-card:hover {
  transform: translateY(-4px);
}
.award-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.award-wreath-frame {
  width: 100%;
  display: block;
}
.award-wreath-frame svg {
  width: 100%;
  height: auto;
  display: block;
}
.award-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 58%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 2px 0;
  pointer-events: none;
}
.award-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin: 0;
  display: block;
  text-align: center;
}
.award-sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.3;
  margin: 0;
  display: block;
  text-align: center;
}
.award-year {
  font-size: 12px;
  font-weight: 600;
  color: #FFC72C;
  letter-spacing: 1px;
  margin: 3px 0 0 0;
  display: block;
  text-align: center;
}
@media (max-width: 900px) {
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .award-name { font-size: 11px; }
  .award-sub { font-size: 10px; }
  .award-year { font-size: 11px; }
  .award-text-overlay { width: 58%; gap: 2px; }
}
/* Smaller variant for why-choose page */
.awards-grid--small {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 12px;
  margin-top: 36px;
}
@media (max-width: 600px) {
  .awards-grid--small { grid-template-columns: repeat(2, 1fr); }
}

/* ── 19. COST PAGE ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.pricing-card--featured {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pricing-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pricing-range {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yellow-dark);
  margin-bottom: 8px;
}
.pricing-desc { font-size: 0.85rem; color: var(--gray-text); margin-bottom: 24px; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.pricing-feature-icon {
  color: var(--yellow-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── 20. BLOG ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2C2C2C, #444);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card-body { padding: 24px; }

.blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.blog-card-meta span { display: flex; align-items: center; gap: 4px; }

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  color: var(--black);
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: color var(--transition);
}

.blog-card-link:hover { color: var(--yellow-dark); }

/* Blog Post Article */
.article {
  max-width: 740px;
  margin: 0 auto;
}

.article h2 { font-size: 20px; font-weight: 600; color: #1a1a1a; margin: 32px 0 12px; line-height: 1.3; }
.article h3 { font-size: 17px; font-weight: 600; color: #1a1a1a; margin: 24px 0 10px; }
.article p  { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 18px; }

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-mid);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-category {
  background: var(--yellow);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}


.article-image {
  background: #f0f4f8;
  border-radius: var(--border-radius-lg);
  margin: 32px 0;
  overflow: hidden;
  text-align: center;
}

.article ul, .article ol {
  list-style: disc;
  margin: 16px 0 16px 24px;
}

.article ol { list-style: decimal; }

.article li {
  font-size: 1rem;
  color: var(--gray-dark);
  margin-bottom: 8px;
  line-height: 1.7;
}

.article-highlight {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  padding: 20px 24px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--black);
}

.article-cta {
  background: var(--black);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.article-cta h4 { color: var(--white); margin-bottom: 12px; font-size: 1.2rem; }
.article-cta p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }

/* ── 21. CONTACT PAGE ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,199,44,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gray-mid);
  color: var(--gray-text);
  gap: 12px;
  font-size: 0.9rem;
}

.map-placeholder-icon { font-size: 2.5rem; }

.contact-info { margin-top: 28px; }

.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-mid);
  align-items: flex-start;
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-text);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--black);
  margin: 0;
  font-weight: 500;
}

.contact-info-text a:hover { color: var(--yellow-dark); }

/* ── 22. WHY CHOOSE PAGE ──────────────────────────────────── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.reason-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
}

.reason-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.reason-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--yellow-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.reason-content h4 {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 8px;
  color: var(--black);
}

.reason-content p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin: 0;
}

/* ── 23. SCROLL ANIMATIONS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 24. DIVIDER ──────────────────────────────────────────── */
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 24px;
}

.section-divider--center { margin-left: auto; margin-right: auto; }

/* ── 25. RESPONSIVE — TABLET (≤ 1024px) ───────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 60px; }

  .navbar__menu { display: none; }
  .navbar__cta  { display: none; }
  .navbar__hamburger { display: flex; }

  .cards-grid          { grid-template-columns: repeat(2, 1fr); }
  .steps-grid          { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
  .blog-grid           { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid        { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid        { grid-template-columns: 1fr; }
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 32px; }

  .split-section       { grid-template-columns: 1fr; gap: 40px; }
  .split-section--reverse { direction: ltr; }
  .about-split         { grid-template-columns: 1fr; }
  .about-photo         { position: static; max-width: 400px; }
  .awards-grid         { grid-template-columns: repeat(2, 1fr); }
  .contact-grid        { grid-template-columns: 1fr; }
}

/* ── 26. RESPONSIVE — MOBILE (≤ 640px) ────────────────────── */
@media (max-width: 640px) {
  :root { --section-pad: 48px; }

  .hero { min-height: 100vh; }
  .hero h1 { font-size: 2rem; }
  .hero__content { max-width: 100%; }

  .trust-bar__inner { flex-direction: column; gap: 20px; }
  .trust-bar__divider { display: none; }

  .cards-grid          { grid-template-columns: 1fr; }
  .steps-grid          { grid-template-columns: 1fr; }
  .gallery-grid        { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .blog-grid           { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .awards-grid         { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .benefits-list       { grid-template-columns: 1fr; }
  .footer__grid        { grid-template-columns: 1fr; }

  .hero__stats         { gap: 20px; }
  .btn-group           { flex-direction: column; }
  .btn-group .btn      { width: 100%; justify-content: center; }

  /* Hero CTA buttons stay side-by-side even on mobile */
  .hero__content .btn-group           { flex-direction: row; flex-wrap: nowrap; }
  .hero__content .btn-group .btn      { width: auto; }

  .trust-bar__item { min-width: 100%; }
}

/* ── 27. PRINT ────────────────────────────────────────────── */
@media print {
  .navbar, .footer, .cta-banner { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   REAL PHOTO STYLES  (added by images-update.js)
═══════════════════════════════════════════════════════════ */

/* Logo image */
.navbar__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 220px;
}

/* Hero doctor photo — old class kept for reference, no longer used */

/* Split-visual real photos */
.split-visual--photo {
  padding: 0;
  border: none;
  overflow: hidden;
  background: none;
}
.split-visual--photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius-lg);
}

/* About doctor photo */
.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Clinic photo strip (two photos side by side) */
.clinic-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0 0;
}
.clinic-photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  display: block;
  box-shadow: var(--shadow);
}

/* ── PROCESS TIMELINE (treatment-process.html) ──────────── */
.process-timeline {
  position: relative;
  padding: 20px 0 40px;
}

/* Central connector line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,199,44,0.3) 4%, rgba(255,199,44,0.3) 96%, transparent 100%);
  z-index: 0;
}

/* Each step row: [num col] [dot col] [text col] */
.process-step {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: start;
  margin-bottom: 56px;
  position: relative;
}
.process-step:last-child { margin-bottom: 0; }

/* Number column — default (odd): right-aligned toward center */
.ps-num-col {
  grid-column: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: 20px;
}

/* Center dot column */
.ps-dot-col {
  grid-column: 2;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  position: relative;
  z-index: 1;
}

.ps-dot {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,199,44,0.18), 0 0 0 9px rgba(255,199,44,0.07);
  flex-shrink: 0;
}

/* Text content column — default (odd): left-aligned */
.ps-text-col {
  grid-column: 3;
  padding-left: 20px;
  padding-bottom: 16px;
}

/* Big step number */
.ps-num {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 0.85;
  display: block;
  user-select: none;
}

.ps-text-col h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.ps-text-col p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 0;
}

/* ── EVEN steps: text LEFT, number RIGHT ─────────────────── */
.process-step--flip .ps-num-col {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 20px;
}
.process-step--flip .ps-dot-col {
  grid-column: 2;
  grid-row: 1;
}
.process-step--flip .ps-text-col {
  grid-column: 1;
  grid-row: 1;
  padding-left: 0;
  padding-right: 20px;
}

/* ── Category badge tags ─────────────────────────────────── */
.ps-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ps-tag--clinic        { background: var(--yellow);  color: var(--black); }
.ps-tag--digital       { background: var(--black);   color: var(--white); }
.ps-tag--manufacturing { background: #1D4ED8;         color: #fff; }
.ps-tag--home          { background: #15803D;         color: #fff; }
.ps-tag--ifrequired    { background: #D1D5DB;         color: #374151; }
.ps-tag--longterm      { background: #6D28D9;         color: #fff; }

/* ── Mobile: stacked vertically with left border line ────── */
@media (max-width: 768px) {
  .process-timeline::before { display: none; }
  .process-timeline {
    border-left: 3px solid rgba(255,199,44,0.35);
    padding-left: 20px;
    margin-left: 12px;
  }
  .process-step,
  .process-step--flip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
  }
  .ps-num-col,
  .process-step--flip .ps-num-col {
    order: 1;
    justify-content: flex-start;
    padding: 0;
  }
  .ps-dot-col,
  .process-step--flip .ps-dot-col {
    display: none;
  }
  .ps-text-col,
  .process-step--flip .ps-text-col {
    order: 2;
    padding: 0;
    text-align: left;
  }
  .ps-num { font-size: 3.5rem; }
}

/* Section with a subtle background photo */
.section--bg-photo {
  position: relative;
  isolation: isolate;
}
.section--bg-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-photo-url);
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: -1;
}

/* Page-hero with a real background photo */
.page-hero--photo {
  background-image: var(--page-hero-photo-url, none);
  background-size: cover;
  background-position: center;
}

/* Blog card image with a real photo */
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Article hero image */
.article-image img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

/* Technology split section (inside invisalign.html) */
.tech-photo {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.tech-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .clinic-photo-strip { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero__content  { max-width: 100%; }
  .navbar__logo-img { height: 38px; }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS PAGE — Google Review Card Style
═══════════════════════════════════════════════════════════ */

/* Page background */
.reviews-page { background: #F8F8F8; }

/* ── Google rating bar ──────────────────────────────────── */
.google-rating-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex-wrap: nowrap;
  box-sizing: border-box;
  width: 100%;
}
.grb__logo { width: 28px; height: 28px; flex-shrink: 0; }
.grb__label { font-weight: 700; font-size: 0.88rem; color: #3c4043; white-space: nowrap; }
.grb__divider { width: 1px; height: 28px; background: #e0e0e0; flex-shrink: 0; }
.grb__stars { display: flex; align-items: center; gap: 1px; }
.grb__star { width: 18px; height: 18px; }
.grb__score { font-weight: 700; font-size: 1.05rem; color: #1a1a1a; white-space: nowrap; }
.grb__count { font-size: 0.8rem; color: #70757a; white-space: nowrap; }
.grb__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 1.5px solid #dadce0; border-radius: 8px;
  padding: 6px 14px; font-size: 0.8rem; font-weight: 600; color: #1a73e8;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background 0.15s, border-color 0.15s; font-family: var(--font-body);
  margin-left: auto;
}
.grb__btn:hover { background: #f0f6ff; border-color: #1a73e8; }

/* ── Filter tabs ────────────────────────────────────────── */
.review-filter-tabs {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px; border: 1.5px solid #dadce0; border-radius: 50px;
  font-size: 0.84rem; font-weight: 600; cursor: pointer;
  background: #fff; color: #3c4043;
  transition: all 0.15s; font-family: var(--font-body); white-space: nowrap;
}
.filter-tab:hover { border-color: #1a1a1a; color: #1a1a1a; }
.filter-tab.active { background: var(--yellow); border-color: var(--yellow); color: #1a1a1a; }

/* ── Results count ──────────────────────────────────────── */
.review-count-bar {
  font-size: 0.82rem; color: #70757a; margin-bottom: 20px;
}

/* ── Reviews grid ───────────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  align-items: stretch;
  transition: opacity 0.22s ease;
}
.reviews-grid.fading { opacity: 0; }

/* ── Review card (overwrites any old .testimonial-item) ─── */
.testimonial-item {
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #f0f0f0;
}
.testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* Card header */
.rc-header { display: flex; align-items: center; gap: 12px; }
.rc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
  flex-shrink: 0; letter-spacing: 0.02em; text-transform: uppercase;
}
.rc-avatar--yellow { color: #1a1a1a !important; }
.rc-name { font-weight: 700; font-size: 0.88rem; color: #1a1a1a; line-height: 1.3; }
.rc-role { font-size: 0.74rem; color: #70757a; margin-top: 2px; }

/* Stars + Google G row */
.rc-stars-row {
  display: flex; align-items: center; justify-content: space-between;
}
.rc-stars { display: flex; gap: 2px; }
.rc-star { width: 16px; height: 16px; }
.rc-g-icon { width: 18px; height: 18px; opacity: 0.75; }

/* Review body */
.rc-body {
  font-size: 0.87rem; color: #3c4043; line-height: 1.68;
  flex: 1; position: relative; padding-left: 18px;
}
.rc-body::before {
  content: '\201C';
  position: absolute; left: 0; top: -4px;
  font-size: 2.2rem; color: var(--yellow);
  font-family: Georgia, serif; line-height: 1;
}

/* Card footer */
.rc-footer {
  font-size: 0.7rem; color: #bbb; letter-spacing: 0.03em;
  border-top: 1px solid #f5f5f5; padding-top: 10px; margin-top: auto;
  display: flex; align-items: center; gap: 6px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .google-rating-bar { flex-wrap: wrap; padding: 12px 14px; gap: 10px; }
  .grb__count { flex: none; width: 100%; order: 5; }
  .grb__btn { margin-left: 0; width: 100%; justify-content: center; order: 6; }
  .review-filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 13px; font-size: 0.78rem; }
}

/* ============================================================
   LANGUAGE TOGGLE & ARABIC (RTL) SUPPORT
   ============================================================ */

/* ── Language Toggle Button ──────────────────────────────── */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px; padding: 5px 13px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75); cursor: pointer; flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  font-family: var(--font-body);
}
.lang-toggle:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255,199,44,0.08);
}
.lang-toggle .lt-globe { font-size: 0.85rem; line-height: 1; }
.lang-toggle .lt-label { letter-spacing: 0.1em; }

/* ── Arabic Font ─────────────────────────────────────────── */
body.lang-ar,
body.lang-ar h1, body.lang-ar h2, body.lang-ar h3, body.lang-ar h4,
body.lang-ar .hero__badge, body.lang-ar .section-label,
body.lang-ar .section-title, body.lang-ar .card__title,
body.lang-ar .btn, body.lang-ar .filter-tab,
body.lang-ar .navbar__menu, body.lang-ar .navbar__mobile {
  font-family: 'Tajawal', 'Arial', sans-serif;
}

/* ── RTL layout fixes ────────────────────────────────────── */
[dir="rtl"] .hero__content {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

[dir="rtl"] .section-divider {
  margin-left: auto;
  margin-right: 0;
}
[dir="rtl"] .split-section {
  direction: rtl;
}
[dir="rtl"] .benefits-list,
[dir="rtl"] .who-for-tags {
  direction: rtl;
}
[dir="rtl"] .faq-question {
  flex-direction: row-reverse;
}
[dir="rtl"] .trust-bar__item {
  flex-direction: row-reverse;
  text-align: right;
}
[dir="rtl"] .footer__logo,
[dir="rtl"] .footer__contact-item {
  flex-direction: row-reverse;
}
[dir="rtl"] .step-card {
  text-align: right;
}
[dir="rtl"] .step-number {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 640px) {
  .lang-toggle { padding: 4px 8px; font-size: 0.7rem; }
}

/* ── Arabic (RTL) Overrides ─────────────────────────── */
.lang-ar {
  font-family: 'Tajawal', sans-serif;
  font-size: 17px;
}
.lang-ar h1, .lang-ar h2, .lang-ar h3, .lang-ar h4 {
  font-family: 'Tajawal', sans-serif;
  font-size: calc(1em * 1.1);
}
[dir="rtl"] .navbar__inner {
  flex-direction: row;
}
[dir="rtl"] .navbar__menu {
  flex-direction: row;
}
[dir="rtl"] .navbar__mobile {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .btn-group {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer__grid {
  direction: rtl;
}
[dir="rtl"] .footer__bottom {
  flex-direction: row-reverse;
}
[dir="rtl"] .trust-bar__inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .cards-grid {
  direction: rtl;
}
[dir="rtl"] .steps-grid {
  direction: rtl;
}
[dir="rtl"] .testimonials-grid {
  direction: rtl;
}
[dir="rtl"] .footer__contact-text {
  text-align: right;
}
[dir="rtl"] .footer__links {
  text-align: right;
}
[dir="rtl"] .section-label,
[dir="rtl"] .section-title,
[dir="rtl"] .section-subtitle {
  text-align: right;
}
[dir="rtl"] .text-center .section-label,
[dir="rtl"] .text-center .section-title,
[dir="rtl"] .text-center .section-subtitle {
  text-align: center;
}
[dir="rtl"] .navbar__logo {
  margin-left: 0;
  margin-right: 0;
}
[dir="rtl"] .card {
  text-align: right;
}
[dir="rtl"] .benefit-item {
  flex-direction: row-reverse;
}
[dir="rtl"] .who-for-tags {
  justify-content: flex-end;
}
[dir="rtl"] .testimonial-card {
  text-align: right;
}
[dir="rtl"] .process-step .ps-text-col {
  text-align: right;
}
[dir="rtl"] .contact-info-item {
  flex-direction: row-reverse;
}
[dir="rtl"] .contact-info-text {
  text-align: right;
}
[dir="rtl"] .trust-bar__text {
  text-align: right;
}
[dir="rtl"] .about-split {
  flex-direction: row-reverse;
}

/* ── 22. BEFORE/AFTER SLIDER ──────────────────────────────── */
.slider-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.slider-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.slider-container {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 4/3;
  background: #111;
  touch-action: none;
}
.slider-before,
.slider-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.slider-before img,
.slider-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-after { clip-path: inset(0 50% 0 0); }

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  z-index: 11;
  color: var(--primary);
  pointer-events: none;
}
.slider-label {
  position: absolute;
  bottom: 10px;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 9;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.label-before { right: 12px; left: auto; background: rgba(0,0,0,0.55); color: #fff; }
.label-after  { left: 12px; right: auto; background: rgba(255,199,44,0.92); color: #1a3a5c; }

.slider-card .case-info { padding: 14px 18px 16px; }
.slider-card .case-badge {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #eef3ff;
  color: var(--primary);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 7px;
}
.slider-card .case-title {
  font-size: 0.93rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--text);
  margin: 0 0 4px;
}
.slider-card .case-meta {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin: 0;
}

/* Stats bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 48px;
  flex-wrap: wrap;
}
.stats-bar__item { text-align: center; }
.stats-bar__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.stats-bar__label {
  font-size: 0.78rem;
  color: var(--gray-text);
  display: block;
  margin-top: 6px;
}

/* Cases stats banner */
.cases-stats-banner {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin-bottom: 36px;
  gap: 0;
}
.csb__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 180px;
  padding-right: 28px;
}
.csb__logo {
  width: 140px;
  height: auto;
  object-fit: contain;
}
.csb__sub {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin: 0;
  max-width: 180px;
}
.csb__divider {
  width: 1px;
  height: 60px;
  background: #e8e8e8;
  flex-shrink: 0;
}
.csb__stats {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 28px;
  gap: 0;
}
.csb__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 12px;
}
.csb__stat-divider {
  width: 1px;
  height: 40px;
  background: #e8e8e8;
  flex-shrink: 0;
}
.csb__icon {
  width: 28px;
  height: 28px;
  color: #FFC72C;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.csb__number {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.csb__label {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.3;
  display: block;
}
.csb__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-left: 28px;
  min-width: 160px;
}
.csb__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #f8f9ff;
  border: 1px solid #d0d8f0;
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}
.csb__btn:hover {
  background: #eef1fb;
  border-color: #0061a3;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,97,163,0.12);
}
.csb__btn-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
}
.csb__btn svg { color: #0061a3; flex-shrink: 0; }
.csb__btn-sub {
  font-size: 10px;
  color: #0061a3;
  text-align: center;
  margin: 0;
  letter-spacing: 0.3px;
}
@media (max-width: 900px) {
  .cases-stats-banner {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
  }
  .csb__left {
    width: 100%;
    padding-right: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
  }
  .csb__divider { display: none; }
  .csb__stats {
    width: 100%;
    padding: 0;
    justify-content: space-around;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
  }
  .csb__right {
    width: 100%;
    padding-left: 0;
    align-items: center;
  }
  .csb__btn { max-width: 220px; }
}
@media (max-width: 480px) {
  .csb__stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .csb__stat { width: 45%; flex: none; }
  .csb__stat-divider { display: none; }
  .csb__number { font-size: 16px; }
}

/* Cases grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.slider-card.hidden { display: none; }

@media (max-width: 900px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { gap: 24px; }
  .stats-bar__number { font-size: 1.6rem; }
}
@media (max-width: 600px) {
  .cases-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 16px; }
  .slider-handle { width: 32px; height: 32px; }
}

/* ===========================
   SERVICE AREAS SECTION
   =========================== */
.service-areas-section {
  background: #f8f8f8;
  padding: 80px 0;
}
.service-areas-section .section-label {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}
.service-areas-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.service-areas-section .section-subtitle {
  max-width: 680px;
  margin: 0 auto 48px;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.region-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 20px;
}
.region-card.featured {
  grid-column: span 3;
  background: #1a1a1a;
  border-color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.region-card.featured .region-name {
  color: #FFC72C;
  white-space: nowrap;
  margin-bottom: 0;
  min-width: 140px;
}
.region-card.featured .cities-list {
  flex: 1;
}
.region-card.featured .city-tag {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.region-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.city-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #444;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
}
.service-areas-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px 20px;
  max-width: 700px;
  margin: 0 auto;
}
.service-areas-note p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .region-card.featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .service-areas-section { padding: 60px 0; }
  .regions-grid { grid-template-columns: 1fr; }
  .region-card.featured { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 12px; }
  .service-areas-section .section-title { font-size: 1.5rem; }
}

/* ===========================
   BEYOND BORDERS — PART A
   =========================== */
.beyond-borders-section {
  background: #ffffff;
  padding: 80px 0 40px;
}
.beyond-borders-section .section-header {
  max-width: 700px;
  margin: 0 auto 0;
}
.beyond-borders-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.section-subtext {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.remote-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 32px;
}
.remote-care-card {
  background: #f8f8f8;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.remote-care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.rcc__icon {
  width: 56px;
  height: 56px;
  background: #f0f0f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #1a1a1a;
}
.remote-care-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}
.remote-care-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.intl-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #1a1a1a;
  border-radius: 14px;
  padding: 24px 32px;
  margin-top: 8px;
}
.intl-banner__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,199,44,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFC72C;
  flex-shrink: 0;
}
.intl-banner__text { flex: 1; }
.intl-banner__text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
}
.intl-banner__text p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.6;
}
.intl-banner__btn {
  background: #FFC72C;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.intl-banner__btn:hover { background: #e6b020; }

/* ===========================
   OMAN MAP — PART B
   =========================== */
.oman-map-section {
  background: #f8f8f8;
  padding: 60px 0 80px;
}
.oman-map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.map-heading {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}
.map-subtext {
  font-size: 14px;
  color: #666;
  margin: 0 0 24px 0;
  line-height: 1.6;
}
.oman-map-svg-container {
  background: white;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.oman-map-svg { width: 100%; height: auto; }
.cities-by-region {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.region-group {
  background: white;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid #eee;
}
.region-group__title {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 8px 0;
}
.region-group__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.city-pill {
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #444;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.city-pill.primary {
  background: #FFC72C;
  border-color: #FFC72C;
  color: #1a1a1a;
  font-weight: 600;
}
.city-pill.intl {
  background: #f0f4ff;
  border-color: #c7d4f0;
  color: #3355aa;
}
.region-group.intl-group {
  border-color: #c7d4f0;
  background: #f8faff;
}
.region-group.intl-group .region-group__title { color: #3355aa; }

/* Responsive */
@media (max-width: 900px) {
  .remote-care-grid { grid-template-columns: repeat(2, 1fr); }
  .oman-map-layout { grid-template-columns: 1fr; gap: 32px; }
  .intl-banner { flex-wrap: wrap; gap: 16px; }
  .intl-banner__btn { width: 100%; text-align: center; }
}
@media (max-width: 600px) {
  .remote-care-grid { grid-template-columns: 1fr; }
  .beyond-borders-section { padding: 60px 0 32px; }
  .oman-map-section { padding: 48px 0 60px; }
  .intl-banner { padding: 20px; }
}

/* ============================================================
   MOBILE RESPONSIVE FIXES — All 5 issues
   ============================================================ */

/* ── GLOBAL: prevent horizontal overflow on all pages ──────── */
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  /* Ensure all block elements respect container width */
  .container {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  p, h1, h2, h3, h4, h5 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
}

/* ── FIX 1: TRUST BAR — horizontal rows on mobile ─────────── */
@media (max-width: 640px) {

  /* Outer container: single column with no gap (row borders act as dividers) */
  .trust-bar {
    padding: 16px 20px;
  }
  .trust-bar__inner {
    flex-direction: column;
    gap: 0;
  }
  .trust-bar__divider {
    display: none;
  }

  /* Each item: icon LEFT, text RIGHT — horizontal row */
  .trust-bar__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    min-width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
  .trust-bar__item:last-child {
    border-bottom: none;
  }

  /* Icon: no bottom margin (it's now in a row) */
  .trust-bar__icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trust-bar__icon svg {
    width: 22px;
    height: 22px;
  }

  /* Main stat value — larger, readable */
  .trust-bar__text strong {
    font-size: 17px;
    font-weight: 700;
    display: block;
    margin: 0;
    line-height: 1.2;
  }

  /* Subtitle text — minimum 14px */
  .trust-bar__text span {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
  }
}

/* ── FIX 2A: HERO — text to bottom, not over face ────────── */
@media (max-width: 640px) {

  .hero {
    min-height: 88vh;
    background-position: center top;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }

  /* Remove the fixed overlay — replace with bottom gradient */
  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.65) 45%,
      rgba(0,0,0,0.10) 100%
    );
  }

  /* Push content to bottom */
  .hero > .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    padding-bottom: 32px;
  }

  .hero__content {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero__sub {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  /* Hero mini-stats below title — smaller and tighter */
  .hero__stats {
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .hero__stat-number {
    font-size: 1.3rem;
  }
  .hero__stat-label {
    font-size: 0.72rem;
  }
}

/* ── FIX 2B: HERO BUTTONS — full width stacked ────────────── */
@media (max-width: 640px) {

  /* Override the side-by-side rule for hero buttons */
  .hero__content .btn-group {
    flex-direction: column !important;
    flex-wrap: wrap !important;
    gap: 10px;
    width: 100%;
  }

  .hero__content .btn-group .btn {
    width: 100% !important;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    white-space: normal;
    box-sizing: border-box;
  }
}

/* ── FIX 4: CSB STATS — 3 items in clean single column ───── */
@media (max-width: 480px) {

  .csb__stats {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 0;
    justify-content: center;
    padding-bottom: 0;
    border-bottom: none;
    width: 100%;
  }

  .csb__stat {
    width: 100% !important;
    flex: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .csb__stat:last-child {
    border-bottom: none;
  }

  .csb__stat-divider {
    display: none;
  }

  .csb__number {
    font-size: 20px;
  }
}

/* ── FIX 5: FILTER TABS — proper wrapping and spacing ──────── */
@media (max-width: 768px) {

  /* The before-after filter tabs container */
  .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    margin-bottom: 0;
    border-bottom: none;
    row-gap: 8px;
  }

  /* Remove any pseudo-element separator */
  .filter-tabs::after,
  .filter-tabs::before {
    display: none;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 999px;
    flex-shrink: 0;
  }

  /* Remove gap between filter tabs and cases grid */
  .cases-grid {
    margin-top: 16px !important;
    padding-top: 0;
    border-top: none;
  }
}

/* ── RTL overrides for new mobile layout ──────────────────── */
@media (max-width: 640px) {
  body.lang-ar .trust-bar__item {
    flex-direction: row-reverse;
    text-align: right;
  }
  body.lang-ar .trust-bar__text strong,
  body.lang-ar .trust-bar__text span {
    text-align: right;
  }
  body.lang-ar .hero__content .btn-group {
    align-items: stretch;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* FLOATING WHATSAPP BUTTON                                    */
/* ═══════════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float span,
.whatsapp-float__label {
  display: none !important;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 20px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 16px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  [dir="rtl"] .whatsapp-float {
    right: auto;
    left: 16px;
  }
}

.whatsapp-tooltip {
  position: fixed;
  bottom: 104px;
  right: 20px;
  z-index: 9998;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-size: 13px;
  color: #1a1a1a;
  max-width: 220px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  animation: tooltipIn 0.4s ease;
  border-left: 3px solid #25D366;
}

.whatsapp-tooltip button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #999;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  margin-left: auto;
}

.whatsapp-tooltip.hidden {
  display: none;
}

@keyframes tooltipIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .whatsapp-tooltip {
    bottom: 88px;
    right: 16px;
    max-width: 200px;
  }
}

[dir="rtl"] .whatsapp-tooltip {
  right: auto;
  left: 20px;
  border-left: none;
  border-right: 3px solid #25D366;
}

/* ═══════════════════════════════════════════════════════════ */
/* FORM SUCCESS MESSAGE                                         */
/* ═══════════════════════════════════════════════════════════ */

.form-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  gap: 16px;
  background: #f8fff8;
  border-radius: 16px;
  border: 1px solid #d4edda;
}

.form-success-msg h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.form-success-msg p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════ */
/* TRUST BAR — SINGLE ROW                                     */
/* ═══════════════════════════════════════════════════════════ */

.trust-bar-section {
  background: #1a1a1a;
  border-top: 2px solid #FFC72C;
  border-bottom: 2px solid #FFC72C;
  padding: 20px 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.trust-bar-inner {
  width: 100%;
  overflow: hidden;
}

.trust-bar-label {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin: 0 0 16px 0;
  font-family: inherit;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #1a1a1a, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #1a1a1a, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  padding: 0 28px;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.trust-logo-link:hover {
  opacity: 1;
  transform: scale(1.06);
}

.trust-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.trust-logo.keep-colour {
  filter: none;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .trust-bar-section {
    padding: 16px 0;
  }
  .trust-bar-label {
    font-size: 9px;
    margin-bottom: 12px;
  }
  .trust-logo {
    height: 30px;
    max-width: 120px;
  }
  .marquee-track {
    gap: 40px;
    animation-duration: 25s;
  }
  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 40px;
  }
}

/* RTL — keep marquee scrolling LTR (direction: ltr on wrapper fixes overflow clip origin) */
[dir="rtl"] .marquee-wrapper,
[dir="rtl"] .marquee-track {
  direction: ltr;
}

/* ── WORLD MAP SECTION ─────────────────────────────────── */
.world-map-section {
  background: #f8f8f8;
  padding: 64px 0;
  overflow: hidden;
}

.world-map-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.world-map-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.pin-map-wrap {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  user-select: none;
}

.pin-map-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* ── MAP PINS ─────────────────────────────────────────── */
.ppin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.ppin-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #FFC72C;
  border: 2.5px solid white;
  box-shadow: 0 1px 5px rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
  transition: transform 0.18s ease;
}

.ppin:hover .ppin-dot {
  transform: scale(1.4);
}

.ppin-dot-orange { background: #e65c00; }
.ppin-dot-lg     { width: 16px; height: 16px; }
.ppin-dot-xl     { width: 20px; height: 20px; }

/* Always-visible country labels */
.ppin-lbl {
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  background: rgba(255,255,255,0.88);
  padding: 1px 5px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 3;
  line-height: 1.5;
}

.ppin-lbl-orange { color: #c44400; }

.ppin-lbl.lbl-right       { left: 13px;  top: 50%; transform: translateY(-50%); }
.ppin-lbl.lbl-left        { right: 13px; top: 50%; transform: translateY(-50%); }
.ppin-lbl.lbl-above       { bottom: 13px; left: 50%; transform: translateX(-50%); }
.ppin-lbl.lbl-above-right { bottom: 13px; left: 0; }
.ppin-lbl.lbl-above-left  { bottom: 13px; right: 0; }
.ppin-lbl.lbl-below       { top: 13px;  left: 50%; transform: translateX(-50%); }
.ppin-lbl.lbl-below-left  { top: 13px;  right: 0; }

/* Hover card (tooltip) */
.ppin-card {
  position: absolute;
  background: white;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, visibility 0.16s ease;
  transform: translate(-50%, calc(-100% - 14px));
  z-index: 50;
  white-space: nowrap;
  min-width: 170px;
  pointer-events: auto;
}

.ppin-card.visible {
  opacity: 1;
  visibility: visible;
}

.ppin-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.ppin-card-flag {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.ppin-card-body {
  flex: 1;
  min-width: 0;
}

.ppin-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.ppin-card-badge {
  background: #FFC72C;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  min-width: 24px;
  height: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  flex-shrink: 0;
}

/* Country flag cards */
.countries-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.country-flag-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.country-flag-pill:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: #FFC72C;
}

.country-flag-pill .flag-img {
  width: 32px;
  height: 21px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.flag-img {
  width: 32px;
  height: 21px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.country-name {
  flex: 1;
  white-space: nowrap;
}

.lecture-count-badge {
  background: #FFC72C;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.timeline-flag-img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.lecture-flag {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ppin-dot     { width: 10px; height: 10px; }
  .ppin-dot-lg  { width: 12px; height: 12px; }
  .ppin-dot-xl  { width: 15px; height: 15px; }
  .ppin-lbl     { font-size: 7px; padding: 1px 3px; }
  .ppin-card    { min-width: 140px; padding: 8px 10px; gap: 8px; }
  .ppin-card-name { font-size: 12px; }
  .countries-flags { gap: 8px; }
  .country-flag-pill { min-width: 100px; padding: 7px 10px; font-size: 12px; }
}

/* ── LECTURES CTA ──────────────────────────────────────── */
.lectures-cta-section {
  background: #1a1a1a;
  padding: 80px 0;
  text-align: center;
}

.lectures-cta-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 16px;
}

.lectures-cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 16px auto;
  line-height: 1.7;
}

.speaking-email-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 28px 0 8px 0;
  display: block;
}

.speaking-email-link {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #FFC72C;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,199,44,0.3);
  padding-bottom: 3px;
  transition: border-color 0.2s ease;
  margin-bottom: 40px;
}

.speaking-email-link:hover {
  border-color: #FFC72C;
}

.lectures-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .lectures-cta-section h2 {
    font-size: 24px;
  }
  .speaking-email-link {
    font-size: 16px;
  }
  .lectures-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ── LECTURES PAGE ─────────────────────────────────────── */
.lectures-section {
  background: #ffffff;
  padding: 80px 0;
}

.lectures-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.lectures-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.lectures-timeline::before {
  content: '';
  position: absolute;
  left: 116px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f0f0f0;
}

.year-group {
  margin-bottom: 48px;
  position: relative;
}

.year-heading {
  font-size: 28px;
  font-weight: 700;
  color: #FFC72C;
  position: absolute;
  left: 0;
  top: 8px;
  width: 96px;
  text-align: right;
}

.year-cards {
  margin-left: 140px;
}

.lecture-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-align: left !important;
}

.lecture-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateX(4px);
}

.lecture-card::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFC72C;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #FFC72C;
}

.lecture-month {
  font-size: 11px;
  font-weight: 600;
  color: #FFC72C;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-align: left !important;
}

.lecture-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0 0 10px 0;
  text-align: left !important;
}

.lecture-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: left !important;
  justify-content: flex-start !important;
}

.lecture-location,
.lecture-org {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #666;
}

.lecture-org {
  color: #999;
}

.lecture-flag {
  font-size: 16px;
  line-height: 1;
}

.lecture-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #FFC72C;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: gap 0.2s ease;
  text-align: left !important;
}

.lecture-link:hover {
  gap: 8px;
  text-decoration: underline;
}

@media (min-width: 769px) {
  .lectures-timeline::before {
    left: 130px;
  }
  .year-heading {
    width: 100px;
    padding-right: 0;
  }
  .year-cards {
    margin-left: 160px;
  }
  .lecture-card::before {
    left: -38px;
  }
}

@media (max-width: 768px) {
  .lectures-timeline::before {
    left: 16px;
  }
  .year-heading {
    position: static;
    width: auto;
    text-align: left;
    margin-bottom: 16px;
    display: block;
  }
  .year-cards {
    margin-left: 32px;
  }
  .lecture-card::before {
    left: -22px;
  }
  .lecture-meta {
    gap: 12px;
  }
}

/* ═══════════════════════════════ */
/* PROVIDER BADGES STRIP          */
/* ═══════════════════════════════ */

.provider-badges {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0 20px;
  text-align: left;
}

.badges-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 18px 0;
  font-family: inherit;
}

.badges-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.85;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 6px 8px;
}

.badge-item:hover {
  transform: translateY(-4px) scale(1.05);
  opacity: 1;
}

.badge-img {
  height: 96px;
  width: auto;
  max-width: 192px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)) drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

@media (max-width: 900px) {
  .badge-img {
    height: 77px;
    max-width: 144px;
  }
  .badges-row {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .badge-img {
    height: 62px;
    max-width: 115px;
  }
  .badges-row {
    gap: 14px;
  }
  .provider-badges {
    padding: 20px 16px 16px;
  }
}

/* ── Align Global Gallery Feature Box (about.html) ── */
.gallery-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: transparent;
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid rgba(255,199,44,0.4);
  margin: 48px 0 0 0;
}
.gallery-feature-box:hover {
  box-shadow: none;
}
.gfb__icon {
  width: 52px;
  height: 52px;
  background: #FFC72C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a1a1a;
}
.gfb__title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.gfb__body {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0 0 12px 0;
}
.gfb__link {
  font-size: 13px;
  font-weight: 600;
  color: #FFC72C;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.gfb__link:hover {
  text-decoration: underline;
}

/* ── Align Global Gallery link (before-after.html csb) ── */
.csb__gallery-link {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.csb__gallery-link a {
  font-size: 13px;
  font-weight: 600;
  color: #4a90d9;
  text-decoration: none;
}
.csb__gallery-link a:hover {
  text-decoration: underline;
}

/* ── Blog Post Side-by-Side Images (blog-post-6) ── */
.blog-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 40px 0;
  border-radius: 16px;
  overflow: hidden;
}

.blog-image-fig {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pair-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: #f0f0f0;
  transition: transform 0.4s ease;
}

.blog-pair-img:hover { transform: scale(1.03); }

@media (max-width: 768px) {
  .blog-image-pair { grid-template-columns: 1fr; gap: 12px; }
}

/* ── Blog Pullquote ── */
.blog-pullquote {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-style: italic;
}

.blog-pullquote p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 8px;
}

.blog-pullquote cite {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--black-soft);
}

/* ── Blog CTA Buttons ── */
.blog-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.blog-cta-btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.blog-cta-btn-yellow {
  background: #FFC72C;
  color: #1a1a1a;
}

.blog-cta-btn-yellow:hover {
  background: #e6b020;
  color: #1a1a1a;
}

/* ── Blog Hero Image (blog-post-7) ── */
.blog-hero-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #f0f0f0;
  text-align: center;
}

.blog-hero-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  background: #f0f0f0;
}

/* ── Global rule — blog images never crop ── */
.blog-hero-img,
.blog-pair-img,
.post-featured-img,
[class*="blog-img"],
[class*="post-img"] {
  object-fit: contain !important;
  height: auto !important;
  background: #f0f4f8;
}

/* ── Blog Info Box (editors / key facts) ── */
.blog-info-box {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid #eee;
  border-left: 4px solid #FFC72C;
  margin: 24px 0;
}

.bib__title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.bib__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bib__list li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  padding-left: 16px;
  border-left: 2px solid #eee;
}

.bib__list strong { color: #1a1a1a; }

[dir="rtl"] .blog-info-box {
  border-left: none;
  border-right: 4px solid #FFC72C;
}

[dir="rtl"] .bib__list li {
  padding-left: 0;
  padding-right: 16px;
  border-left: none;
  border-right: 2px solid #eee;
}
