/* ===========================
   ADMIRAL DENTAL CLINIC
   Organic Luxury Theme
   =========================== */

/* --- CSS VARIABLES --- */
:root {
  --bg: #f6f2ec;
  --surface: #ebe5db;
  --accent: #5c7a56;
  --accent-hover: #6e916a;
  --text: #2a2a24;
  --text-muted: #6a6a60;
  --border: #d4cfc4;
  --white: #ffffff;
  --dark: #1a1a16;

  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --fw-heading: 600;
  --fw-body: 400;
  --base-size: 16px;
  --ls-heading: 0.01em;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 32px rgba(42, 42, 36, 0.10);
  --shadow-lg: 0 16px 60px rgba(42, 42, 36, 0.16);
}

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

html {
  font-size: var(--base-size);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading);
  letter-spacing: var(--ls-heading);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
em { font-style: italic; color: var(--accent); }

/* --- CONTAINER --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.section--surface { background: var(--surface); }

/* --- CLIP REVEAL ANIMATION --- */
.clip-reveal {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translateY(16px);
  transition: clip-path 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.75s ease,
              transform 0.75s ease;
}

/* Hero is always in viewport — reveal immediately */
.hero .clip-reveal {
  clip-path: inset(0 0 0% 0);
  opacity: 1;
  transform: none;
}
.clip-reveal.revealed {
  clip-path: inset(0 0 0% 0);
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.clip-reveal:nth-child(1) { transition-delay: 0s; }
.clip-reveal:nth-child(2) { transition-delay: 0.1s; }
.clip-reveal:nth-child(3) { transition-delay: 0.2s; }
.clip-reveal:nth-child(4) { transition-delay: 0.3s; }
.clip-reveal:nth-child(5) { transition-delay: 0.4s; }
.clip-reveal:nth-child(6) { transition-delay: 0.5s; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover { background: var(--accent); color: var(--white); }
.btn--ghost-dark {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn--ghost-dark:hover { border-color: var(--text-muted); color: var(--text); }
.btn--white {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}
.btn--white:hover { background: var(--bg); }
.btn--wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--wa:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-2px); }

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(246, 242, 236, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--2 { opacity: 0.7; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 42, 36, 0.82) 0%,
    rgba(42, 42, 36, 0.55) 50%,
    rgba(92, 122, 86, 0.35) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: #a8c4a4; }
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ===========================
   ABOUT
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; }
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg);
}
.about-img-accent img { width: 100%; height: 220px; object-fit: cover; }
.about-img-label {
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 12px;
  text-align: center;
}
.about-blob {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 160px;
  height: 160px;
  background: var(--surface);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  z-index: -1;
  animation: blobMove 6s ease-in-out infinite;
}
@keyframes blobMove {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  50% { border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%; }
}
.about-content .section-tag { margin-bottom: 12px; }
.about-text { color: var(--text-muted); margin-bottom: 16px; }
.about-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.feature { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ===========================
   SERVICES PREVIEW
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.service-card-title { font-size: 1.05rem; }
.service-card-desc { color: var(--text-muted); font-size: 0.9rem; flex: 1; }
.service-card-img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img { transform: scale(1.03); }
.services-more { text-align: center; }

/* ===========================
   DOCTOR
   =========================== */
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.doctor-quote {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
}
.doctor-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.doctor-info { margin-bottom: 28px; }
.doctor-name {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.doctor-spec {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.doctor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doctor-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.doctor-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}
.doctor-visual { position: relative; }
.doctor-img-wrap {
  position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.doctor-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.doctor-blob {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--surface);
  border-radius: 50% 30% 60% 40%;
  z-index: -1;
  animation: blobMove 7s ease-in-out infinite reverse;
}

/* ===========================
   REVIEWS
   =========================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-stars { color: #d4a843; font-size: 1.1rem; letter-spacing: 2px; }
.review-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-source { font-size: 0.75rem; color: var(--text-muted); }
.reviews-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.reviews-img-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,42,36,0.88), rgba(92,122,86,0.6));
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner-title {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.cta-banner-sub {
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.cta-banner-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-banner-addr {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .logo-text { color: var(--white); }
.footer .logo-img { border-color: rgba(255,255,255,0.2); }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 16px; max-width: 280px; }
.footer-nav h4, .footer-contacts h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav, .footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contacts a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-nav a:hover, .footer-contacts a:hover { color: var(--white); }
.footer-contacts p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  min-height: 52px;
}
.float-wa:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}
.float-wa-label { display: none; }
@media (min-width: 480px) { .float-wa-label { display: block; } }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,42,36,0.88), rgba(42,42,36,0.6));
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }
.page-hero-title {
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-sub { color: rgba(255,255,255,0.75); max-width: 520px; }

/* ===========================
   FREE OFFER BANNER
   =========================== */
.free-offer {
  background: var(--accent);
  padding: 20px 0;
}
.free-offer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.free-offer-icon { color: var(--white); opacity: 0.8; flex-shrink: 0; }
.free-offer-text { color: var(--white); font-size: 0.95rem; flex: 1; min-width: 200px; }
.free-offer-text strong { font-weight: 700; }
.free-offer .btn {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
  flex-shrink: 0;
}
.free-offer .btn:hover { background: var(--bg); }

/* ===========================
   SERVICES FULL LIST
   =========================== */
.service-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-full-card:last-child { border-bottom: none; }
.service-full-card--reverse { direction: rtl; }
.service-full-card--reverse > * { direction: ltr; }
.service-full-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.service-full-img img { width: 100%; height: 100%; object-fit: cover; }
.service-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
}
.service-full-title { margin-bottom: 16px; }
.service-full-desc { color: var(--text-muted); margin-bottom: 24px; }
.service-full-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.service-full-features span {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===========================
   MASONRY GALLERY
   =========================== */
.gallery-intro-inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 0 20px; }
.gallery-intro-text { font-size: 1.05rem; color: var(--text-muted); }
.gallery-category-title { margin-bottom: 36px; }
.gallery-category-title h2 { font-size: 1.8rem; margin-bottom: 8px; }
.gallery-category-title p { color: var(--text-muted); }
.gallery-section { padding: 60px 0; }

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.masonry-grid--alt {
  grid-template-columns: repeat(3, 1fr);
}
.masonry-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item--tall { grid-row: span 2; }
.masonry-item--wide { grid-column: span 2; }
.masonry-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(42,42,36,0.85));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 24px 14px 14px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.masonry-item:hover .masonry-caption { transform: translateY(0); }

