/* ============================================================
   SRESHTA HOSPITALS — PILES LASER TREATMENT LANDING PAGE
   style.css
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary: #00BFA6;
  --primary-dark: #009688;
  --navy: #0A1628;
  --navy-light: #0D1F35;
  --gold: #E6A817;
  --text-dark: #1A1A2E;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --bg-light: #F8FAFB;
  --border: #E5E7EB;
  --red-accent: #EF4444;
  --coral: #F97316;
  --font: 'Inter', sans-serif;
  --radius-card: 14px;
  --radius-btn: 50px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --section-pad-desktop: 80px;
  --section-pad-mobile: 50px;
}

/* ============================================================
   BASE RESET & GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

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

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

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

ul { list-style: none; }

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

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.text-teal { color: var(--primary); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray-light { color: var(--text-light); }
.gold { color: var(--gold); }

/* ============================================================
   PILL / TAG UTILITIES
   ============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 191, 166, 0.12);
  color: var(--primary);
  border: 1px solid rgba(0, 191, 166, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-tag-gold {
  background: rgba(230, 168, 23, 0.12);
  color: var(--gold);
  border-color: rgba(230, 168, 23, 0.3);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.pill-outline {
  background: rgba(0, 191, 166, 0.08);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.pill-green-dot {
  background: rgba(0, 191, 166, 0.1);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.green-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.section-subtext {
  font-size: 1rem;
  color: var(--bg-light);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Center aligned sections */
.symptoms-section .section-heading,
.symptoms-section .section-subtext,
.comparison-section .section-heading,
.comparison-section .section-subtext,
.technology-section .section-heading,
.technology-section .section-subtext,
.surgeons-section .section-heading,
.surgeons-section .section-subtext,
.testimonials-section .section-heading,
.testimonials-section .section-subtext,
.journey-section .section-heading,
.journey-section .section-subtext,
.contact-section .section-heading,
.contact-section .section-subtext {
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: scale(1.02); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

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

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full { width: 100%; }

/* Pulse animation for CTA buttons */
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 191, 166, 0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(0, 191, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 191, 166, 0); }
}

.pulse-btn {
  animation: ctaPulse 3s infinite;
}

/* ============================================================
   HEADER LOGO IMAGE
   ============================================================ */
.header-logo-img {
  height: 46px;
  width: auto;
  display: block;
  /* Logo has white bg — invert on dark header */
  /*filter: brightness(0) invert(1);*/
  transition: var(--transition);
}

.header-logo:hover .header-logo-img { opacity: 0.85; }

/* ============================================================
   SECTION 1: STICKY HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--navy);
  height: 70px;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

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

.logo-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

.logo-sub {
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.header-phone:hover { color: var(--primary); }

/* ============================================================
   HEADER NAV
   ============================================================ */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(0,191,166,0.08);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-light);
  padding: 0 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mobile-nav.open {
  max-height: 500px;
  padding: 12px 24px 20px;
}

.mobile-nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--primary); }

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ============================================================
   SECTION 2: HERO
   ============================================================ */
