/* ============================================================
   Esteworld USA — Premium Medical Luxury Design System
   Inspired by Esteworld Turkey's visual language
   ============================================================ */

/* ── Google Fonts ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --black:        #0A0A0A;
  --black-rich:   #050505;
  --white:        #FFFFFF;
  --ivory:        #FAF8F4;
  --ivory-dark:   #F2EDE5;
  --gold:         #C9A75B;
  --gold-dark:    #B08A42;
  --gold-light:   #DFC07A;
  --gold-subtle:  rgba(201,167,91,0.12);
  --gray-text:    #6D6D6D;
  --gray-light:   #9A9A9A;
  --gray-border:  #E8E2D8;
  --gray-bg:      #F5F5F5;
  --whatsapp:     #25D366;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold:  0 8px 32px rgba(201,167,91,0.25);
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', 'Montserrat', sans-serif;
  --container:    1280px;
  --gutter:       40px;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--gray-text); line-height: 1.8; }

.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }
.text-center { text-align: center; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 140px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.7);
}

.section-ivory {
  background: var(--ivory);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Section Header ─────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
  line-height: 1.25;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.8;
}

/* ── Gold Divider ───────────────────────────────────────── */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto 28px;
  border-radius: 2px;
}

.gold-line-left {
  margin-left: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,167,91,0.35);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,167,91,0.45);
}

.btn-gold:active { transform: translateY(0); }

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

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

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-black:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--ivory);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  background: #1fba59;
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-lg { padding: 18px 42px; font-size: 14px; }

/* ── HEADER ─────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 0;
}

#header.header-transparent {
  background: transparent;
}

#header.header-solid,
#header.scrolled {
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.header-logo a {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 3px;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

/* Dropdown */
.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border-top: 2px solid var(--gold);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  transition: all var(--transition);
}

.nav-dropdown a:hover {
  background: var(--gold-subtle);
  color: var(--gold);
  padding-left: 26px;
}

.nav-dropdown a .icon {
  font-size: 14px;
  width: 18px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(37,211,102,0.15);
  border-radius: 50%;
  color: var(--whatsapp);
  font-size: 18px;
  transition: all var(--transition);
}

.wa-icon-btn:hover {
  background: var(--whatsapp);
  color: var(--white);
  transform: scale(1.1);
}

/* Mobile toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

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

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black-rich);
  z-index: 999;
  overflow-y: auto;
  padding: 20px 0 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 14px 30px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  padding-left: 38px;
  background: rgba(201,167,91,0.06);
}

.mobile-nav .mobile-submenu a {
  padding-left: 48px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.mobile-nav .mobile-submenu a:hover {
  color: var(--gold);
  padding-left: 58px;
}

.mobile-nav-actions {
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,5,5,0.80) 0%,
    rgba(5,5,5,0.55) 50%,
    rgba(5,5,5,0.30) 100%
  );
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.7) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,167,91,0.15);
  border: 1px solid rgba(201,167,91,0.4);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero Form */
.hero-form-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,167,91,0.2);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero-form-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 24px;
  line-height: 1.5;
}

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

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,167,91,0.12);
}

.form-control::placeholder { color: var(--gray-light); }

select.form-control { appearance: none; 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='%236D6D6D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-error {
  font-size: 12px;
  color: #e05151;
  margin-top: 5px;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
}

.form-check label {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.5;
  cursor: pointer;
}

/* ── TREATMENT CARDS ────────────────────────────────────── */
.treatment-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.treatment-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  group: true;
}

.treatment-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.treatment-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.treatment-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.treatment-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.treatment-card:hover .treatment-card-img-wrap::after {
  opacity: 1;
}

.treatment-card-body {
  padding: 24px 20px;
}

.treatment-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.treatment-card-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.treatment-card:hover .treatment-card-title {
  color: var(--gold);
}

.treatment-card-text {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.treatment-card-link {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}

.treatment-card:hover .treatment-card-link {
  gap: 10px;
}

/* ── WHY SECTION ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-item {
  padding: 36px 28px;
  background: rgba(201,167,91,0.04);
  border: 1px solid rgba(201,167,91,0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height var(--transition-slow);
}

.why-item:hover {
  background: rgba(201,167,91,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-item:hover::before {
  height: 100%;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.why-item:hover .why-icon {
  background: var(--gold);
  transform: rotate(-5deg) scale(1.05);
}

.why-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 10px;
}

.why-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ── CLINICS SECTION ────────────────────────────────────── */
.clinics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.clinic-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--black);
  box-shadow: var(--shadow-lg);
}

.clinic-card-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  opacity: 0.8;
  transition: all var(--transition-slow);
}

.clinic-card:hover .clinic-card-img {
  opacity: 0.6;
  transform: scale(1.03);
}

.clinic-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, transparent 100%);
}

