/* ============================================================
   I.D. Clinic — Art of Medicine
   Ultra-Luxury Design System
   Color Palette: Teal (#1a9ea0 / #2bb8ba), Gold (#c9a96e), White, Charcoal
   ============================================================ */

@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=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --teal:        #1a9ea0;
  --teal-dark:   #147e80;
  --teal-light:  #2bb8ba;
  --teal-pale:   #e8f7f7;
  --gold:        #c9a96e;
  --gold-light:  #e0c898;
  --gold-dark:   #a8824a;
  --white:       #ffffff;
  --off-white:   #f9f8f5;
  --charcoal:    #1c1c1c;
  --text-dark:   #2d2d2d;
  --text-mid:    #555555;
  --text-light:  #888888;
  --border:      #e8e4dd;
  --shadow-sm:   0 2px 16px rgba(26,158,160,0.08);
  --shadow-md:   0 8px 40px rgba(26,158,160,0.14);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   28px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', 'Segoe UI', Arial, sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
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; font-family: var(--font-sans); font-weight: 600; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1.2rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Layout Helpers ────────────────────────────────────────── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-teal { color: var(--teal) !important; }
.text-gold { color: var(--gold) !important; }
.bg-teal { background: var(--teal); }
.bg-off-white { background: var(--off-white); }
.bg-charcoal { background: var(--charcoal); }

/* ── Divider / Ornament ────────────────────────────────────── */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.2rem 0 2rem;
}
.gold-line-center { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,158,160,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,158,160,0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.88rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.75rem; }

/* ── Top Bar ───────────────────────────────────────────────── */
#top-bar {
  background: var(--teal);
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 0;
  letter-spacing: 0.02em;
}
#top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
#top-bar a { color: inherit; transition: color 0.2s; }
#top-bar a:hover { color: var(--gold-light); }
.top-bar-item { display: flex; align-items: center; gap: 0.45rem; }
.top-bar-item svg { opacity: 0.8; flex-shrink: 0; }
.top-bar-right { display: flex; align-items: center; gap: 1.5rem; }
.phone-btn-top {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.phone-btn-top:hover { background: rgba(255,255,255,0.3); }

/* ── Language Switcher ─────────────────────────────────────── */
.lang-switch { display: flex; align-items: center; gap: 0.4rem; }
.lang-switch a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  transition: var(--transition);
}
.lang-switch a.active, .lang-switch a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.2);
}
.lang-sep { color: rgba(255,255,255,0.3); }

/* ── Navigation ────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
#navbar .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.nav-logo img { height: 52px; width: auto; }
.nav-logo span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 500;
}

.nav-menu { display: flex; align-items: center; gap: 0.2rem; }
.nav-item { position: relative; }
.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: var(--teal-pale); }
.nav-link svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 999;
  padding: 0.6rem;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--teal-pale); color: var(--teal); padding-left: 1.4rem; }

.nav-cta { margin-left: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

/* ── Hero ──────────────────────────────────────────────────── */
#hero {
  min-height: 92vh;
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 45%, #2ecccf 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 2.4rem;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-item .stat-num span { color: var(--gold-light); }
.stat-item .stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-frame {
  width: 460px;
  height: 560px;
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  border: 4px solid rgba(255,255,255,0.15);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}
.hero-badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { color: var(--teal); }
.hero-badge-text .label { font-size: 0.7rem; color: var(--text-light); }
.hero-badge-text .value { font-size: 0.92rem; font-weight: 700; color: var(--charcoal); }
.hero-badge2 {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  color: var(--white);
  text-align: center;
  box-shadow: 0 10px 30px rgba(201,169,110,0.4);
}
.hero-badge2 .big { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; line-height: 1; }
.hero-badge2 .small { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}

/* ── Marquee / Ticker ──────────────────────────────────────── */
.marquee-section {
  background: var(--charcoal);
  padding: 1.1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); }
.service-icon svg { color: var(--teal); width: 24px; height: 24px; transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; font-family: var(--font-sans); font-weight: 700; }
.service-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.2rem; }
.service-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex; align-items: center; gap: 0.4rem;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 0.8rem; }

