@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
  --primary: #6B46C1;
  --primary-light: #805AD5;
  --primary-dark: #553C9A;
  --secondary: #A855F7;
  --accent: #EC4899;
  --accent-light: #F472B6;
  --accent-dark: #DB2777;
  --bg: #FFFFFF;
  --bg-soft: #F9FAFB;
  --bg-dark: #0F172A;
  --text: #1F2937;
  --text-light: #4B5563;
  --text-muted: #9CA3AF;
  --white: #FFFFFF;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(107, 70, 193, 0.1), 0 2px 4px -1px rgba(107, 70, 193, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(107, 70, 193, 0.15), 0 4px 6px -2px rgba(107, 70, 193, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(107, 70, 193, 0.2), 0 10px 10px -5px rgba(107, 70, 193, 0.04);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(107, 70, 193, 0.15);
}

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Offset for sticky header when anchor-jumping */
#consultation-form,
#lead-form,
#home, #about, #services, #results, #reviews, #faq {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

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

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

ul {
  list-style: none;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-padding {
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .section-padding {
    padding: 80px 0;
  }
}

.bg-soft {
  background-color: var(--bg-soft);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(168, 85, 247, 0.3);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(107, 70, 193, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  box-shadow: 0 6px 20px 0 rgba(107, 70, 193, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #34D399 0%, #059669 100%);
  box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(107, 70, 193, 0.05);
  transform: translateY(-2px);
}

/* --- HEADER / NAVIGATION --- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
  padding: 1.25rem 0;
}

header.sticky {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(107, 70, 193, 0.1);
  padding: 0.75rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  gap: 0.5rem;
}

.logo span {
  color: var(--accent);
}

/* Logo image styles */
.header-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav {
  display: none;
}

@media (min-width: 1024px) {
  nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
  }

  .nav-link:hover {
    color: var(--primary);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link.active {
    color: var(--primary);
    font-weight: 600;
  }

  .nav-link.active::after {
    width: 100%;
  }
}

.header-ctas {
  display: none;
}

@media (min-width: 768px) {
  .header-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

@media (min-width: 1024px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 3px;
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

/* Mobile Nav Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  z-index: 105;
  transition: var(--transition);
  padding: 6rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 104;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(107, 70, 193, 0.06) 0%, rgba(255, 255, 255, 0) 50%);
  background-color: var(--white);
  color: var(--text);
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
    padding-top: 9rem;
    padding-bottom: 2rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

/* Tablet: side-by-side layout */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 60% 40%;
    min-height: calc(100vh - 11rem);
    align-items: center;
    gap: 0;
  }
}

/* Desktop: enforce side-by-side, never stack */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 60% 40%;
    align-items: center;
    gap: 0;
  }
}

.hero-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-doctor-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  animation: fadeInUp 0.9s ease;
}

.hero-doctor-degrees {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  animation: fadeInUp 1s ease;
}

.hero-luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107, 70, 193, 0.06);
  border: 1px solid rgba(107, 70, 193, 0.15);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.825rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-self: flex-start;
  animation: fadeInUp 0.8s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  display: inline-block;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
  font-weight: 850;
  animation: fadeInUp 1s ease;
}

.hero-title .hero-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: 1.2rem;
  }
}

.hero-trust-list {
  display: grid;
  grid-template-cols: 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.4s ease;
}

@media (min-width: 480px) {
  .hero-trust-list {
    grid-template-cols: 1fr 1fr;
  }
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.925rem;
  font-weight: 550;
}

.hero-trust-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(107, 70, 193, 0.1);
  border-bottom: 1px solid rgba(107, 70, 193, 0.1);
  padding: 1.25rem 0;
  animation: fadeInUp 1.5s ease;
}

.hero-stat-box {
  display: flex;
  flex-direction: column;
}

.hero-stat-val {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1.1;
}

.hero-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 550;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 1.6s ease;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Hero Image & Doctor Portrait Styles */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  animation: fadeIn 1.5s ease;
  z-index: 5;
  /* Mobile: show below content */
  order: 2;
}

/* Tablet & Desktop: image stays in right column (order reset) */
@media (min-width: 768px) {
  .hero-image-wrapper {
    overflow: visible;
    order: 0;
    justify-content: flex-end;
    align-items: flex-end;
  }
}

