/* ============================================================
   ORA CARE DENTAL CLINIC - style.css
   ============================================================ */

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #0f172a;
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
}

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

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

section {
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* ---- CSS Variables --------------------------------------- */
:root {
  --primary: #1347a8;          /* hsl(217 91% 35%) */
  --primary-dark: #0f3a8f;
  --primary-light: #dbeafe;    /* hsl(214 100% 96%) */
  --secondary-bg: #eff6ff;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-400: #94a3b8;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --radius: 1rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(19,71,168,.08), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(19,71,168,.12), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 60px rgba(19,71,168,.15), 0 8px 20px rgba(0,0,0,.1);
}

/* ---- Utility -------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: .75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(19,71,168,.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 28px rgba(19,71,168,.4);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 6px 20px rgba(34,197,94,.3);
  width: 100%;
  padding: .9rem 2rem;
  border-radius: .75rem;
  font-size: 1rem;
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: var(--green-600);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  padding: 1.1rem 0;
  transition: all .3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
  padding: .7rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.navbar-logo img {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}
.navbar-logo-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}
.navbar-logo-text p {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
}
.navbar-links {
  display: none;
  list-style: none;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .navbar-links { display: flex; align-items: center; }
}
.navbar-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .3s;
}
.navbar-links a:hover { color: var(--primary); }
.navbar-links a:hover::after { width: 100%; }
.navbar-right {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) { .navbar-right { display: flex; } }
.navbar-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--primary);
  font-size: .9rem;
}
.navbar-phone svg { width: 16px; height: 16px; }
.nav-book-btn {
  background: var(--primary);
  color: #fff;
  padding: .55rem 1.25rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: .875rem;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.nav-book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: .5rem;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #fff;
  z-index: 200;
  padding: 2rem 1.5rem;
  box-shadow: -4px 0 20px rgba(0,0,0,.12);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
#mobile-menu.open {
  display: block;
  right: 0;
}
#mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
}
#mobile-overlay.open { display: block; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
  padding: .25rem;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 2rem;
}
.mobile-nav-links a {
  display: block;
  padding: .75rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav-links a:hover { color: var(--primary); }
.mobile-phone-card {
  background: var(--secondary-bg);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
}
.mobile-phone-card .icon-wrap {
  width: 36px; height: 36px;
  background: rgba(19,71,168,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-book-btn {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: .85rem;
  border-radius: .75rem;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s;
}
.mobile-book-btn:hover { background: var(--primary-dark); }

/* ============================================================
   HERO
   ============================================================ */
#home {
  padding: 8rem 0 4rem;
  background: #eff6ff;
  position: relative;
}
@media (min-width: 768px) { #home { padding: 10rem 0 5rem; } }
.hero-blob-1 {
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: rgba(19,71,168,.06);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .hero-blob-1 { width: 500px; height: 500px; }
}
.hero-blob-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 200px; height: 200px;
  background: rgba(96,165,250,.06);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border-radius: 2rem;
  background: rgba(19,71,168,.08);
  border: 1px solid rgba(19,71,168,.15);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-title .accent { color: var(--primary); }
.hero-subtitle {
  font-size: clamp(.9rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    align-items: center;
  }
}
.hero-avatars {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.avatar-stack {
  display: flex;
}
.avatar-stack span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--secondary-bg);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-info { display: flex; flex-direction: column; }
.stars { color: #f59e0b; font-size: .85rem; letter-spacing: .05em; }
.avatar-info small { color: var(--text-muted); font-size: .75rem; }
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
}
.hero-feature svg {
  color: var(--primary);
  flex-shrink: 0;
  width: 18px; height: 18px;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  border: 4px solid #fff;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35), transparent);
}
.hero-floating-card {
  position: absolute;
  bottom: 1.5rem; left: 1rem; right: 1rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.5);
  z-index: 2;
}
@media (min-width: 640px) {
  .hero-floating-card {
    bottom: 2rem; left: 2rem; right: 2rem;
    padding: 1.1rem 1.25rem;
  }
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: rgba(19,71,168,.1);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { color: var(--primary); width: 22px; height: 22px; }
.hero-card-text h4 { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.hero-card-text p { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 768px) { #about { padding: 6rem 0; } }
.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .about-cards { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 1024px) { .about-cards { grid-template-columns: repeat(4,1fr); } }
.about-card {
  background: var(--secondary-bg);
  border-radius: 1.25rem;
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about-icon {
  width: 60px; height: 60px;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.about-icon svg { color: var(--primary); width: 28px; height: 28px; }
.about-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.about-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   DOCTOR
   ============================================================ */
#doctor {
  padding: 5rem 0;
  background: var(--secondary-bg);
}
@media (min-width: 768px) { #doctor { padding: 6rem 0; } }
.doctor-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .doctor-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}
.doctor-img-wrap {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  border: 4px solid #fff;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) { .doctor-img-wrap { max-width: none; } }
.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.doctor-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,71,168,.8), transparent 50%);
}
.doctor-img-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: #fff;
}
.doctor-img-name h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: .2rem;
}
.doctor-img-name p {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.doctor-content { order: -1; }
@media (min-width: 1024px) { .doctor-content { order: 0; } }
.doctor-qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}
.doctor-qual-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.doctor-qual-card svg {
  color: var(--primary);
  width: 28px; height: 28px;
  margin-bottom: .75rem;
}
.doctor-qual-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.qual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.qual-list li svg {
  color: var(--primary);
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.doctor-quote {
  padding-left: 1.25rem;
  border-left: 4px solid var(--primary);
  font-style: italic;
  color: var(--text-mid);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 768px) { #services { padding: 6rem 0; } }
.services-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.services-header-desc {
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}
@media (min-width: 1024px) {
  .services-header-desc {
    border-left: none;
    border-right: 4px solid var(--primary);
    padding-left: 0;
    padding-right: 1rem;
    text-align: right;
  }
}
.services-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .services-layout { grid-template-columns: 2fr 1fr; gap: 2rem; }
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: .875rem;
  background: var(--secondary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: all .3s;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}
.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.services-img-col {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 1024px) { .services-img-col { min-height: auto; } }
.services-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.services-img-col:hover img { transform: scale(1.04); }
.services-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,71,168,.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.services-img-overlay h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .4rem;
}
.services-img-overlay p {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

/* ============================================================
   ADVANCED EQUIPMENT
   ============================================================ */
#equipment {
  padding: 5rem 0;
  background: var(--secondary-bg);
}
@media (min-width: 768px) { #equipment { padding: 6rem 0; } }
.equipment-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .equipment-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.equip-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.equip-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.equip-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f1f5f9;
}
.equip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.equip-card:hover .equip-img img { transform: scale(1.05); }
.equip-img-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(19,71,168,.75), transparent);
}
.equip-img-title h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.equip-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.equip-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.equip-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.equip-row-icon {
  width: 32px; height: 32px;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.equip-row-icon.blue { background: #eff6ff; }
.equip-row-icon.green { background: #f0fdf4; }
.equip-row-icon.primary { background: var(--secondary-bg); }
.equip-row-icon svg { width: 16px; height: 16px; }
.equip-row-icon.blue svg { color: var(--primary); }
.equip-row-icon.green svg { color: #16a34a; }
.equip-row-icon.primary svg { color: var(--primary); }
.equip-row-content label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.equip-row-content.blue label { color: var(--primary); }
.equip-row-content.green label { color: #16a34a; }
.equip-row-content.primary label { color: var(--primary); }
.equip-row-content p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   BEAUTIFUL RESULTS
   ============================================================ */
#results {
  padding: 5rem 0;
  background: var(--slate-900);
  color: #fff;
}
@media (min-width: 768px) { #results { padding: 6rem 0; } }
#results .section-label { color: #60a5fa; }
#results .section-title { color: #fff; }
#results .section-subtitle { color: var(--slate-400); }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .results-grid { grid-template-columns: repeat(4,1fr); gap: 1.25rem; } }
.result-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--slate-800);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: all .3s;
}
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.result-card .aspect-sq {
  aspect-ratio: 1;
  overflow: hidden;
}
.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.result-card:hover img { transform: scale(1.06); }
.result-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem;
  background: linear-gradient(to top, rgba(0,0,0,.88), transparent);
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.results-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.results-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  width: 100%;
  max-width: 600px;
  text-align: center;
}
@media (min-width: 640px) {
  .results-cta-inner {
    flex-direction: row;
    text-align: left;
    gap: 1.75rem;
  }
}
.results-cta-number {
  font-size: 3rem;
  font-weight: 900;
  color: #60a5fa;
  line-height: 1;
  flex-shrink: 0;
}
.results-cta-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.results-cta-text p {
  font-size: .85rem;
  color: var(--slate-400);
}
.results-cta-btn {
  background: var(--primary);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.results-cta-btn:hover { background: var(--primary-dark); }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 5rem 0;
  background: var(--slate-900);
  color: #fff;
}
@media (min-width: 768px) { #gallery { padding: 6rem 0; } }
#gallery .section-label { color: #60a5fa; }
#gallery .section-title { color: #fff; }
#gallery .section-subtitle { color: var(--slate-400); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4,1fr); gap: 1.25rem; } }
.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
@media (min-width: 1024px) {
  .gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19,71,168,.18);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  transform: translateY(8px);
  opacity: 0;
  transition: all .3s;
}
.gallery-item:hover .gallery-item-label {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: 5rem 0;
  background: var(--secondary-bg);
}
@media (min-width: 768px) { #faq { padding: 6rem 0; } }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-icon {
  width: 60px; height: 60px;
  background: rgba(19,71,168,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.faq-icon svg { width: 28px; height: 28px; }
.faq-box {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color .2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question.active { color: var(--primary); }
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  transition: transform .3s;
}
.faq-question.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   APPOINTMENT / CONTACT
   ============================================================ */
#appointment {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 768px) { #appointment { padding: 6rem 0; } }
.appointment-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .appointment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}
.appt-contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}
.appt-info-card {
  display: flex;
  align-items: center;
  gap: .875rem;
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: .875rem 1rem;
}
.appt-info-icon {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.appt-info-icon svg { width: 18px; height: 18px; }
.appt-info-card label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: .15rem;
}
.appt-info-card a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color .2s;
}
.appt-info-card a:hover { color: var(--primary); }
.appt-info-card .email-link {
  font-size: .88rem;
  word-break: break-all;
}
.whatsapp-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 1.25rem;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.whatsapp-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #14532d;
  margin-bottom: .4rem;
}
.whatsapp-card p {
  font-size: .875rem;
  color: #166534;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
/* Form */
.form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .form-card { padding: 2.5rem; } }
.form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.form-title span {
  display: inline-block;
  width: 5px; height: 28px;
  background: var(--primary);
  border-radius: 3px;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-input,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: .75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--secondary-bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19,71,168,.1);
  background: #fff;
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  width: 100%;
  padding: .9rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: .875rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(19,71,168,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(19,71,168,.35);
}
.form-submit svg { width: 18px; height: 18px; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #15803d;
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--slate-900);
  color: #fff;
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 44px; height: 44px;
  border-radius: .75rem;
  object-fit: cover;
  opacity: .9;
}
.footer-logo h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.footer-logo p {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #60a5fa;
  font-weight: 700;
}
.footer-tagline {
  font-size: .875rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--slate-400);
}
.footer-contact-item svg {
  width: 15px; height: 15px;
  color: #60a5fa;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: var(--slate-400);
  transition: color .2s;
}
.footer-contact-item a:hover { color: #fff; }
.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-col ul li a {
  font-size: .85rem;
  color: var(--slate-400);
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom p, .footer-bottom a {
  font-size: .8rem;
  color: var(--slate-400);
}
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 999;
  transition: all .3s;
  text-decoration: none;
}
.wa-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
  .hero-title { font-size: 2rem; }
  .doctor-qual-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