.hero-section {
  position: relative;
  background: var(--navy);
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(0, 191, 166, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 10% 80%, rgba(14, 30, 60, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.hero-left { padding-right: 20px; }

.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-subheadline {
  color: var(--bg-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-usp-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.usp-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0, 191, 166, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.usp-badge:hover {
  background: rgba(0,191,166,0.1);
  border-color: var(--primary);
  transform: translateX(4px);
}

.usp-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.trust-line {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--bg-light);
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-line span { white-space: nowrap; }

/* Hero Right — Form Card */
.hero-right { position: relative; }

.hero-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: sticky;
  top: 90px;
}

.form-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-card-sub {
  font-size: 0.84rem;
  color: var(--text-gray);
  margin-bottom: 22px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.req { color: var(--red-accent); }
.optional { color: var(--text-gray); font-weight: 400; font-size: 0.78rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red-accent);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--text-gray);
  text-align: center;
  margin-top: 10px;
}

.form-stats {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.stat-pill {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================================
   SECTION 3: SYMPTOMS
   ============================================================ */
.symptoms-section {
  background: var(--white);
  padding: var(--section-pad-desktop) 0;
  text-align: center;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
  align-items: start;
}

/* Symptoms section hero image */
.symptoms-hero-img {
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.symptoms-hero-img img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}

.checklist { display: flex; flex-direction: column; gap: 14px; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text-dark);
  line-height: 1.5;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.checklist li:hover {
  background: rgba(0,191,166,0.05);
  border-color: rgba(0,191,166,0.3);
  transform: translateX(4px);
}

.check-icon {
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.condition-cards { display: flex; flex-direction: column; gap: 16px; }

.condition-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-left-width: 4px;
}

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

.border-teal { border-left-color: var(--primary); }
.border-gold  { border-left-color: var(--gold); }
.border-coral { border-left-color: var(--coral); }

/* Condition card image */
.cond-img-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cond-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.cond-body p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 10px;
}

.cond-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.tag {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

.tag-teal  { background: rgba(0,191,166,0.1); color: var(--text-dark); }
.tag-gold  { background: rgba(230,168,23,0.1); color: var(--text-dark); }
.tag-coral { background: rgba(249,115,22,0.1); color: var(--text-dark); }

.section-cta { text-align: center; }
.cta-nudge {
  color: var(--text-gray);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ============================================================
   SECTION 4: COMPARISON
   ============================================================ */
.comparison-section {
  background: var(--navy);
  padding: var(--section-pad-desktop) 0;
  text-align: center;
}

.comparison-section .section-heading { color: var(--white); }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.compare-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
}

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

.compare-bad {
  background: rgba(239,68,68,0.05);
  border: 1.5px solid rgba(239,68,68,0.3);
}

.compare-good {
  background: rgba(0,191,166,0.05);
  border: 1.5px solid rgba(0,191,166,0.4);
}

.compare-header {
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.compare-header-red {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
}

.compare-header-teal {
  background: rgba(0,191,166,0.15);
  color: var(--primary);
}

.used-at-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 700;
  margin-left: auto;
}

.compare-list {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--bg-light);
}

.x-icon { color: #ef4444; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.check-green { color: var(--primary); font-weight: 800; font-size: 1rem; flex-shrink: 0; }

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--navy-light);
  border: 1px solid rgba(0,191,166,0.2);
  border-radius: var(--radius-card);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0,191,166,0.15);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--bg-light);
  font-weight: 500;
}

/* ============================================================
   SECTION 5: TECHNOLOGY
   ============================================================ */
.technology-section {
  background: var(--bg-light);
  padding: var(--section-pad-desktop) 0;
  text-align: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 20px;
}

/* Laser Visual Card */
.tech-visual { position: relative; }

.laser-visual-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  padding: 48px 36px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0,191,166,0.2);
}

.laser-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,191,166,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.2); }
}

.laser-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.laser-icon-large { font-size: 4rem; margin-bottom: 16px; }