/* Mobile image: smaller */
.hero-doctor-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* Tablet image */
@media (min-width: 768px) {
  .hero-doctor-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    object-position: bottom center;
  }
}

/* Desktop image */
@media (min-width: 1024px) {
  .hero-doctor-img {
    width: 100%;
    max-width: none;
    height: 650px;
    object-fit: contain;
    object-position: bottom center;
  }
}

/* --- LEAD FORM SECTION --- */
.lead-section {
  position: relative;
  background: var(--bg-soft);
  overflow: hidden;
}

.lead-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.lead-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lead-grid {
    grid-template-cols: 1fr 1fr;
  }
}

.lead-info h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.lead-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.lead-info-item {
  display: flex;
  gap: 1rem;
}

.lead-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.lead-info-text h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.lead-info-text p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.lead-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(107, 70, 193, 0.1);
  position: relative;
}

/* Zoho Form Embed Container Styling */
.zoho-form-container {
  min-height: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid rgba(107, 70, 193, 0.15);
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.1);
}

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* --- BEFORE & AFTER SECTION --- */
.results-section {
  position: relative;
  background: var(--bg);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  background: rgba(236, 72, 153, 0.1);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

.results-section {
  position: relative;
  background: #0B0F19;
}

.results-section .section-title {
  color: var(--white);
}

.results-section .section-subtitle {
  color: var(--text-muted);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.result-card {
  background: var(--white);
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(107, 70, 193, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: default;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
}

.result-card-inner {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 220px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.result-card-body {
  padding: 1.25rem 1.5rem;
  background: var(--bg-soft);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.result-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.results-disclaimer {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 2rem;
  text-align: center;
}

/* --- WHY CHOOSE US --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px !important;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(107, 70, 193, 0.08);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
}

.service-card-img-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(107, 70, 193, 0.07);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-img {
  opacity: 0.9;
}

.service-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.service-card-content h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 0;
}

.service-card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* --- WHY CHOOSE US --- */
.why-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  height: 100%;
  border-radius: 20px !important;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
}

.why-icon-box-compact {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.why-card-content-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-card-content-compact h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin: 0;
}

.why-card-content-compact p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* --- DOCTOR SECTION --- */
.doctor-section {
  position: relative;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
}

.doctor-card {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .doctor-card {
    grid-template-cols: 0.9fr 1.1fr;
  }
}

.doctor-img-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.doctor-photo-frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(107, 70, 193, 0.15);
  background: var(--white);
  max-width: 400px;
}

.doctor-photo-frame img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.doctor-photo-frame:hover img {
  transform: scale(1.03);
}

.doctor-details-box {
  text-align: left;
}

.doctor-role {
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.doctor-name {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.doctor-degrees {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.doctor-bio {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.doctor-stats {
  display: grid;
  grid-template-cols: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
  .doctor-stats {
    grid-template-cols: repeat(3, 1fr);
  }
}

.stat-item {
  background: var(--white);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  display: block;
}

.awards-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2rem;
}

@media (min-width: 480px) {
  .awards-row {
    flex-direction: row;
    align-items: center;
  }
}

.awards-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.awards-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.award-img {
  height: 55px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: var(--transition);
}

.award-img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* --- GOOGLE REVIEWS SECTION --- */
.reviews-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-soft);
  padding: 1.5rem 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--glass-border);
  margin-bottom: 3.5rem;
}

.reviews-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-rating-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.stars {
  color: #FBBF24;
  display: flex;
  gap: 0.15rem;
}

.reviews-count {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  font-weight: 500;
}

.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.reviews-carousel-track-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 5px;
}

.reviews-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.reviews-carousel-track .review-card {
  flex: 0 0 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .reviews-carousel-track .review-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (min-width: 1024px) {
  .reviews-carousel-track .review-card {
    flex: 0 0 calc((100% - 3rem) / 3);
  }
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--glass-border);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.carousel-control:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(107, 70, 193, 0.3);
}

.carousel-control.prev {
  left: -22px;
}

.carousel-control.next {
  right: -22px;
}

@media (max-width: 1023px) {
  .carousel-control.prev {
    left: -12px;
  }
  .carousel-control.next {
    right: -12px;
  }
}

@media (max-width: 767px) {
  .carousel-control {
    width: 36px;
    height: 36px;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(107, 70, 193, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.review-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

@media (min-width: 1024px) {
  .review-card {
    height: 300px;
    max-height: 300px;
  }
}

.review-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.reviewer-meta h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin: 0;
}

.reviewer-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-card .stars {
  color: #FBBF24;
  display: flex;
  gap: 0.1rem;
}

.review-content {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.4;
  font-style: italic;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #10B981;
  margin-top: auto;
  padding-top: 0.5rem;
}

/* --- CLINIC LOCATIONS --- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location-card {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
}

.location-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(107, 70, 193, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  border: 1px solid rgba(107, 70, 193, 0.15);
  margin-bottom: 0.5rem;
}

.location-card h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 0.5rem 0;
}

.location-address {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
  min-height: 60px;
}

/* --- FAQ SECTION --- */
.faq-section {
  background: var(--bg-soft);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding-right: 1.5rem;
}

.faq-icon-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(107, 70, 193, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(180deg);
  background: var(--primary);
  color: var(--white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
  border-top: 1px solid rgba(107, 70, 193, 0.05);
  margin-top: -1px;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  color: var(--white);
  font-size: 2rem;
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
  animation: pulse 2s infinite;
}

/* --- REDESIGNED COMPACT FOOTER --- */
.compact-footer {
  background: linear-gradient(135deg, #1C0C30 0%, #0F051D 100%);
  color: var(--white);
  padding: 3rem 0 1rem 0;
  border-top: 1px solid rgba(107, 70, 193, 0.2);
  font-family: var(--font-body);
}

.footer-grid-redesign {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .footer-grid-redesign {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid-redesign {
    grid-template-columns: 1.4fr 0.8fr 1.15fr 0.85fr;
    gap: 2rem;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.footer-ratings {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rating-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-grid a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.825rem;
  transition: var(--transition);
}

.footer-links-grid a:hover {
  color: var(--accent-light);
  padding-left: 0.25rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.contact-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  transition: var(--transition);
}

.contact-value:hover {
  color: var(--accent-light);
}

.footer-website-link {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 700;
  transition: var(--transition);
}

.footer-website-link:hover {
  color: var(--white);
}

.footer-socials-redesign {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-socials-redesign a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.825rem;
  transition: var(--transition);
}

.footer-socials-redesign a:hover {
  color: var(--accent-light);
  transform: translateX(3px);
}

.footer-socials-redesign svg {
  color: var(--accent-light);
  transition: var(--transition);
}

.footer-socials-redesign a:hover svg {
  color: var(--white);
}

/* Bottom Footer Bar */
.footer-bottom-redesign {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom-flex {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom-flex {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-dev-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-dev-text a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  transition: var(--transition);
}

.footer-dev-text a:hover {
  color: var(--accent-light);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* --- HERO STATIC CARD STYLES --- */
.hero-static-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 380px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(107, 70, 193, 0.15);
  background: var(--white);
  z-index: 5;
}

@supports (aspect-ratio: 1/1) {
  .hero-static-card {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.hero-static-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-static-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(107, 70, 193, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white);
  text-align: center;
  padding: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* --- MOBILE HORIZONTAL SCROLL OPTIMIZATIONS --- */
@media (max-width: 767px) {
  .locations-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 0.5rem 0.25rem 1.5rem 0.25rem;
    scrollbar-width: none;
  }
  .locations-grid::-webkit-scrollbar {
    display: none;
  }
  .location-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }
}

/* --- STATISTICS STRIP --- */
.stats-strip-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
  color: var(--white);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 1023px) {
  .stats-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .stats-strip-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
}

.stats-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .stats-strip-item {
    flex-direction: column;
    gap: 0.35rem;
  }
}

.stats-strip-icon {
  font-size: 1.5rem;
}

.stats-strip-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* --- AWARDS & RECOGNITION SECTION --- */
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.award-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px !important;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  cursor: pointer;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
}

.award-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(107, 70, 193, 0.08);
  padding: 1rem;
}

.award-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

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

.award-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.award-year {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.award-card-content h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin: 0;
}

.award-card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* --- CERTIFICATE VIEW MODAL --- */
.cert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.cert-modal.active {
  display: flex;
  opacity: 1;
}

.cert-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
  line-height: 1;
}

.cert-modal-close:hover {
  color: var(--accent-light);
  transform: scale(1.1);
}

.cert-modal-content {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cert-modal.active .cert-modal-content {
  transform: scale(1);
}

.cert-modal-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* =============================================
   ZOHO FORM CARD
   ============================================= */
.zoho-form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(107, 70, 193, 0.13);
  border: 1px solid rgba(107, 70, 193, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: auto;
}

/* White overlay that covers Zoho branding footer inside iframe */
.zoho-footer-mask {
  display: none; /* Hidden because we use dynamic iframe height clipping to mask the footer */
}

/* Zoho iframe — mobile first (single-column form) */
.zoho-iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 700px;
}

/* =============================================
   WHATSAPP ALTERNATIVE BUTTON
   ============================================= */
.btn-wa-alt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.btn-wa-alt:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

/* =============================================
   CONSULTATION POPUP MODAL
   ============================================= */
.consult-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 35, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.consult-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.consult-popup {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(107, 70, 193, 0.2);
  border: 1px solid rgba(107, 70, 193, 0.12);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consult-popup-overlay.active .consult-popup {
  transform: translateY(0) scale(1);
}

.consult-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(107, 70, 193, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

.consult-popup-close:hover {
  background: rgba(236, 72, 153, 0.12);
  color: var(--accent);
}

.consult-popup-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(107, 70, 193, 0.08);
}

.consult-popup-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0;
}

.consult-popup-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.consult-popup-form {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: auto;
}

.consult-popup-form iframe {
  width: 100%;
  border: 0;
  display: block;
  min-height: 700px;
}

.consult-popup-actions {
  padding: 1rem 2rem 1.75rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(107, 70, 193, 0.08);
}

.btn-wa-popup {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.btn-wa-popup:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

@media (max-width: 480px) {
  .consult-popup-header {
    padding: 1.5rem 1.25rem 0.75rem;
  }
  .consult-popup-header h3 {
    font-size: 1.2rem;
  }
  .consult-popup-actions {
    padding: 0.75rem 1.25rem 1.25rem;
  }
}

/* =============================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   max-width: 767px
   ============================================= */
@media (max-width: 767px) {

  /* ── Spacing ── */
  .section-padding {
    padding: 40px 0;
  }

  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  /* ── Section Headers ── */
  .section-title {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }

  .section-subtitle {
    font-size: 0.95rem !important;
  }

  /* ── Hero ── */
  .hero {
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Image comes AFTER text on mobile */
  .hero-image-wrapper {
    order: 2;
    margin: 0 auto;
    max-width: 280px;
  }

  .hero-content {
    order: 1;
    text-align: center;
  }

  .hero-luxury-badge {
    align-self: center;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.85rem !important;
    margin-bottom: 0.85rem;
  }

  .hero-doctor-name {
    font-size: 1rem;
    text-align: center;
  }

  .hero-doctor-degrees {
    font-size: 0.8rem;
    text-align: center;
  }

  .hero-subheadline {
    font-size: 0.95rem !important;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .hero-trust-list {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    text-align: left;
  }

  .hero-trust-item {
    font-size: 0.875rem;
  }

  .hero-stats-row {
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100% !important;
    justify-content: center;
    padding: 0.95rem 1.5rem !important;
    font-size: 1rem !important;
  }

  .hero-doctor-img {
    max-width: 100%;
    height: auto;
  }

  /* ── Results / Gallery ── */
  .results-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* ── Services Grid ── */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .service-card-img-wrapper {
    height: 220px;
  }

  /* ── Why Us Grid ── */
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* ── Awards Grid ── */
  .awards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  /* ── Reviews carousel ── */
  .review-card {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  /* ── FAQ ── */
  .faq-header {
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
  }

  .faq-body {
    padding: 0 1.1rem;
    font-size: 0.9rem;
  }

  /* ── Zoho Form Card ── */
  .zoho-form-card {
    border-radius: 14px;
    margin: 0;
  }


  /* ── Footer ── */
  .footer-grid-redesign {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo-link {
    display: flex;
    justify-content: center;
  }

  .footer-ratings {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-socials-redesign {
    justify-content: center;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 0.5rem 1.5rem;
  }

  .footer-contact-list {
    text-align: left;
    display: inline-block;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }

  .footer-dev-text {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  /* ── Consultation Popup ── */
  .consult-popup {
    max-height: 90vh;
    border-radius: 16px;
  }

  /* ── Floating WhatsApp ── */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 5rem;
    right: 1rem;
  }
}

/* ── Sticky Mobile CTA Bar ── */
/* Shows only on mobile — fixed at bottom above WhatsApp button */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--white);
    border-top: 1px solid rgba(107, 70, 193, 0.15);
    box-shadow: 0 -4px 20px rgba(107, 70, 193, 0.1);
    padding: 0.65rem 1rem;
    gap: 0.65rem;
    align-items: center;
  }

  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: opacity 0.2s;
    min-height: 48px;
  }

  .mobile-cta-bar a:active {
    opacity: 0.85;
  }

  .mobile-cta-bar .cta-call {
    background: rgba(107, 70, 193, 0.08);
    color: var(--primary);
    border: 1.5px solid rgba(107, 70, 193, 0.2);
  }

  .mobile-cta-bar .cta-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }

  /* Push page content up so it's not hidden behind the sticky bar */
  body {
    padding-bottom: 74px;
  }

  /* Move WhatsApp float above the sticky bar */
  .whatsapp-float {
    bottom: 5.5rem !important;
  }
}

/* --- SPECIALIZED TREATMENTS SECTION --- */
.treatments-section {
  position: relative;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 3rem;
}

.treatment-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(107, 70, 193, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(107, 70, 193, 0.18);
}

.treatment-card-img-wrapper {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 20px 20px 0 0;
}

.treatment-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.treatment-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.treatment-card-content h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.treatment-card-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0;
  flex: 1;
}

.treatment-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.treatment-card-actions .btn {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

@media (max-width: 1199px) {
  .treatments-grid {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
}

@media (max-width: 991px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ---- SCOPED OVERRIDE: Neutralize glass-card conflicts inside treatments grid ---- */
.treatments-grid .treatment-card.glass-card {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(107, 70, 193, 0.12) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 24px rgba(107, 70, 193, 0.10) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  padding: 0 !important;
  height: 100% !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.treatments-grid .treatment-card.glass-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(107, 70, 193, 0.18) !important;
  border-color: rgba(107, 70, 193, 0.25) !important;
}

.treatments-grid .treatment-card-img-wrapper {
  height: 220px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  border-radius: 20px 20px 0 0 !important;
  width: 100% !important;
}

.treatments-grid .treatment-card-img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.treatments-grid .treatment-card.glass-card:hover .treatment-card-img {
  transform: scale(1.05) !important;
}

.treatments-grid .treatment-card-content {
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.treatments-grid .treatment-card-content h3 {
  font-size: 1.1rem !important;
  color: var(--primary-dark) !important;
  margin-bottom: 0.5rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.treatments-grid .treatment-card-content p {
  color: var(--text-light) !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  margin-bottom: 0 !important;
  flex: 1 !important;
}

.treatments-grid .treatment-card-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
  margin-top: auto !important;
  padding-top: 1rem !important;
}

.treatments-grid .treatment-card-actions .btn {
  width: 100% !important;
  display: block !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  padding: 0.65rem 1rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-sizing: border-box !important;
}

/* =============================================================
   EXPLORE OUR SPECIALIZED TREATMENTS — FULLY ISOLATED CSS
   All classes prefixed with stc- to prevent global conflicts.
   ============================================================= */

.spec-treatments-section {
  position: relative;
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.specialized-treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
  margin-top: 3rem;
}

.specialized-treatment-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(107, 70, 193, 0.10);
  border: 1px solid rgba(107, 70, 193, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.specialized-treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 70, 193, 0.20);
}

.stc-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.stc-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.specialized-treatment-card:hover .stc-img {
  transform: scale(1.08);
}

.stc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.stc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d0a5e;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.stc-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stc-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.stc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.stc-btn-outline {
  background: transparent;
  color: #6b46c1;
  border: 1.5px solid #6b46c1;
}

.stc-btn-outline:hover {
  background: #6b46c1;
  color: #ffffff;
}

.stc-btn-primary {
  background: linear-gradient(135deg, #6b46c1, #9f7aea);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(107, 70, 193, 0.25);
}

.stc-btn-primary:hover {
  background: linear-gradient(135deg, #553c9a, #805ad5);
  box-shadow: 0 6px 20px rgba(107, 70, 193, 0.35);
  color: #ffffff;
}

/* Tablet: 2 cards per row */
@media (max-width: 1199px) and (min-width: 768px) {
  .specialized-treatments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 767px) {
  .specialized-treatments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
