@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Colors */
  --clr-lavender: #776B8A;
  --clr-soft-lavender: #B8ADC9;
  --clr-off-white: #FAF9FC;
  --clr-white: #FFFFFF;
  --clr-charcoal: #292735;
  --clr-gold: #C5AA6D;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --border-radius: 8px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s ease-in-out;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--clr-charcoal);
  background-color: var(--clr-off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--clr-charcoal);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #4a4a4a;
}

a {
  text-decoration: none;
  color: var(--clr-lavender);
  transition: var(--transition-fast);
}

a:hover {
  color: var(--clr-gold);
}

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

.italic {
  font-style: italic;
  font-weight: 400;
}

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--clr-lavender);
  color: var(--clr-white);
}

.btn-primary:hover {
  background-color: var(--clr-charcoal);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(119, 107, 138, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--clr-charcoal);
  border: 1px solid var(--clr-charcoal);
}

.btn-secondary:hover {
  background-color: var(--clr-charcoal);
  color: var(--clr-white);
}

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

.btn-outline:hover {
  background-color: var(--clr-white);
  color: var(--clr-charcoal);
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
  display: block;
}

/* Utility Animations */
.fade-in {
  /* Content must remain readable even if JavaScript is blocked or delayed. */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--clr-lavender);
  color: var(--clr-white);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-info a {
  color: var(--clr-white);
}

.top-info a:hover {
  color: var(--clr-gold);
}

.separator {
  opacity: 0.5;
}

.top-social {
  display: flex;
  gap: 15px;
}

.top-social a {
  color: var(--clr-white);
  font-size: 1rem;
}

.top-social a:hover {
  color: var(--clr-gold);
}

/* --- Header --- */
.header {
  background-color: var(--clr-white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  /* fixed: completely out of document flow — no layout shifts */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
  transition: box-shadow .3s ease, background-color .3s ease;
}

/* Push page content below the fixed header */
body {
  padding-top: 65px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  /* smooth height collapse for split animation */
  transition: height .7s cubic-bezier(.4, 0, .2, 1);
}

/* Subtle shadow when user has scrolled at all */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2rem;
  color: var(--clr-gold);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-charcoal);
  line-height: 1;
}

.logo-text small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-lavender);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-charcoal);
  position: relative;
  padding: 5px 0;
}

.nav-links li a:hover, .nav-links li a.active {
  color: var(--clr-lavender);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-gold);
  transition: var(--transition-fast);
}

.nav-links li a:hover::after, .nav-links li a.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* =========================================
   Navbar Split-Away Animation on Scroll
   Logo flies left, Nav+CTA fly right.
   ========================================= */
@media (min-width: 769px) {

  /* Base transitions for both directions */
  .header-inner > .logo {
    transition: transform .7s cubic-bezier(.4, 0, .2, 1), opacity .5s ease;
  }
  .header-inner > .navbar,
  .header-inner > .header-right {
    transition: transform .7s cubic-bezier(.4, 0, .2, 1), opacity .5s ease;
  }
  /* Header height collapses smoothly */
  .header {
    transition: box-shadow .3s ease, background-color .3s ease, padding .3s ease, height .7s cubic-bezier(.4, 0, .2, 1);
  }

  /* --- SPLIT STATE: everything flies off-screen --- */
  /* Logo slides out to the left */
  .header.is-split .header-inner > .logo {
    transform: translateX(calc(-50vw - 200px));
    opacity: 0;
    pointer-events: none;
  }

  /* Navbar (centre links) slides out to the right */
  .header.is-split .header-inner > .navbar {
    transform: translateX(calc(50vw + 200px));
    opacity: 0;
    pointer-events: none;
  }

  /* Book-appointment button & hamburger slide out to the right */
  .header.is-split .header-inner > .header-right {
    transform: translateX(calc(50vw + 200px));
    opacity: 0;
    pointer-events: none;
  }

  /* Collapse the header height to a thin peek strip */
  .header.is-split {
    background-color: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
  }
  .header.is-split .header-inner {
    height: 14px;
    overflow: hidden;
  }

  /* --- PEEK: hovering the strip slides everything back in --- */
  .header.is-split:hover {
    background-color: var(--clr-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }
  .header.is-split:hover .header-inner {
    height: 70px;
  }
  .header.is-split:hover .header-inner > .logo,
  .header.is-split:hover .header-inner > .navbar,
  .header.is-split:hover .header-inner > .header-right {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--clr-charcoal);
  margin: 5px auto;
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--clr-off-white);
  /* No extra top padding needed — body padding-top handles the fixed header */
  padding: 40px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 90vh;
  background-color: var(--clr-soft-lavender);
  border-radius: 50% 0 0 50%;
  opacity: 0.3;
}

