/* ============================================================
   Unified Home Cinematic Style System
   ============================================================ */

:root {
  --color-bg: #050505;
  --color-surface: #131313;
  --color-surface-alt: #1c1b1b;
  --color-text: #ffffff;
  --color-text-muted: #cccccc;
  --color-line: #444748;
  --color-accent: #F8C8DC;

  --font-display: 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Inter', sans-serif;
}

/* ===== Custom Cursor Disabled ===== */

/* ===== Main cinematic wrapper ===== */
.home-cinematic-wrapper {
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  position: relative;
  z-index: 10;
  width: 100%;
  overflow-x: hidden;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden !important;
}


.home-cinematic-wrapper a {
  color: inherit;
  text-decoration: none;
}

/* ===== Video background (Cinematic Dissolve) ===== */
.cinematic-video-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: var(--color-bg);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.video-sequence {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.45);
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.video-sequence.active {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .65),
      rgba(0, 0, 0, .35),
      rgba(0, 0, 0, .75));
  z-index: 2;
}

/* ===== Buttons & Accents ===== */
.btn-outline-premium {
  border: 1px solid #F8C8DC !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.btn-outline-premium:hover {
  background: #F8C8DC !important;
  color: #000000 !important;
  border-color: #F8C8DC !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

.btn-premium-action {
  border: 1px solid #F8C8DC;
  color: #b06080 !important;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(248, 200, 220, 0.15);
}

.btn-premium-action:hover {
  background-color: #F8C8DC;
  border-color: #F8C8DC;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(248, 200, 220, 0.35);
}

/* ===== Scroll progress dots ===== */
.scroll-progress {
  position: fixed;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.progress-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  transition: all .5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  padding: 0;
}

.progress-dot.active {
  background: var(--color-accent);
  transform: scale(2.2);
}

@media (max-width: 991.98px) {
  .scroll-progress {
    display: none !important;
  }
}

/* ===== Cinematic Sections ===== */
.content-section {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 5vw;
}

.hero-intro-section {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 5vw 5rem 5vw;
}

.hero-intro-section h1 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
}

.hero-intro-section .label-caps {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.825rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: none !important;
  color: #ffffff !important;
  margin-bottom: 24px !important;
}

.hero-intro-section p {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: rgb(186, 186, 186) !important;
  max-width: 750px !important;
  margin-bottom: 30px !important;
}