/* ── Doctors Section ───────────────────────────────────────── */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.doctor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.doctor-photo-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--teal-pale); }
.doctor-photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.doctor-card:hover .doctor-photo-wrap img { transform: scale(1.05); }
.doctor-exp-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(26,158,160,0.4);
}
.doctor-exp-badge .num { display: block; font-size: 1.4rem; font-family: var(--font-serif); font-weight: 400; }
.doctor-info { padding: 1.4rem 1.5rem; }
.doctor-info h3 { font-size: 1.02rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 0.35rem; }
.doctor-specialty { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 1.1rem; }
.doctor-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ── Why Us / Features ─────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.feature-item { text-align: center; padding: 2.5rem 2rem; }
.feature-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--teal-pale), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.feature-item h4 { font-size: 1.05rem; margin-bottom: 0.6rem; font-weight: 700; }
.feature-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ── Check-up Section ──────────────────────────────────────── */
.checkup-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.checkup-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.checkup-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); transform: translateY(-3px); }
.checkup-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.checkup-tag.male { background: #e8f0ff; color: #3d6bd4; }
.checkup-card h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 0.8rem; line-height: 1.4; }
.checkup-includes { margin-bottom: 1.5rem; }
.checkup-includes li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.checkup-includes li:last-child { border-bottom: none; }
.checkup-includes li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.checkup-price { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.2rem; }
.checkup-price .old { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; }
.checkup-price .current { font-family: var(--font-serif); font-size: 1.8rem; color: var(--teal); font-weight: 400; }
.checkup-price .currency { font-size: 0.85rem; color: var(--text-mid); }

/* ── Reviews ───────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.review-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--teal-pale);
  position: absolute;
  top: -1rem; left: 1.2rem;
  line-height: 1;
  font-weight: 400;
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars span { color: #f5c518; font-size: 1rem; }
.review-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.review-author { font-size: 0.8rem; font-weight: 700; color: var(--charcoal); }
.review-date { font-size: 0.75rem; color: var(--text-light); margin-top: 0.2rem; }

/* ── Partners ──────────────────────────────────────────────── */
.partners-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 3rem; margin-top: 2.5rem; }
.partner-logo img { height: 48px; width: auto; filter: grayscale(1) opacity(0.5); transition: var(--transition); }
.partner-logo:hover img { filter: grayscale(0) opacity(1); }

/* ── Appointment Form ──────────────────────────────────────── */
.form-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #1db8ba 100%);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.form-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 2; }
.form-copy h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.2rem; }
.form-copy p { color: rgba(255,255,255,0.8); font-size: 1.02rem; line-height: 1.8; margin-bottom: 2rem; }
.form-highlights { display: flex; flex-direction: column; gap: 1rem; }
.form-highlight-item { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.9); font-size: 0.88rem; }
.form-highlight-item .icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.appt-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.appt-form h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 0.4rem; color: var(--charcoal); }
.appt-form .sub { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-mid); margin-bottom: 0.45rem; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}
.form-group select { cursor: pointer; }
.form-check { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.8rem; color: var(--text-mid); margin-bottom: 1.4rem; }
.form-check input[type=checkbox] { margin-top: 2px; accent-color: var(--teal); flex-shrink: 0; }
.form-check a { color: var(--teal); text-decoration: underline; }

/* ── Map / Contact ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info { padding: 0; }
.contact-block { margin-bottom: 2rem; }
.contact-block-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.contact-block p, .contact-block a { font-size: 0.95rem; color: var(--text-dark); line-height: 1.8; }
.contact-block a:hover { color: var(--teal); }
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 0.9rem;
}
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ────────────────────────────────────────────────── */
#footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand .logo-wrap { margin-bottom: 1.2rem; }
.footer-brand .logo-wrap img { height: 44px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.8rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.85rem;
}
.social-btn:hover { background: var(--teal); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Scroll to Top ─────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}
#scroll-top.show { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--teal-dark); }