.shape-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 30vw;
  height: 30vw;
  background-color: var(--clr-lavender);
  border-radius: 50%;
  opacity: 0.15;
}

.slider-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 50px;
  max-width: 600px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.slide-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-lavender);
  margin-bottom: 15px;
  font-weight: 600;
}

.slide-title {
  color: var(--clr-charcoal);
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.slide-subtitle {
  color: #555;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.slide-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.floating-img {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite;
  object-fit: cover;
  height: 600px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.hero-trust {
  display: flex;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 10px;
}

.hero-trust-item {
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.hero-trust-item i {
  color: var(--clr-gold);
  font-size: 1.5rem;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 10;
}

.slider-btn {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--clr-charcoal);
  font-size: 1.2rem;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.slider-btn:hover {
  background-color: var(--clr-lavender);
  color: var(--clr-white);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(119, 107, 138, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--clr-lavender);
  transform: scale(1.3);
}

/* --- Trust Section --- */
.trust-section {
  background-color: var(--clr-white);
  padding: 40px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  position: relative;
  z-index: 5;
  margin-top: -30px;
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  padding: 10px;
}

.trust-icon {
  font-size: 2rem;
  color: var(--clr-gold);
  margin-bottom: 15px;
}

.trust-title {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--clr-charcoal);
  font-family: var(--font-body);
  font-weight: 600;
}

.trust-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* --- Procedures Section --- */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
  text-align: left;
}

.procedure-card {
  background-color: var(--clr-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid rgba(0,0,0,0.05);
}

.procedure-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.procedure-img {
  height: 250px;
  overflow: hidden;
}

.procedure-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.procedure-card:hover .procedure-img img {
  transform: scale(1.1);
}

.procedure-content {
  padding: 30px;
}

.procedure-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--clr-charcoal);
}

.procedure-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.procedure-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.procedure-link i {
  transition: transform var(--transition-fast);
}

.procedure-link:hover i {
  transform: translateX(5px);
}

.bg-light {
  background-color: var(--clr-white);
}

/* --- About Surgeon Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img .img-wrapper {
  position: relative;
  z-index: 1;
}

.about-img img {
  border-radius: var(--border-radius);
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.bg-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--clr-soft-lavender);
  border-radius: var(--border-radius);
  z-index: 1;
  opacity: 0.5;
}

.surgeon-credentials {
  margin: 20px 0;
}

.surgeon-credentials ul {
  list-style: none;
}

.surgeon-credentials li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-charcoal);
  font-weight: 500;
}

.surgeon-credentials i {
  color: var(--clr-gold);
}

.signature {
  font-family: 'Mrs Saint Delafield', cursive, var(--font-heading); /* Fallback */
  font-size: 2.5rem;
  color: var(--clr-lavender);
  margin-top: 10px;
  transform: rotate(-5deg);
}

/* --- Why Choose Us Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 3rem;
}

.feature-card {
  padding: 30px;
  background-color: var(--clr-off-white);
  border-radius: var(--border-radius);
  transition: transform var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--clr-lavender);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--clr-charcoal);
}

.feature-desc {
  font-size: 0.95rem;
  color: #666;
}

/* --- Before & After Section --- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ba-card {
  text-align: center;
}

.ba-img {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  display: flex;
}

.ba-img img {
  width: 50%;
  object-fit: cover;
  height: 300px;
}

.ba-after {
  border-left: 2px solid var(--clr-white);
}

.ba-labels {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.ba-label {
  background-color: rgba(41, 39, 53, 0.7);
  color: var(--clr-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.ba-title {
  font-size: 1.2rem;
  color: var(--clr-charcoal);
  margin-top: 15px;
}

/* --- Testimonials Section --- */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-slide {
  display: none;
  animation: fadeEffect 1s;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.stars {
  color: var(--clr-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--clr-white);
}

.patient-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.patient-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-soft-lavender);
}