.hero-intro-section .btn-outline-premium {
  border: 1px solid #F8C8DC !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  background: transparent !important;
  display: inline-block !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

.hero-intro-section .btn-outline-premium:hover {
  background: #F8C8DC !important;
  color: #000000 !important;
  border-color: #F8C8DC !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

@media (max-width: 767.98px) {
  .content-section {
    padding: 6rem 1.5rem;
  }
}

.content-fade-in {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.label-caps {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.825rem !important;
  letter-spacing: 0.14em !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: none !important;
}

/* ===== Premium Scroll Down Indicator ===== */
.scroll-hint-wrapper {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-hint-wrapper:hover {
  transform: translateX(-50%) translateY(3px);
}

.scroll-hint-wrapper .scroll-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
}

.scroll-hint-wrapper:hover .scroll-text {
  color: #ffffff;
}

.scroll-hint-wrapper .scroll-hint-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.scroll-hint-wrapper:hover .scroll-hint-arrow {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.scroll-hint-wrapper .arrow-icon {
  font-size: 0.75rem;
  animation: pulse-arrow 1.8s infinite ease-in-out;
}

@keyframes pulse-arrow {

  0%,
  100% {
    transform: translateY(-2px);
    opacity: 0.5;
  }

  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}

/* ===== Header Transparent & Sticky States ===== */
header.main-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

header.main-header .navbar {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

header.main-header:not(.fixed) .navbar .nav-link,
header.main-header:not(.fixed) .navbar .nav-link:visited,
header.main-header:not(.fixed) .navbar .nav-link:hover,
header.main-header:not(.fixed) .navbar .nav-link.active,
header.main-header:not(.fixed) .navbar .main-menu .navbar-nav .nav-item .nav-link,
header.main-header:not(.fixed) .navbar .main-menu .navbar-nav .nav-item .nav-link:visited,
header.main-header:not(.fixed) .navbar .main-menu .navbar-nav .nav-item:hover>.nav-link,
header.main-header:not(.fixed) .navbar .main-menu .navbar-nav .nav-item.active>.nav-link {
  color: #ffffff !important;
}

header.main-header:not(.fixed) .navbar .nav-link i img,
header.main-header:not(.fixed) .navbar .nav-link i svg path,
header.main-header:not(.fixed) .navbar .nav-link svg path {
  fill: #ffffff !important;
  filter: brightness(0) invert(1) !important;
}

header.main-header:not(.fixed) .navbar .burger-menu span {
  background-color: #ffffff !important;
}

.cta-btn,
a.cta-btn,
header .navbar .cta-btn,
header.main-header .navbar .cta-btn {
  text-decoration: none !important;
}

.cta-btn:hover,
a.cta-btn:hover,
.cta-btn:focus,
a.cta-btn:focus,
header .navbar .cta-btn:hover {
  text-decoration: none !important;
}

header.main-header:not(.fixed) .navbar .cta-btn {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
}

header.main-header:not(.fixed) .navbar .cta-btn svg path {
  fill: #ffffff !important;
}

/* Header fixed scrolled state */
header.main-header.fixed {
  position: fixed !important;
  top: 0 !important;
  background-color: #ffffff !important;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

header.main-header.fixed .navbar {
  background-color: #ffffff !important;
}

header.main-header.fixed .navbar .nav-link {
  color: #000000 !important;
}

header.main-header.fixed .navbar .nav-link svg path {
  fill: #000000 !important;
}

header.main-header.fixed .navbar .burger-menu span {
  background-color: #000000 !important;
}

header.main-header.fixed .navbar .cta-btn {
  color: #000000 !important;
  border-color: #000000 !important;
}

header.main-header.fixed .navbar .cta-btn svg path {
  fill: #000000 !important;
}

header.main-header.nav-hidden {
  transform: translateY(-100%) !important;
}

/* ===== Footer and general layers ===== */
.theme-footer {
  z-index: 20 !important;
  position: relative;
}

#video-bg-layer,
#section-2,
#section-4-content {
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* ============================================================
   Intro Preloader & Three.js Canvas Overhaul Styles
   ============================================================ */

#intro-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: opacity, transform;
}

.preloader-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 960px;
  max-height: 540px;
  filter: brightness(1.15) contrast(1.05);
}

#skip-intro-btn {
  position: absolute;
  bottom: 40px;
  right: 5vw;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  z-index: 1000000;
}

#skip-intro-btn.visible {
  opacity: 0.75;
  pointer-events: auto;
  transform: translateY(0);
}

#skip-intro-btn:hover {
  opacity: 1;
  background-color: #ffffff;
  color: #050505;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* Three.js Container */
#three-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* behind the text (10) but above/overlapping video background layer */
  pointer-events: none;
  mix-blend-mode: screen;
  /* Additive/screen blend for premium overlay on videos */
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

#three-bg-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Let the content float beautifully on top */
.content-section {
  position: relative;
  z-index: 10 !important;
}

/* Beautiful custom card styling for surgery video */
.video-block {
  padding: 100px 0 !important;
  background-color: #050505 !important;
}

.video-block video {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-block.aos-animate video {
  transform: scale(1);
}

/* Gallery Slider text block customization */
.gallery-section {
  background-color: #0c0c0c !important;
  padding: 120px 0 !important;
}

.gallery-section .section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.5;
  color: #e0e0e0;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-slider .slider-item .text-block {
  background: rgba(15, 15, 15, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px !important;
  margin: 15px;
  height: calc(100% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slider .slider-item .text-block p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cccccc !important;
  text-align: center;
}

/* Adjust general layouts for smooth scroll and alignment */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-aos] {
  transition-property: opacity, transform;
}

/* Offer Section (Section 8) Premium Styles */
.offer-section {
  background-color: #050505 !important;
  color: #ffffff !important;
  padding: 120px 0 !important;
}

.offer-section .content-block {
  padding-right: 40px;
}

.offer-section .title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem) !important;
  line-height: 1.5;
  color: #ffffff !important;
  margin-bottom: 30px;
}

.offer-section .link {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 32px;
  border-radius: 40px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.offer-section .link:hover {
  background-color: var(--color-accent);
  color: var(--color-bg) !important;
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(248, 200, 220, 0.3);
}

.offer-section .img-block img {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.offer-section .img-block {
  overflow: hidden;
  border-radius: 24px;
}

.offer-section .img-block:hover img {
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .offer-section .content-block {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

/* ===== CTA Section (Section 7) Premium Overrides ===== */
.cta-section {
  background-color: #050505 !important;
  padding: 100px 50px !important;
}

.cta-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  background-size: cover;
  background-position: center;
}

.cta-wrap::before {
  background-color: rgba(5, 5, 5, 0.65) !important;
}

.cta-section .title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em;
}

.cta-section p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 300;
  font-size: 1.25rem !important;
  color: #e0e0e0 !important;
  line-height: 1.6 !important;
}

.cta-section .cta-btn {
  background-color: var(--color-accent) !important;
  color: var(--color-bg) !important;
  font-family: 'Inter', sans-serif !important;
  text-transform: uppercase;
  font-size: 0.85rem !important;
  letter-spacing: 0.15em;
  font-weight: 500;
  padding: 14px 36px !important;
  border-radius: 40px !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: none !important;
  /* disable simple shake */
}

.cta-section .cta-btn:hover {
  background-color: #ffffff !important;
  color: var(--color-bg) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(248, 200, 220, 0.4) !important;
}

.cta-section .meta-connect h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #cccccc !important;
}

/* ===== Treatment Section (Section 9) Premium Overrides ===== */
.treatment-section {
  background-color: #050505 !important;
  padding: 120px 0 !important;
}

.treatment-section .section-title .title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.3;
  color: #ffffff !important;
}

