/* ============================================
   CENTRO EUROPEO DE CIRUGÍA PLÁSTICA
   Static JAMstack Site — Design System
   Aesthetic: Refined Luxury Medical — Cream & Deep Navy
   ============================================ */

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

:root {
  --navy: #0d1f35;
  --navy-light: #162d4a;
  --gold: #b89a5c;
  --gold-light: #d4b87a;
  --cream: #f8f4ee;
  --cream-dark: #ede7dc;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #6b6b6b;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --shadow-soft: 0 4px 30px rgba(13,31,53,0.08);
  --shadow-med: 0 8px 40px rgba(13,31,53,0.14);
  --shadow-strong: 0 20px 60px rgba(13,31,53,0.22);

  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-med); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,154,92,0.4); }

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  font-size: 0.85rem;
  padding: 1rem 2.4rem;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
}
.btn-whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,31,53,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,154,92,0.2);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.logo-text span:last-child {
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 0.2rem; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  border-radius: 2px;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--gold); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy);
  border: 1px solid rgba(184,154,92,0.25);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border-radius: 2px;
  box-shadow: var(--shadow-strong);
}
.main-nav > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 1.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.dropdown a:hover { color: var(--gold); background: rgba(184,154,92,0.08); padding-left: 1.8rem; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.header-phone {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 14px; height: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://centroeuropeodecirugia.com/wp-content/uploads/2017/08/slider2-1.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,53,0.95) 0%, rgba(13,31,53,0.6) 60%, rgba(13,31,53,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: heroIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  gap: 3rem;
  z-index: 2;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── SERVICES SECTION ── */
.services {
  padding: 7rem 0;
  background: var(--cream);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  border: 1.5px solid var(--cream-dark);
}
.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); z-index: 2; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.service-icon img { width: 32px; height: 32px; object-fit: contain; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.service-link:hover { gap: 0.9rem; }
.service-link::after { content: '→'; }

/* ── DOCTOR SECTION ── */
.doctor-section {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.doctor-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,154,92,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.doctor-img-wrap {
  position: relative;
}
.doctor-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  filter: grayscale(20%);
}
.doctor-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  border-radius: 2px;
}
.doctor-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  opacity: 0.85;
}
.doctor-content .section-label { color: var(--gold); }
.doctor-content .section-title { color: var(--white); }
.doctor-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin: 1.5rem 0;
}
.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.credential {
  border: 1px solid rgba(184,154,92,0.25);
  padding: 1rem 1.2rem;
  border-radius: 2px;
}
.credential strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.credential span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 7rem 0;
  background: var(--cream-dark);
}
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-title { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 1rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.testimonial-author {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.stars span { color: var(--gold); font-size: 0.8rem; }

/* ── WHATSAPP CTA SECTION ── */
.cta-section {
  padding: 7rem 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(184,154,92,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(37,211,102,0.04) 0%, transparent 100%);
  pointer-events: none;
}
.cta-section .section-label { color: var(--gold); }
.cta-section .section-title { color: var(--white); margin: 0 auto 1.2rem; }
.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.whatsapp-note {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 7rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.contact-info p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-item-body strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-item-body span, .contact-item-body a {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  display: block;
  transition: var(--transition);
}
.contact-item-body a:hover { color: var(--gold); }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link {
  width: 42px; height: 42px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--navy); }
.social-link svg { width: 16px; height: 16px; }
.map-container {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-med);
  height: 400px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(184,154,92,0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 320px;
  margin-top: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.footer-logo img {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}
.footer-nav h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float a:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; color: white; }
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── SERVICES PAGE ── */
.page-hero {
  padding: 9rem 0 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  margin-top: 1rem;
  line-height: 1.8;
}

.procedures-section { padding: 5rem 0 7rem; background: var(--cream); }
.procedures-category { margin-bottom: 5rem; }
.cat-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.cat-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
}
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.procedure-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.procedure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.procedure-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: var(--transition);
}
.procedure-card:hover img { transform: scale(1.04); }
.procedure-card-body { padding: 1.2rem 1.4rem; }
.procedure-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.procedure-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.procedure-cta::after { content: '→'; }

/* ── ABOUT PAGE ── */
.about-content { padding: 5rem 0 7rem; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  box-shadow: var(--shadow-med);
}
.about-body h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.about-body .subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.education-list { margin-top: 1.5rem; }
.education-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}
.education-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta { margin-top: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .procedures-grid { grid-template-columns: repeat(3, 1fr); }
  .doctor-grid { grid-template-columns: 1fr; gap: 3rem; }
  .doctor-img-wrap img { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .credentials { grid-template-columns: 1fr; }
  .procedures-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .procedures-grid { grid-template-columns: 1fr 1fr; }
}