.patient-name {
  font-size: 1.1rem;
  color: var(--clr-white);
  margin-bottom: 3px;
  text-align: left;
}

.patient-procedure {
  font-size: 0.85rem;
  color: var(--clr-soft-lavender);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  text-align: left;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255,255,255,0.3);
}

.testimonial-dots .dot.active {
  background-color: var(--clr-gold);
  transform: scale(1.3);
}

/* --- Consultation CTA Section --- */
.cta-section {
  position: relative;
  background-color: var(--clr-lavender);
  overflow: hidden;
  padding: 100px 0;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="circles" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23C5AA6D" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circles)"/></svg>');
  opacity: 0.8;
  z-index: 1;
}

/* --- Blog Section --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.blog-card {
  background-color: var(--clr-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: transform var(--transition-fast);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.blog-img {
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 15px;
}

.blog-meta span i {
  color: var(--clr-gold);
  margin-right: 5px;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--clr-charcoal);
}

.blog-title a:hover {
  color: var(--clr-lavender);
}

.blog-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

/* --- Footer --- */
.footer {
  background-color: var(--clr-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
}

/* --- Lavender Aesthetics refresh --- */
.top-bar {
  background: #f5f0fa;
  color: var(--clr-charcoal);
  border-bottom: 1px solid #e9e0f1;
}

.top-info a, .top-social a { color: var(--clr-lavender); }
.header { box-shadow: 0 1px 14px rgba(119, 107, 138, 0.08); }
.logo-icon { color: var(--clr-lavender); }
.btn-primary { background: linear-gradient(135deg, var(--clr-lavender), #9a83bd); }
.btn-primary:hover { background: var(--clr-charcoal); }
.section-subtitle { color: #9d86c7; font-weight: 600; }

/* A clean, editorial hero inspired by the supplied lavender reference. */
.hero-section {
  min-height: 610px;
  padding: 42px 0 74px;
  background: radial-gradient(circle at 66% 23%, #fff 0, #f1e9f8 34%, #faf9fc 68%);
}
.hero-section::before {
  content: '';
  position: absolute;
  width: 370px;
  height: 370px;
  left: -175px;
  bottom: -170px;
  border: 1px solid rgba(184, 173, 201, .55);
  border-radius: 50%;
}
.shape-1 { top: 0; right: 2%; width: 43vw; height: 540px; opacity: .72; border-radius: 55% 55% 6% 55%; }
.shape-2 { display: none; }
.glass-card { background: transparent; backdrop-filter: none; border: 0; border-radius: 0; box-shadow: none; padding: 38px 0; max-width: 540px; }
.slide-title { font-size: clamp(3.5rem, 5vw, 5.6rem); letter-spacing: -0.055em; }
.slide-title .italic { color: var(--clr-lavender); }
.slide-subtitle { max-width: 470px; font-size: 1rem; }
.floating-img { max-width: 100%; width: 440px; height: 500px; border-radius: 52% 52% 0 0; object-position: center; box-shadow: 0 20px 40px rgba(74, 52, 93, .15); animation: none; }
.hero-image-primary { object-position: center 35%; filter: saturate(.82) contrast(.94) brightness(1.06); }
.hero-trust { border-top: 0; gap: 25px; margin-top: 18px; padding-top: 0; }
.hero-trust-item i { color: var(--clr-lavender); }
.slider-controls { bottom: 20px; }

/* Compact specialty cards mirror the visual rhythm of the reference design. */
.procedures-section { padding: 74px 0 55px; background: var(--clr-white); }
.procedures-section .section-title { margin-bottom: 2rem; }
.procedures-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 0; }
.procedure-card { border: 0; border-radius: 10px; background: #fbf9fd; box-shadow: none; text-align: center; }
.procedure-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(119, 107, 138, .12); }
.procedure-img { height: 150px; padding: 20px 0 0; overflow: hidden; }
.procedure-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.procedure-img::after { content: none; }
.procedure-card:nth-child(2) .procedure-img::after { content: none; }
.procedure-card:nth-child(3) .procedure-img::after { content: none; }
.procedure-card:nth-child(4) .procedure-img::after { content: none; }
.procedure-card:nth-child(5) .procedure-img::after { content: none; }
.procedure-card:nth-child(6) .procedure-img::after { content: none; }
.procedure-content { padding: 11px 8px 17px; }
.procedure-title { font-family: var(--font-body); font-size: .83rem; font-weight: 700; margin: 0; }
.procedure-desc, .procedure-card .procedure-link { display: none; }

.about-surgeon { padding-top: 55px; background: var(--clr-off-white); }
.about-img img { border-radius: 48% 48% 8px 8px; max-height: 440px; width: 100%; object-fit: cover; }
.bg-shape { border-radius: 48% 48% 8px 8px; background: #e6d9f0; }
.why-choose-us { display: none; }
.before-after-section { background: var(--clr-white); }
.testimonials-section { background: linear-gradient(135deg, #a78ac4, var(--clr-lavender)) !important; }
.footer { background: linear-gradient(110deg, #786197, var(--clr-lavender)); }

@media (max-width: 992px) {
  .procedures-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-section { min-height: 550px; }
}

.footer-title {
  color: var(--clr-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--clr-gold);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a, .footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--clr-gold);
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--clr-gold);
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--clr-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
  color: var(--clr-gold);
}

/* ============================================
   PROCEDURES DETAIL PAGE STYLES
   ============================================ */

/* Extra color tokens (used in procedures page) */
:root {
  --clr-deep-plum: #2d1f3d;
  --clr-rich-mauve: #5a3e6b;
  --clr-text-muted: #7a7490;
}

/* --- Procedure Detail Card (alternating layout) --- */
.proc-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(119, 107, 138, 0.15);
}

.proc-detail-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.proc-detail-card--reverse {
  direction: rtl;
}

.proc-detail-card--reverse > * {
  direction: ltr;
}

/* Image side */
.proc-detail-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 31, 61, 0.18);
}

.proc-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.proc-detail-card:hover .proc-detail-img img {
  transform: scale(1.04);
}

/* Badge */
.proc-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--clr-lavender), var(--clr-rich-mauve));
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.proc-badge--gold {
  background: linear-gradient(135deg, var(--clr-gold), #a8864a);
}

/* Content side */
.proc-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proc-detail-title {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  color: var(--clr-charcoal);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.proc-detail-content p {
  color: var(--clr-text-muted);
  line-height: 1.85;
  font-size: 0.97rem;
}

/* Benefits list */
.proc-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0.5rem 0 1.5rem;
}

.proc-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--clr-charcoal);
  line-height: 1.5;
}

.proc-benefits li i {
  color: var(--clr-gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Process Steps --- */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(119, 107, 138, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(119, 107, 138, 0.18);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(197, 170, 109, 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-icon {
  font-size: 1.8rem;
  color: var(--clr-lavender);
  margin-bottom: 1rem;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--clr-charcoal);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  color: var(--clr-gold);
  font-size: 1.3rem;
  align-self: center;
  margin-top: -2rem;
}

/* Responsive: procedures detail */
@media (max-width: 900px) {
  .proc-detail-card,
  .proc-detail-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }

  .proc-detail-img img {
    height: 300px;
  }

  .proc-detail-title {
    font-size: 1.8rem;
  }

  .process-steps {
    gap: 1rem;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
  }
}

/* --- Reviews Grid Layout --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.review-card {
  background: var(--clr-white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(119, 107, 138, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(119, 107, 138, 0.15);
}

.review-stars {
  color: var(--clr-gold);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-soft-lavender);
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-charcoal);
  font-family: var(--font-heading);
}

.review-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Composite single image for B&A */
.ba-img.single-image img {
  width: 100%;
  height: 300px;
}

/* Responsive Reviews */
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