.treatment-section .treament-box {
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.treatment-section .treament-box .treatment-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.treatment-section .treament-box .treatment-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.treatment-section .treament-box:hover .treatment-bg-img img {
  transform: scale(1.08);
}

.treatment-section .treament-box:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.08);
}

.treatment-section .treament-box .text-block {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #ffffff !important;
  position: relative;
  z-index: 3;
}

.treatment-section .link {
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 32px;
  border-radius: 40px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.treatment-section .link:hover {
  background-color: var(--color-accent);
  color: var(--color-bg) !important;
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(248, 200, 220, 0.3);
}

.treatment-section .button-box {
  justify-content: center;
}

/* ===== Gallery Bottom Section (Conditions quote) ===== */
.gallery-section .content-block {
  max-width: 900px !important;
  margin: 100px auto 0 auto !important;
  padding: 0 15px !important;
}

.gallery-section .content-block .title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-style: italic !important;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem) !important;
  line-height: 1.6 !important;
  color: #e0e0e0 !important;
  margin-bottom: 40px !important;
}

.gallery-section .content-block .button-box {
  justify-content: center !important;
}

.gallery-section .content-block .link {
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  text-transform: uppercase !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.15em !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 12px 32px !important;
  border-radius: 40px !important;
  transition: all 0.4s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.gallery-section .content-block .link:hover {
  background-color: #ffffff !important;
  color: #050505 !important;
  border-color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1) !important;
}

/* ===== Light Theme Overrides (Applied to sections starting from Section 4) ===== */

/* 1. Global section backgrounds & text colors */
.video-block,
.gallery-section,
.gallery-slider-section,
.cta-section,
.offer-section,
.treatment-section,
.awards-section {
  position: relative;
  z-index: 15;
  background-color: #ffffff !important;
  color: #1e1e1e !important;
}

.gallery-section,
.awards-section {
  background-color: #FFF5F7 !important;
  /* Soft pink-white tint */
}

/* 2. Text colors inside the light sections */
.gallery-section .section-title h2,
.gallery-section .content-block .title,
.gallery-slider-section .content-block .title,
.cta-section .title,
.offer-section .title,
.treatment-section .section-title .title,
.awards-section .section-title .title {
  color: #1e1e1e !important;
}

.gallery-slider .slider-item .text-block p {
  color: #1e1e1e !important;
}

.offer-section p {
  color: #2c3e50 !important;
}

/* 3. Cards & containers */
.gallery-slider .slider-item .text-block {
  background: #ffffff !important;
  /* Clean white card background */
  border: 1px solid rgba(248, 200, 220, 0.25) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
}

.treatment-section .treament-box {
  background-color: #111111 !important;
  border: 1px solid rgba(248, 200, 220, 0.2) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

.treatment-section .treament-box:hover {
  border-color: var(--color-accent) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 50px rgba(248, 200, 220, 0.35) !important;
}

/* 4. Link & button hover states inside light sections */
.gallery-section .content-block .link,
.offer-section .link,
.treatment-section .link {
  color: #1e1e1e !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: 40px !important;
  padding: 12px 32px !important;
}

.gallery-section .content-block .link:hover,
.offer-section .link:hover,
.treatment-section .link:hover {
  background-color: var(--color-accent) !important;
  color: #1e1e1e !important;
  border-color: var(--color-accent) !important;
  box-shadow: 0 8px 30px rgba(248, 200, 220, 0.3) !important;
}

.cta-section .cta-btn {
  background-color: var(--color-accent) !important;
  color: #1e1e1e !important;
  box-shadow: 0 10px 30px rgba(248, 200, 220, 0.15) !important;
}

.cta-section .cta-btn:hover {
  background-color: #1e1e1e !important;
  color: #ffffff !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2) !important;
}

/* ===== Before & After Slider Overhaul Styles ===== */
.before-after-slider {
  position: relative;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  max-width: 550px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .before-after-slider {
    max-width: 1200px;
  }
}

.before-after-slider .slider-item {
  position: relative;
  width: 100%;
}

.before-after-slider .twentytwenty-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.before-after-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  left: 0;
  padding: 0 10px;
}