.clinic-tag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.clinic-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.clinic-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── PATIENT JOURNEY ────────────────────────────────────── */
.journey-steps {
  display: flex;
  gap: 0;
  counter-reset: step;
  position: relative;
  padding: 40px 0;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  z-index: 0;
}

.journey-step {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.journey-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 0 0 6px var(--white);
}

.journey-step:hover .journey-step-num {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--white), var(--shadow-gold);
}

.journey-step-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.journey-step-text {
  font-size: 12.5px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ── GALLERY ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--black);
}

.gallery-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.gallery-item:hover .gallery-img {
  opacity: 0.75;
  transform: scale(1.03);
}

.gallery-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.gallery-label.after {
  background: rgba(201,167,91,0.85);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── DOCTORS ─────────────────────────────────────────────── */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.doctor-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}

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

.doctor-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: var(--ivory-dark);
}

.doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

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

.doctor-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.doctor-title {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.doctor-specialty {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
}

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

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

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: rgba(201,167,91,0.1);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
}

.stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.author-meta {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 2px;
}

/* ── BLOG CARDS ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

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

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

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

.blog-category-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-subtle);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover .blog-card-title {
  color: var(--gold);
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-light);
  padding-top: 16px;
  border-top: 1px solid var(--gray-border);
}

.read-more-link {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}

.read-more-link:hover { gap: 10px; }

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--black);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,167,91,0.12) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

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

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--black);
  padding: 50px 0;
  border-top: 1px solid rgba(201,167,91,0.2);
  border-bottom: 1px solid rgba(201,167,91,0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(201,167,91,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── TRUST LOGOS ────────────────────────────────────────── */
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  height: 36px;
  filter: grayscale(1) brightness(0.6);
  transition: all var(--transition);
  opacity: 0.5;
}

.trust-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  gap: 20px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 14.5px;
  color: var(--gray-text);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); font-size: 10px; }

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(56% 100% at 50% 100%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,167,91,0.1) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── FLOATING ELEMENTS ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  color: var(--white);
}

.whatsapp-float svg { width: 20px; height: 20px; fill: currentColor; }
.whatsapp-float .wa-text { white-space: nowrap; }

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--black);
  padding: 12px 16px;
  border-top: 1px solid rgba(201,167,91,0.2);
  gap: 10px;
}

.mobile-cta-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 10px;
  font-size: 11.5px;
}

/* ── EXIT INTENT POPUP ──────────────────────────────────── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup-overlay.active {
  display: flex;
}

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  position: relative;
  animation: popupIn 0.4s cubic-bezier(0.4,0,0.2,1);
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-top {
  background: var(--black);
  padding: 40px;
  text-align: center;
  position: relative;
}

.exit-popup-top h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.exit-popup-top p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

.exit-popup-body {
  padding: 32px;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}

.popup-close:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--black-rich);
  color: rgba(255,255,255,0.65);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub  { color: var(--gold); }

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 16px 0 24px;
}

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

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}

.footer-contact .icon {
  color: var(--gold);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

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

.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,167,91,0.2);
}

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

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-newsletter p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 13px;
  outline: none;
  font-family: inherit;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.footer-newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(201,167,91,0.05);
}

.footer-newsletter-form button {
  background: var(--gold);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.footer-newsletter-form button:hover { background: var(--gold-dark); }

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

.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  max-width: 600px;
  line-height: 1.5;
}

/* ── TABS ───────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--gray-border);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 14px 28px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}

.tab-btn:hover {
  color: var(--gold);
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── PAGINATION ─────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  transition: all var(--transition);
}

.page-link:hover, .page-link.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── UTILITY ─────────────────────────────────────────────── */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }
.w-100 { width: 100%; }

/* Disclaimer */
.disclaimer {
  font-size: 12px;
  color: var(--gray-light);
  font-style: italic;
  border-top: 1px solid var(--gray-border);
  padding-top: 12px;
  margin-top: 12px;
  line-height: 1.6;
}

/* Tag */
.tag {
  display: inline-block;
  background: var(--gold-subtle);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Alert */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 16px;
  border-left: 3px solid;
}

.alert-success {
  background: rgba(37,211,102,0.08);
  color: #1a7a3f;
  border-color: #25D366;
}

.alert-error {
  background: rgba(224,81,81,0.08);
  color: #a33;
  border-color: #e05151;
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .treatment-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --gutter: 24px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { display: none; } /* hidden on mobile; shown inline instead */
  .why-grid { grid-template-columns: 1fr 1fr; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .clinics-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .section { padding: 70px 0; }
  .treatment-cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .doctors-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-logos { gap: 24px; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
  .whatsapp-float { bottom: 80px; right: 16px; padding: 12px 16px; }
  .whatsapp-float .wa-text { display: none; }
  .whatsapp-float { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }
  .journey-steps { flex-direction: column; gap: 20px; }
  .journey-steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .treatment-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .grid-2 { grid-template-columns: 1fr; }
}