.laser-label {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.laser-sublabel {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.laser-beams {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.laser-beams span {
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  animation: beamPulse 1.5s ease-in-out infinite;
}

.laser-beams span:nth-child(2) { animation-delay: 0.3s; width: 60px; }
.laser-beams span:nth-child(3) { animation-delay: 0.6s; }

@keyframes beamPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.laser-badges-inside {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.laser-badges-inside span {
  background: rgba(0,191,166,0.15);
  color: var(--primary);
  border: 1px solid rgba(0,191,166,0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Laser machine photo card */
.laser-photo-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.laser-machine-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 24px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 100%);
  min-height: 380px;
}

.laser-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
}

/* Tech Feature Cards */
.tech-features { display: flex; flex-direction: column; gap: 16px; }

.tech-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0,191,166,0.3);
}

.tech-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(0,191,166,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.tech-card-body p {
  font-size: 0.93rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 8px;
}

.tech-badge {
  background: rgba(0,191,166,0.1);
 /* color: var(--primary); */
  border: 1px solid rgba(0,191,166,0.2);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ============================================================
   SECTION 6: SURGEONS
   ============================================================ */
.surgeons-section {
  background: var(--white);
  padding: var(--section-pad-desktop) 0;
  text-align: center;
}

.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.doctor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: left;
}

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

.doctor-top {
  padding: 36px 24px 24px;
  display: flex;
  justify-content: center;
}

.doctor-top-blue { background: linear-gradient(135deg, #1a56db 0%, #1e3a8a 100%); }
.doctor-top-teal { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }

.doctor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}

.avatar-blue { background: rgba(255,255,255,0.2); }
.avatar-teal { background: rgba(255,255,255,0.2); }

.doctor-dept-bar {
  padding: 8px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.dept-blue { background: rgba(26,86,219,0.1); color: #1a56db; }
.dept-teal { background: rgba(0,191,166,0.1); color: var(--primary); }

.doctor-body { padding: 20px 24px 24px; }

.doctor-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.doctor-title {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.doctor-qualifications {
  font-size: 0.78rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 12px;
}

.exp-badge {
  display: inline-block;
  background: rgba(230,168,23,0.12);
  color: var(--gold);
  border: 1px solid rgba(230,168,23,0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.specialty-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.specialty-chips span {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Doctor photo (replaces initials avatar) */
.doctor-photo-top {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e8f8f6 0%, #d0f0eb 100%);
}

.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Trust Badges Row */
.trust-badges-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge-pill {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================================
   SECTION 7: TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--navy);
  padding: var(--section-pad-desktop) 0;
  text-align: center;
}

.testimonials-section .section-heading { color: var(--white); }

.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.stars-gold { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

.rating-num {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.rating-label { color: var(--text-light); font-size: 0.9rem; }

.google-g {
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: #4285F4;
  flex-shrink: 0;
}

/* Slider */
.testimonials-slider {
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}

.quote-icon {
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 0.8;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: var(--bg-light);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 12px 0 20px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}

.avatar-teal-c   { background: var(--primary); }
.avatar-green-c  { background: #22c55e; }
.avatar-orange-c { background: var(--coral); }

.patient-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.treatment-tag {
  background: rgba(0,191,166,0.15);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Dots & Arrows */
.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 28px;
  border-radius: 5px;
}

.slider-arrows {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ============================================================
   SECTION 7B: VIDEO TESTIMONIALS
   ============================================================ */
.video-testimonials-section {
  background: var(--bg-light);
  padding: var(--section-pad-desktop) 0;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
  text-align: left;
}

/* Video Card */
.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

/* Facade (thumbnail + play button) */
.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  cursor: pointer;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.88);
}

.video-facade:hover .video-thumb {
  transform: scale(1.03);
  filter: brightness(0.7);
}

/* YouTube-style play button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.video-facade:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-duration-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0,0,0,0.72);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

/* Active iframe (replaces facade on click) */
.video-facade.playing {
  cursor: default;
}

.video-facade.playing .video-thumb,
.video-facade.playing .video-play-btn,
.video-facade.playing .video-duration-badge {
  display: none;
}

.video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Card body */
.video-card-body {
  padding: 18px 20px 20px;
}

.video-patient-quote {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
  min-height: 44px;
  font-weight: 600;
}

.video-patient-quote::before { content: '"'; color: var(--primary); font-weight: 900; }
.video-patient-quote::after  { content: '"'; color: var(--primary); font-weight: 900; }

.video-patient-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-patient-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.88rem;
  margin-bottom: 3px;
}

/* ── Slider wrapper ── */
.video-slider-wrap {
  position: relative;
}

/* ── Prev / Next arrows (hidden on desktop) ── */
.video-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(0,191,166,0.4);
  background: var(--white);
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: var(--transition);
}

.video-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.video-arrow-prev { left: -6px; }
.video-arrow-next { right: -6px; }

/* ── Dot indicators (hidden on desktop) ── */
.video-dots {
  display: none;
  gap: 7px;
  justify-content: center;
  margin-top: 18px;
}

.video-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.video-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 24px;
  border-radius: 5px;
}

/* ── Desktop: plain 3-col grid ── */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ── Mobile: horizontal scroll-snap slider ── */
@media (max-width: 767px) {
  .video-slider-wrap {
    /* room for arrows */
    padding: 0 0 4px;
  }

  .video-arrow {
    display: flex;
  }

  .video-dots {
    display: flex;
  }

  .video-grid {
    /* override grid → flex scroll track */
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;       /* Firefox */
    padding: 4px 2px 8px;
    margin-bottom: 0;
    /* remove grid columns */
    grid-template-columns: unset;
  }

  .video-grid::-webkit-scrollbar {
    display: none;               /* Chrome / Safari */
  }

  .video-card {
    /* each card takes ~88% of viewport width */
    flex: 0 0 88%;
    scroll-snap-align: center;
    /* disable hover lift on touch */
    transition: none;
  }

  .video-card:hover {
    transform: none;
    box-shadow: var(--shadow-card);
  }
}

/* ============================================================
   SECTION 8: HOW IT WORKS
   ============================================================ */
.journey-section {
  background: var(--white);
  padding: var(--section-pad-desktop) 0;
  text-align: center;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}

/* Connecting line */
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  width: calc(75%);
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--navy), var(--gold), var(--primary));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

.step-teal  { background: var(--primary); }
.step-navy  { background: var(--navy); }
.step-gold  { background: var(--gold); }

.step-number {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.step-connector { display: none; }

/* ============================================================
   SECTION 9: CONTACT / LEAD FORM
   ============================================================ */
.contact-section {
  background: var(--bg-light);
  padding: var(--section-pad-desktop) 0;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.info-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.info-card {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  align-items: flex-start;
}

.info-card:hover {
  border-color: rgba(0,191,166,0.3);
  box-shadow: var(--shadow-card-hover);
}

.info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.info-value {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.info-value a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.info-value a:hover { text-decoration: underline; }

.map-wrapper { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

/* ============================================================
   SECTION 10: URGENCY CTA
   ============================================================ */
.urgency-section {
  position: relative;
  background: var(--navy);
  padding: var(--section-pad-desktop) 0;
  overflow: hidden;
}

.urgency-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,191,166,0.12) 0%, transparent 60%),
              linear-gradient(225deg, rgba(0,191,166,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.urgency-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.urgency-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin: 16px 0 14px;
  line-height: 1.2;
}

.urgency-sub {
  color: var(--bg-light);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.urgency-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.urgency-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.reassure-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--bg-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   SECTION 11: FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-main { padding: 40px 0; }

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-logo .logo-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-address {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-phone {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

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

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-light);
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--primary); }

/* ============================================================
   MOBILE STICKY BOTTOM BAR
   ============================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  height: 64px;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 12px;
}

.mobile-bar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mobile-bar-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.mobile-bar-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.mobile-bar-enquire:hover { background: var(--primary-dark); }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
/* ============================================================
   INLINE FORM ERROR MESSAGES
   ============================================================ */
.form-error-msg {
  display: none;
  color: var(--red-accent);
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  padding-left: 2px;
}

/* Spinner inside submit button */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
}

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

/* ============================================================
   SIDE TAB BUTTON (fixed right edge)
   ============================================================ */
.side-tab-wrapper {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  align-items: center;
  /* shift panel to the left of the tab */
}

/* The vertical pill tab */
.side-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0px 0 0 0px;
  padding: 18px 10px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: -4px 0 20px rgba(0,191,166,0.25);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.side-tab-btn:hover {
  background: var(--primary-dark);
  padding-right: 14px;
}

.side-tab-icon {
  writing-mode: horizontal-tb;
  transform: rotate(180deg);
  font-size: 1rem;
}

/* Sliding panel */
.side-tab-panel {
  position: absolute;
  right: 100%;           /* sits to the left of the tab button */
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  width: 320px;
  background: var(--white);
  border-radius: 16px 0 0 16px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.side-tab-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.side-tab-panel-inner {
  padding: 24px 22px;
  position: relative;
}

.side-tab-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--text-gray);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: var(--transition);
}

.side-tab-close:hover { color: var(--red-accent); }

.side-tab-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  padding-right: 24px;
}

.side-tab-sub {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 18px;
}

.side-tab-phone-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 10px;
  border: 1.5px solid rgba(0,191,166,0.3);
  border-radius: 10px;
  transition: var(--transition);
}

.side-tab-phone-link:hover {
  background: rgba(0,191,166,0.06);
}

/* Pulsing dot on tab to draw attention */
.side-tab-btn::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

/* Hide side tab on mobile (bottom bar handles it) */
@media (max-width: 767px) {
  .side-tab-wrapper { display: none; }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,191,166,0.35);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-icon { font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE — TABLET (768px - 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .steps-row::before { display: none; }

  .tech-grid { gap: 24px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --section-pad-desktop: var(--section-pad-mobile);
  }

  /* Header mobile */
  .header-phone span { display: none; }
  .header-phone::before { content: '📞'; }

  /* Hero mobile */
  .hero-section { padding: 100px 0 60px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-left { padding-right: 0; }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn { width: 100%; justify-content: center; }

  .hero-form-card { position: static; }

  /* Symptoms */
  .symptoms-grid { grid-template-columns: 1fr; }

  /* Comparison */
  .comparison-grid { grid-template-columns: 1fr; }

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

  /* Technology */
  .tech-grid { grid-template-columns: 1fr; }

  .laser-visual-card { min-height: 260px; }

  /* Doctors */
  .doctors-grid { grid-template-columns: 1fr; }

  /* Journey steps */
  .steps-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .steps-row::before { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Urgency buttons */
  .urgency-buttons {
    flex-direction: column;
    align-items: center;
  }
  .urgency-buttons .btn { width: 100%; max-width: 320px; }

  /* Footer */
  .footer-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }

  /* Show mobile sticky bar */
  .mobile-sticky-bar {
    display: flex;
  }

  /* Extra padding at bottom for sticky bar */
  .site-footer { padding-bottom: 60px; }

  /* Trust line stack */
  .trust-line {
    flex-direction: column;
    gap: 6px;
  }

  /* Toast full width on mobile */
  .toast {
    left: 16px;
    right: 16px;
    width: auto;
    transform: translateX(0) translateY(-20px);
    white-space: normal;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
  }

  .toast.show {
    transform: translateX(0) translateY(0);
  }

  /* Testimonial card padding */
  .testimonial-card { padding: 24px 20px; }

  /* Doctor card adjust */
  .specialty-chips { flex-wrap: wrap; }

  .doctor-photo-top { height: 420px; }

  /* Symptoms image on mobile */
  .symptoms-hero-img { max-height: 160px; }

  /* Condition card image */
  .cond-img-wrap { width: 64px; height: 64px; }

  /* Laser machine photo */
  .laser-machine-img { min-height: 240px; padding: 16px; }

  /* Trust badges stack */
  .trust-badges-row { gap: 8px; }

  /* Section tag center */
  .symptoms-section,
  .comparison-section,
  .technology-section,
  .surgeons-section,
  .journey-section,
  .contact-section {
    text-align: center;
  }

  .symptoms-grid,
  .contact-grid { text-align: left; }
}

/* ============================================================
   SMALL MOBILE (< 400px)
   ============================================================ */
@media (max-width: 399px) {
  .hero-headline { font-size: 1.7rem; }
  .urgency-heading { font-size: 1.5rem; }
  .stat-number { font-size: 1.6rem; }
  .header-cta .btn-sm { padding: 8px 14px; font-size: 0.78rem; }
  .site-header { height: auto; }
  .header-inner { height: 70px; }
}