.before-after-slider .owl-nav button {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(213, 109, 132, 0.2) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease !important;
}

.before-after-slider .owl-nav button:hover {
  background-color: #d56d84 !important;
  border-color: #d56d84 !important;
  transform: scale(1.05);
}

.before-after-slider .owl-nav button:hover img {
  filter: brightness(0) invert(1);
}

.before-after-slider .owl-nav button img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
}

.before-after-slider .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.before-after-slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background-color: rgba(213, 109, 132, 0.25) !important;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.before-after-slider .owl-dots .owl-dot.active span {
  width: 24px;
  border-radius: 4px;
  background-color: #d56d84 !important;
}

.bg-premium-badge {
  background-color: #d56d84 !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  font-family: var(--font-body);
  font-size: 0.85rem !important;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 30px !important;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(213, 109, 132, 0.2);
}


/* ===== Clinician Split Layout Mockup Styling ===== */
.clinician-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.clinician-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.clinician-image-wrapper:hover .clinician-main-img {
  transform: scale(1.03);
}

.clinician-statement-block {
  margin-bottom: 2rem;
}

.statement-subtitle {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  color: #285AEB;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1rem;
}

.clinician-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
  font-weight: 300;
  line-height: 1.45 !important;
  color: #1e1e1e !important;
  font-style: italic;
  margin: 0;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
  background: transparent !important;
}

.clinician-name {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0.25rem;
}

.clinician-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.badge-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: #4a5568;
  background: rgba(226, 232, 240, 0.4);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Commitment to Excellence Card ===== */
.commitment-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
}

.commitment-card .card-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0.35rem;
}

.commitment-card .card-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 0;
}

/* ===== Awards Tabs Row ===== */
.awards-tabs-row {
  display: flex;
  gap: 12px;
}

.award-tab-btn {
  flex: 1;
  min-width: 70px;
  background: #ffffff;
  /* border: 1.5px solid rgba(226, 232, 240, 0.8); */
  border-radius: 12px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.award-tab-btn .btn-icon {
  font-size: 1.1rem;
  color: #718096;
  transition: color 0.3s ease;
}

.award-tab-btn .btn-year {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #718096;
  transition: color 0.3s ease;
}

.award-tab-btn:hover {
  /* border-color: rgba(40, 90, 235, 0.3); */
  background: rgba(40, 90, 235, 0.02);
}

.award-tab-btn.active {
  /* border-color: #285AEB; */
  background: rgba(40, 90, 235, 0.06);
  box-shadow: 0 4px 12px rgba(40, 90, 235, 0.08);
}

.award-tab-btn.active .btn-icon {
  color: #285AEB;
}

.award-tab-btn.active .btn-year {
  color: #285AEB;
}

/* ===== Accolade Details Banner ===== */
.accolade-details-banner {
  background: linear-gradient(135deg, #1B365D 0%, #2A4365 100%);
  border-radius: 16px;
  padding: 1.3rem 1.8rem;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(27, 54, 93, 0.15);
  transition: all 0.3s ease;
}

.banner-badge-img-wrapper {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.banner-accolade-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.banner-overhead {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}

.banner-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  margin-bottom: 0.25rem;
}

.banner-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}


/* --------------- */
/* Award Tab Container Custom Styling */
/* Downsized & Compact Minimalist Award Item */
.award-card {
  position: relative;
  width: 130px;
  height: 130px;
  background: transparent !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 6px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: none !important;
}

@media (max-width: 1199px) {
  .award-card {
    width: 80px;
    height: 80px;
    padding: 4px !important;
  }
}

@media (max-width: 575px) {
  .award-card {
    width: 95px;
    height: 95px;
    padding: 2px !important;
  }
}

.award-icon-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease !important;
}

/* UI Feedback Rules */
.award-card:hover {
  background: transparent !important;
  border: none !important;
  transform: translateY(-5px);
  box-shadow: none !important;
}

.award-card:hover .award-img {
  transform: scale(1.06);
}