/* ── Cookie Banner ─────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(28,28,28,0.97);
  color: rgba(255,255,255,0.85);
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  z-index: 9999;
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner a { color: var(--gold-light); text-decoration: underline; }
#cookie-accept { padding: 0.55rem 1.5rem; background: var(--teal); color: var(--white); border: none; border-radius: 20px; cursor: pointer; font-size: 0.8rem; font-weight: 600; }

/* ── Animations ────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ── Inner Page Hero ───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; position: relative; z-index: 2; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 { color: var(--white); position: relative; z-index: 2; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; position: relative; z-index: 2; margin-top: 0.8rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-copy { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  #top-bar { display: none; }
  #navbar { top: 0; overflow: visible; }
  .navbar-lang { display: flex; align-items: center; gap: 0; }
  .navbar-lang a { font-size: 0.8rem; font-weight: 600; padding: 0.25rem 0.6rem; color: var(--teal); text-decoration: none; border-radius: 4px; transition: background 0.2s; }
  .navbar-lang a.active { background: var(--teal); color: #fff; }
  .navbar-lang a:hover:not(.active) { background: var(--teal-pale); }
  .navbar-lang .lang-sep { color: var(--border); font-size: 0.75rem; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(201,169,110,0.93) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ctext x='8' y='17' font-size='14' fill='%23e0c898' opacity='0.35' font-family='sans-serif'%3E%2B%3C/text%3E%3C/svg%3E"); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); flex-direction: column; justify-content: flex-start; align-items: stretch; z-index: 9998; padding: 0.5rem 0 1rem; gap: 0; box-shadow: 0 12px 40px rgba(0,0,0,0.18); border: 1.5px solid rgba(255,255,255,0.65); border-top: none; }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-item { border-bottom: 1px solid rgba(224,200,152,0.35); width: 100%; }
  .nav-menu .nav-item:last-child { border-bottom: none; }
  .nav-menu .nav-link { color: #fff; text-shadow: none; text-transform: none; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.5rem 1.5rem; width: 100%; justify-content: center; display: flex; align-items: center; gap: 0.4rem; background: transparent !important; }
  .nav-menu .nav-link:hover .nav-label-bubble, .nav-menu .nav-link:active .nav-label-bubble { background: var(--teal-dark); }
  .nav-menu .nav-link:hover, .nav-menu .nav-link:active { background: transparent !important; }
  .nav-label-bubble::before { content: '•'; color: var(--gold); font-size: 1.1em; line-height: 1; flex-shrink: 0; }
  .nav-label-bubble::after { content: '•'; color: var(--gold); font-size: 1.1em; line-height: 1; flex-shrink: 0; }
  .nav-label-bubble { background: var(--teal); border-radius: 999px; padding: 0.18rem 0; display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; min-width: 160px; box-shadow: none; }
  .nav-menu .nav-link svg { filter: drop-shadow(0 0 1px rgba(255,255,255,0.6)); }
  .nav-menu .dropdown { background: rgba(224,200,152,0.2); border-top: 1px solid rgba(224,200,152,0.3); }
  .nav-menu .dropdown a { color: #fff; text-shadow: none; font-size: 0.85rem; font-weight: 700; padding: 0.4rem 1.5rem; margin: 0.15rem 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; border-radius: 6px; }
  .nav-menu .dropdown a::before, .nav-menu .dropdown a::after { content: '+'; color: var(--teal); font-size: 1.1em; flex-shrink: 0; }
  .nav-menu .dropdown a:hover, .nav-menu .dropdown a:active { background: rgba(224,200,152,0.25); }
  .nav-link { font-size: 1.1rem; padding: 0.8rem 1.5rem; }
  .dropdown { display: none; position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; background: var(--teal-pale); border-radius: var(--radius-sm); margin: 0.3rem 0 0.5rem; width: 100%; text-align: center; }
  .nav-item.open > .dropdown { display: block; }
  .nav-item.open > .nav-link svg { transform: rotate(180deg); }
  .hamburger { display: flex; z-index: 9999; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-title { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar-right .phone-btn-top { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .doctors-grid { grid-template-columns: 1fr; }
  .checkup-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