/* ===========================
   CONTACTS
   =========================== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contacts-info { display: flex; flex-direction: column; gap: 8px; }
.contact-block {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-block:hover { border-color: var(--accent); }
.contact-block-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-block-body h3 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.contact-block-body p { font-size: 0.9rem; color: var(--text-muted); }
.contact-phone {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.contact-phone:hover { color: var(--accent-hover); }
.contact-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.hours-main { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--accent); }

.contacts-map-side { display: flex; flex-direction: column; gap: 16px; }
.contacts-building-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}
.contacts-building-photo img { width: 100%; height: 100%; }
.contacts-building-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(42,42,36,0.8));
  padding: 20px 16px 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.contacts-map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contacts-map-fallback {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contacts-map-fallback .btn { flex: 1; justify-content: center; }

/* APPOINTMENT SECTION */
.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.appointment-actions { display: flex; flex-direction: column; gap: 12px; }
.contact-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: var(--transition);
  min-height: 72px;
}
.contact-cta-btn--call { border-color: var(--accent); }
.contact-cta-btn--wa { border-color: #25D366; }
.contact-cta-btn--alt { border-color: var(--border); }
.contact-cta-btn:hover { transform: translateX(4px); }
.contact-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-cta-btn--call .contact-cta-icon { background: var(--accent); color: var(--white); }
.contact-cta-btn--wa .contact-cta-icon { background: #25D366; color: var(--white); }
.contact-cta-btn--alt .contact-cta-icon { background: var(--surface); color: var(--text-muted); }
.contact-cta-text { display: flex; flex-direction: column; }
.contact-cta-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.contact-cta-num { font-size: 1rem; font-weight: 700; color: var(--text); }

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .about-img-accent { right: 0; }

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

  .doctor-grid { grid-template-columns: 1fr; gap: 40px; }
  .doctor-visual { max-width: 400px; margin: 0 auto; }

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

  .service-full-card { grid-template-columns: 1fr; gap: 32px; }
  .service-full-card--reverse { direction: ltr; }

  .contacts-grid { grid-template-columns: 1fr; }
  .appointment-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Header mobile */
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav-link { padding: 12px 16px; border-radius: 10px; font-size: 1rem; min-height: 48px; display: flex; align-items: center; }
  .nav-cta { justify-content: center; margin-top: 8px; min-height: 52px; font-size: 1rem; }

  /* Hero mobile */
  .hero-img-wrap { grid-template-columns: 1fr; }
  .hero-photo--2 { display: none; }
  .hero-content { padding-top: 100px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-scroll-hint { display: none; }

  /* Trust bar */
  .trust-bar-inner { gap: 20px; justify-content: flex-start; overflow-x: auto; padding: 0 24px; flex-wrap: nowrap; }

  /* About */
  .about-img-accent { bottom: -16px; right: 0; width: 140px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-img-row { grid-template-columns: 1fr; }

  /* Masonry */
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .masonry-item--tall { grid-row: span 2; }
  .masonry-item--wide { grid-column: span 2; }
  .masonry-caption { transform: translateY(0); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  /* Page hero */
  .page-hero { padding: 110px 0 60px; }

  /* Contacts */
  .contacts-map-fallback { flex-direction: column; }
  .contacts-map-fallback .btn { width: 100%; }

  /* Service full */
  .service-full-card { padding: 40px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .masonry-item--tall { grid-row: span 1; }
  .masonry-item--wide { grid-column: span 1; }
  .free-offer-inner { flex-direction: column; text-align: center; }
  .trust-bar-inner { flex-direction: column; padding: 0 24px; flex-wrap: wrap; }
}