/* ===== Gallery Slider Section Alignment & Rounded Corners ===== */
.gallery-slider-section .dual-directional-image-sliders-with-lightbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-slider-section .gallery-slider.top-slider {
  direction: rtl;
}

.gallery-slider-section .gallery-slider .slider-item {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-slider-section .gallery-slider .slider-item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-slider-section .gallery-slider .slider-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.gallery-slider-section .gallery-slider .slider-item:hover img {
  transform: scale(1.05);
}

.gallery-slider-section .gallery-slider .slider-item .text-block {
  margin: 0 !important;
  height: 100% !important;
  width: 100% !important;
  border-radius: 20px !important;
  border: 1px solid rgba(248, 200, 220, 0.25) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
  padding: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.gallery-slider-section .gallery-slider .slider-item .text-block a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
  text-decoration: none !important;
}

.gallery-slider-section .gallery-slider .slider-item:hover .text-block {
  background-color: #FFF5F7 !important;
  border-color: rgba(248, 200, 220, 0.6) !important;
  box-shadow: 0 12px 40px rgba(248, 200, 220, 0.4) !important;
}

.gallery-slider-section .gallery-slider .slider-item .text-block p {
  margin: 0;
  display: block;
  text-align: center !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .gallery-slider-section .gallery-slider .slider-item {
    height: 250px;
  }

  .gallery-slider-section .gallery-slider .slider-item .text-block {
    padding: 24px !important;
  }

  .gallery-slider-section .gallery-slider .slider-item .text-block p {
    font-size: 14px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    line-clamp: 5 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-align: center !important;
  }
}

@media (max-width: 767px) {

  .gallery-slider-section .gallery-slider .slider-item,
  .gallery-slider-section .gallery-slider .slider-item a,
  .gallery-slider-section .gallery-slider .slider-item img,
  .gallery-slider-section .gallery-slider .slider-item .text-block {
    border-radius: 12px !important;
  }
}

/* ===== Review Platform Cards Layout ===== */
.gallery-slider-section .review-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(248, 200, 220, 0.25);
  border-radius: 16px;
  padding: 24px 16px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  height: 100%;
}

.gallery-slider-section .review-platform-card:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  border-color: #b06080;
  box-shadow: 0 12px 30px rgba(176, 96, 128, 0.1);
}

.gallery-slider-section .platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.gallery-slider-section .platform-icon.google {
  background-color: #feedeb;
  color: #ea4335;
}

.gallery-slider-section .platform-icon.top-doctors {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.gallery-slider-section .platform-icon.doctify {
  background-color: #e3f2fd;
  color: #1976d2;
}

.gallery-slider-section .platform-icon.iwantgreatcare {
  background-color: #fff3e0;
  color: #ef6c00;
}

.gallery-slider-section .review-platform-card:hover .platform-icon {
  transform: scale(1.1);
}

.gallery-slider-section .platform-details h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 8px;
}

.gallery-slider-section .platform-details .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-slider-section .platform-details .stars {
  color: #fbc02d;
  font-size: 0.85rem;
}

.gallery-slider-section .platform-details .rating-val {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
}

/* ===== Featured in Media Section Overrides ===== */
.media-section .video-player-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
}

.media-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #F0F2F6;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.media-social-btn:hover {
  background-color: #b06080;
  color: #ffffff;
  transform: translateY(-2px);
}

.appearances-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.appearance-item {
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.appearance-item:hover {
  background-color: rgba(248, 200, 220, 0.1);
}

.appearance-item.active {
  background-color: #ffffff;
  border: 1px solid rgba(248, 200, 220, 0.4);
  box-shadow: 0 8px 24px rgba(248, 200, 220, 0.15);
}

.appearance-item.active .item-title {
  color: #b06080 !important;
}

.appearance-item:hover img,
.appearance-item.active img {
  opacity: 1 !important;
}

.appearance-item:hover .translate-middle,
.appearance-item.active .translate-middle {
  transform: translate(-50%, -50%) scale(1.1) !important;
  background-color: #b06080 !important;
}

/* ===== Research & Publications Section Overrides ===== */
.research-platform-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 12px;
  height: 145px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  text-decoration: none !important;
}

.research-platform-card:hover {
  transform: translateY(-6px);
  border-color: #b06080;
  box-shadow: 0 15px 35px rgba(176, 96, 128, 0.1);
}

.research-platform-card .logo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-platform-card .research-logo {
  width: 100%;
  height: 90px;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Individual scales to optimize size and account for embedded whitespace in SVGs */
.research-logo[src*="Pubmed" i] {
  transform: scale(1.6);
}

.research-logo[src*="Google-Scholar" i] {
  transform: scale(1.3);
}

.research-logo[src*="ORCHID" i] {
  transform: scale(2.25);
}

.research-logo[src*="ResearchGate" i] {
  transform: scale(1.95);
}

/* Individual hover scale transition */
.research-platform-card:hover .research-logo[src*="Pubmed" i] {
  transform: scale(1.72);
}

.research-platform-card:hover .research-logo[src*="Google-Scholar" i] {
  transform: scale(1.4);
}

.research-platform-card:hover .research-logo[src*="ORCHID" i] {
  transform: scale(2.4);
}

.research-platform-card:hover .research-logo[src*="ResearchGate" i] {
  transform: scale(2.1);
}

/* ===== Awards Swiper Coverflow Carousel ===== */
.awards-swiper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
  overflow: hidden;
}

.awards-swiper .swiper-wrapper {
  align-items: center;
}

.awards-swiper .swiper-slide {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
  transform: scale(0.75);
  filter: grayscale(100%);
  opacity: 0.35;
}

.awards-swiper .swiper-slide .award-card {
  width: 130px;
  height: 130px;
  margin: 0;
}

@media (max-width: 1199px) {
  .awards-swiper .swiper-slide {
    width: 120px;
  }

  .awards-swiper .swiper-slide .award-card {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 575px) {
  .awards-swiper .swiper-slide {
    width: 100px;
  }

  .awards-swiper .swiper-slide .award-card {
    width: 90px;
    height: 90px;
  }
}

.awards-swiper .swiper-slide-active {
  transform: scale(1.35);
  filter: grayscale(0%);
  opacity: 1;
  z-index: 10;
}

.awards-swiper .swiper-slide-prev,
.awards-swiper .swiper-slide-next {
  transform: scale(0.95);
  filter: grayscale(70%);
  opacity: 0.75;
  z-index: 5;
}



/* --------------------- */


/* ===== Primary Section Heading Standardization ===== */
.section-primary-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 42px) !important;
  font-weight: 700 !important;
  color: #1e1e1e !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
  line-height: 1.25 !important;
  letter-spacing: normal !important;
  text-align: inherit;
}

/* Ensure no unwanted spacing and alignment issues on mobile (below 768px) */
@media (max-width: 767.98px) {

  /* Center align primary titles and set mobile responsive size */
  .section-primary-title {
    text-align: center !important;
    font-size: clamp(1.8rem, 5vw, 2.2rem) !important;
  }

  /* Center align general section titles/headings and subheadings across all pages */
  .section-title h2,
  .section-title .title,
  .section-title p,
  h2.title,
  .section-title-block h2,
  .section-title-block p,
  .section-title-block .title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center align media section heading elements */
  .media-section .row.mb-5 .col-12,
  .media-section .row.mb-5,
  .media-section .section-primary-title,
  .media-section p,
  .media-section .media-eyebrow {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center align research section heading elements */
  .research-section .row.mb-5 .col-12,
  .research-section .row.mb-5,
  .research-section .section-primary-title,
  .research-section p,
  .research-section .research-eyebrow {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center align gallery slider section (What Our Patients Say) */
  .gallery-slider-section .container,
  .gallery-slider-section .section-primary-title,
  .gallery-slider-section p,
  .gallery-slider-section .section-title-line {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center align treatment section heading (Advanced Techniques, Outstanding Results) */
  .treatment-section .section-title,
  .treatment-section .section-primary-title,
  .treatment-section p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center align CTA section heading (Book a Consultation) */
  .cta-sc-home .section-title,
  .cta-sc-home .section-primary-title,
  .cta-sc-home p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center align before-after section heading (Explore Real Patient Outcomes) */
  .video-block .container.custom-container,
  .video-block h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Meet Your Surgeon — mobile stack & center */
  .meet-surgeon__content,
  .meet-surgeon__attribution,
  .meet-surgeon__membership,
  .meet-surgeon__awards {
    text-align: center !important;
  }

  .meet-surgeon__membership-logos {
    justify-content: center;
  }

  .meet-surgeon__quote {
    border-left: none !important;
    border-top: 3px solid rgba(176, 96, 128, 0.35);
    padding-left: 0 !important;
    padding-top: 1.25rem !important;
    text-align: center !important;
  }

  .meet-surgeon__cta {
    margin-left: auto;
    margin-right: auto;
  }

  /* Centering line decorations on mobile */
  .section-title-line {
    margin: 0 auto 25px auto !important;
  }
}

/* ===== Meet Your Surgeon (clean split) ===== */
.meet-surgeon.gallery-section {
  background-color: rgb(253, 248, 244) !important;
  padding: clamp(4rem, 8vw, 6.5rem) 0 !important;
  color: #1e1e1e !important;
}

.meet-surgeon .custom-container,
.meet-surgeon .container {
  max-width: calc(100vw - 5rem) !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 992px) {

  .meet-surgeon .custom-container,
  .meet-surgeon .container {
    max-width: calc(100vw - 5rem) !important;
    padding-left: 3vw !important;
    padding-right: 2.5rem !important;
  }
}

.meet-surgeon .section-title-line {
  width: 60px;
  height: 3px;
  background-color: #b06080;
  margin: 0 auto 1.25rem;
}

.meet-surgeon__header {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.meet-surgeon__lede {
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

.meet-surgeon__row {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meet-surgeon__portrait {
  margin: 0 auto;
  overflow: visible;
  border-radius: 2px;
  max-width: 640px;
}

.meet-surgeon__portrait img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 992px) {
  .meet-surgeon__row {
    display: grid;
    grid-template-columns: 7fr 500px;
    column-gap: 2rem;
    align-items: center;
  }

  .meet-surgeon__row>[class*="col-"] {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .meet-surgeon__content {
    padding-left: 0.5rem;
  }
}


.meet-surgeon__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b06080;
  margin-bottom: 1rem;
}

.meet-surgeon__quote {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.35rem;
  border-left: 3px solid #b06080;
}

.meet-surgeon__quote p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.6;
  font-style: italic;

  color: #1e1e1e;
}

.meet-surgeon__attribution {
  margin-bottom: 0;
}

.meet-surgeon__attribution h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display), 'Cormorant Garamond', serif;
  font-size: 26px !important;
  font-weight: 700;
  color: #000000 !important;
  line-height: 1.3;
}

.meet-surgeon__attribution p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #000000 !important;
}

.meet-surgeon__membership {
  margin: 1.5rem 0 1.75rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(31, 35, 39, 0.1);
}

.meet-surgeon__membership-label {
  display: block;
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: #000000 !important;
}

.meet-surgeon__membership-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.meet-surgeon__membership-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0.65rem 1rem;
  background: #fff;
  border: 1px solid rgba(31, 35, 39, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.meet-surgeon__membership-logo:hover {
  border-color: rgba(176, 96, 128, 0.35);
  box-shadow: 0 8px 20px rgba(31, 35, 39, 0.06);
}

.meet-surgeon__membership-logo img {
  display: block;
  max-height: 44px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  filter: grayscale(1);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.meet-surgeon__membership-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}

/* Outline CTA on light background - Matching pink border and text color */
.meet-surgeon__cta.btn-outline-premium {
  border: 1px solid #b06080 !important;
  border-color: #b06080 !important;
  color: #b06080 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  background: #ffffff !important;
  border-radius: 0 !important;
  padding: 12px 28px !important;
  display: inline-block !important;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

.meet-surgeon__cta.btn-outline-premium:hover {
  background: #b06080 !important;
  color: #ffffff !important;
  border-color: #b06080 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(176, 96, 128, 0.25) !important;
}

.meet-surgeon__awards {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.meet-surgeon__awards-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 1rem;
  text-align: center;
}

.meet-surgeon .awards-slider {
  margin-top: 0;
  padding: 8px 0 4px;
}

.meet-surgeon .awards-slider .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.meet-surgeon .awards-slider .award-badge-wrap {
  width: clamp(88px, 12vw, 120px);
  height: clamp(88px, 12vw, 120px);
  margin: 0 auto;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(31, 35, 39, 0.08);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(31, 35, 39, 0.06);
  transform: scale(0.88);
  filter: grayscale(0.35);
  opacity: 0.75;
  transition: transform 0.45s ease, filter 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
}

.meet-surgeon .awards-slider .award-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.meet-surgeon .awards-slider .owl-item.center .award-badge-wrap {
  transform: scale(1.08);
  filter: grayscale(0);
  opacity: 1;
  box-shadow: 0 14px 28px rgba(176, 96, 128, 0.18);
}

/* ===== Homepage CTA Section Styles (Separate styling for cta-sc-home) ===== */
.cta-sc-home {
  padding: 0 50px !important;
}

.cta-sc-home .cta-wrap {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: left !important;
  padding: 100px 100px !important;
  background-size: auto 100% !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-color: #b06552 !important;
  /* Matches background image wall color precisely */
}

/* Neutral dark overlay for homepage CTA to replace red overlay */
.cta-sc-home .cta-wrap::before {
  background-color: rgba(0, 0, 0, 0.15) !important;
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1 !important;
}

.cta-sc-home .cta-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.cta-sc-home .meta-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 20px !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.cta-sc-home .meta-block .section-primary-title {
  color: #ffffff !important;
  margin-bottom: 0 !important;
  text-align: left !important;
}

.cta-sc-home .meta-block p {
  font-size: 1.15rem !important;
  line-height: 1.6 !important;
  color: #ffffff !important;
  margin: 0 0 10px 0 !important;
  max-width: 100% !important;
  text-align: left !important;
}

.cta-sc-home .meta-block .cta-btn {
  background-color: #F8C8DC !important;
  color: #1E1E1E !important;
  border: 1px solid #F8C8DC !important;
  margin: 10px 0 0 0 !important;
  display: inline-flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}

.cta-sc-home .meta-block .cta-btn i svg path,
.cta-sc-home .meta-block .cta-btn i img {
  fill: #1E1E1E !important;
}

.cta-sc-home .meta-block .cta-btn:hover {
  background-color: #ffffff !important;
  color: #1E1E1E !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* Responsive Overrides for Homepage CTA */
@media (max-width: 1199px) {
  .cta-sc-home {
    padding: 0 30px !important;
  }

  .cta-sc-home .cta-wrap {
    padding: 80px 50px !important;
  }
}

@media (max-width: 767px) {
  .cta-sc-home {
    padding: 0 15px !important;
  }

  .cta-sc-home .cta-wrap {
    padding: 60px 20px !important;
    border-radius: 12px !important;
    justify-content: center !important;
    text-align: center !important;
    background-size: cover !important;
  }

  .cta-sc-home .cta-content {
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .cta-sc-home .meta-block {
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .cta-sc-home .meta-block .section-primary-title {
    text-align: center !important;
  }

  .cta-sc-home .meta-block p {
    font-size: 1rem !important;
    text-align: center !important;
  }

  .cta-sc-home .meta-block .cta-btn {
    margin: 10px auto 0 auto !important;
  }
}

/* Ensure left alignment on iPad Air and larger tablets (>= 768px) */
@media (min-width: 768px) {

  .cta-sc-home .cta-content,
  .cta-sc-home .meta-block,
  .cta-sc-home .meta-connect,
  .cta-sc-home .meta-block p,
  .cta-sc-home .meta-block .section-primary-title,
  .cta-sc-home .meta-connect h3 {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .cta-sc-home .meta-block .cta-btn {
    margin: 10px 0 0 0 !important;
  }
}

/* ============================================================
   Header Navigation Responsive & Flex Alignment Fix
   ============================================================ */
header .navbar .header-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

header .navbar .main-menu .navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  white-space: nowrap !important;
}

@media (min-width: 1200px) {
  header .navbar .main-menu {
    display: flex !important;
    justify-content: flex-end !important;
  }
}

@media (min-width: 1451px) {
  header .navbar .main-menu .navbar-nav .nav-item .nav-link {
    padding: 20px 14px !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
  }
}

@media (max-width: 1450px) and (min-width: 1250px) {
  header .navbar .main-menu .navbar-nav .nav-item .nav-link {
    padding: 14px 9px !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    font-weight: 500 !important;
  }
  header .navbar .main-menu .navbar-nav .nav-item.dropdown .nav-link i {
    margin-left: 6px !important;
  }
  header .navbar .logo img {
    max-width: 160px !important;
  }
  header .navbar .other-menu {
    gap: 14px !important;
  }
  header .navbar .other-menu .cta-btn {
    padding: 10px 16px !important;
    font-size: 13.5px !important;
  }
}

@media (max-width: 1249px) and (min-width: 1200px) {
  header .navbar .main-menu .navbar-nav .nav-item .nav-link {
    padding: 12px 5px !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    font-weight: 500 !important;
  }
  header .navbar .main-menu .navbar-nav .nav-item.dropdown .nav-link i {
    margin-left: 3px !important;
  }
  header .navbar .logo img {
    max-width: 140px !important;
  }
  header .navbar .other-menu {
    gap: 10px !important;
  }
  header .navbar .other-menu .cta-btn {
    padding: 8px 12px !important;
    font-size: 12.5px !important;
    gap: 6px !important;
  }
}

@media (max-width: 1199px) {
  header .navbar .main-menu {
    display: none !important;
  }
  .offcanvas.responsive-menu .main-menu {
    display: block !important;
  }
  header .navbar .other-menu .navbar-toggler {
    display: flex !important;
  }
}

/* ===== Meet Your Surgeon (Original Content Design Shifted Left - Removed Overlay) ===== */