/* ═══════════════════════════════════════════
   PREMIUM DENTAL CARE — styles.css
   ═══════════════════════════════════════════ */

/* ──────────────────────────────────────────
   CUSTOM PROPERTIES
────────────────────────────────────────── */
:root {
  --teal:       #4EC5C7;
  --teal-dark:  #38a8ab;
  --navy:       #0A2540;
  --bg:         #FAFAF7;
  --text:       #1A1A1A;
  --text-muted: #5a6472;
  --grey-line:  #E8EEF1;
  --white:      #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --nav-h: 110px;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ──────────────────────────────────────────
   RESET
────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }
svg { flex-shrink: 0; }

/* ──────────────────────────────────────────
   UTILITIES
────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.mono { font-family: var(--font-mono); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 100px;
  padding: 0.65em 1.4em;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78, 197, 199, 0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--lg { padding: 0.8em 1.75em; font-size: 1rem; }

/* ──────────────────────────────────────────
   NAV
────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s;
}
.nav.scrolled {
  border-color: var(--grey-line);
  box-shadow: 0 2px 16px rgba(10, 37, 64, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  position: relative;
  z-index: 1;
}
.nav__logo { flex-shrink: 0; }
.nav__logo img {
  height: 85px;
  width: auto;
  mix-blend-mode: multiply;
}
.nav__links {
  display: none;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--teal); }
.nav__cta { margin-left: auto; }
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.25rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--grey-line);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.3rem 0;
}
.nav__mobile .btn { align-self: flex-start; margin-top: 0.5rem; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: var(--space-xl);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
}
.hero__stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 1px; }
.hero__rating-text { font-size: 0.85rem; color: var(--text-muted); }
.hero__rating-text .mono { font-size: 0.9rem; color: var(--text); }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero__word { display: inline-block; opacity: 0; transform: translateY(30px); }
.hero__word--accent { color: var(--teal); }

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(16px);
}

.hero__visual { position: relative; }
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  opacity: 0;
  transform: translateX(30px);
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.1rem;
  max-width: 200px;
}
.hero__badge-line {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  opacity: 0.75;
  line-height: 1.3;
}
.hero__badge-country {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal);
  margin: 0.1rem 0;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .hero__image-wrap { aspect-ratio: 4 / 5; }
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 55% 1fr;
    gap: 5rem;
  }
}

/* ──────────────────────────────────────────
   TRUST STRIP
────────────────────────────────────────── */
.trust {
  background: var(--navy);
  padding: 1.25rem 0;
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}
.trust__item svg { opacity: 0.7; }
.trust__divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 600px) {
  .trust__divider { display: none; }
  .trust__inner { gap: 0.75rem 1.5rem; }
}

/* ──────────────────────────────────────────
   SECTION REVEALS
────────────────────────────────────────── */
.reveal-section { opacity: 0; transform: translateY(24px); }

/* ──────────────────────────────────────────
   DOCTOR
────────────────────────────────────────── */
.doctor { padding: var(--space-xl) 0; }
.doctor__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.doctor__image-col { display: flex; flex-direction: column; gap: 1.5rem; }

.doctor__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  margin: 0 auto;
}
.doctor__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.doctor__credential-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.doctor__credential {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.doctor__credential .mono {
  font-size: 0.75rem;
  color: var(--teal);
  min-width: 2.5rem;
  letter-spacing: 0.05em;
}
.doctor__credential span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.doctor__text-col { max-width: 560px; }
.doctor__position {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.doctor__bio {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.doctor__bio:last-of-type { margin-bottom: 2rem; }

@media (min-width: 768px) {
  .doctor__inner {
    grid-template-columns: 340px 1fr;
    gap: 4rem;
  }
  .doctor__image-wrap,
  .doctor__credential-stack { max-width: 100%; margin: 0; }
}

/* ──────────────────────────────────────────
   PROCESS (HOW WE WORK)
────────────────────────────────────────── */
.process {
  padding: var(--space-xl) 0;
  background: var(--navy);
  color: var(--white);
}
.process .section-label { color: rgba(78, 197, 199, 0.85); }
.process .section-heading { color: var(--white); margin-bottom: 0.75rem; }
.process__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 54ch;
  margin-bottom: 4rem;
}
.process__steps { display: flex; flex-direction: column; }
.process__step {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 3.5rem 0;
}
.process__step:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }

.process__step-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.process__step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.process__step-num {
  display: block;
  font-size: 0.7rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.process__step-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.process__step-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 48ch;
}

@media (min-width: 768px) {
  .process__step-inner {
    grid-template-columns: 220px 1fr;
    gap: 4rem;
  }
  .process__step:nth-child(even) .process__step-inner {
    direction: rtl;
  }
  .process__step:nth-child(even) .process__step-inner > * {
    direction: ltr;
  }
}

/* SCAN ANIMATION */
.process__scan-anim { position: relative; }
.scan-tooth { width: 100px; height: 120px; }
.tooth-body { stroke-dasharray: 400; stroke-dashoffset: 400; }
.scan-line {
  animation: scan-move 2.5s ease-in-out infinite;
}
.scan-dot {
  animation: scan-move 2.5s ease-in-out infinite;
}
.scan-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(78,197,199,0.3);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes scan-move {
  0%   { transform: translateY(-50px); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(50px); opacity: 0; }
}
@keyframes pulse-ring {
  0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 0.5; }
  50%  { transform: translate(-50%,-50%) scale(1.3); opacity: 0; }
  100% { transform: translate(-50%,-50%) scale(0.8); opacity: 0.5; }
}

/* SCREEN ANIMATION */
.screen-frame {
  width: 200px;
  background: #0d1f33;
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(78,197,199,0.25);
}
.screen-content { display: flex; flex-direction: column; gap: 0.75rem; }
.screen-photo-strip { display: flex; gap: 6px; }
.screen-photo {
  flex: 1;
  height: 64px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
}
.screen-photo--highlight {
  background: rgba(78,197,199,0.25);
  outline: 1.5px solid var(--teal);
  animation: photo-pulse 2s ease-in-out infinite;
}
.screen-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}
.screen-tag {
  background: var(--teal);
  color: var(--navy);
  padding: 0.15em 0.5em;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.6rem;
}
@keyframes photo-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(78,197,199,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(78,197,199,0); }
}

/* PLAN ANIMATION */
.plan-card {
  background: #0d1f33;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid rgba(78,197,199,0.2);
}
.plan-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  padding: 0.35rem 0;
}
.plan-row--done { color: rgba(255,255,255,0.5); text-decoration: line-through; }
.plan-row--done svg { opacity: 0.5; }
.plan-row--active { color: var(--white); font-weight: 500; }
.plan-row--optional { color: rgba(255,255,255,0.35); }
.plan-row--optional em { font-style: italic; }

/* CARE ANIMATION */
.process__care-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.care-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(78,197,199,0.12);
  border: 1.5px solid rgba(78,197,199,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: care-beat 2s ease-in-out infinite;
}
.care-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}
@keyframes care-beat {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* ──────────────────────────────────────────
   SERVICES
────────────────────────────────────────── */
.services { padding: var(--space-xl) 0; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.service-card {
  padding: 1.5rem;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(78,197,199,0.12);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(78,197,199,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal);
  transition: background 0.25s;
}
.service-card:hover .service-card__icon { background: rgba(78,197,199,0.16); }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (min-width: 600px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ──────────────────────────────────────────
   REVIEWS
────────────────────────────────────────── */
.reviews {
  padding: var(--space-xl) 0;
  background: var(--navy);
  color: var(--white);
}
.reviews .section-label { color: rgba(78,197,199,0.85); }
.reviews .section-heading { color: var(--white); }
.reviews__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 50ch;
  margin-bottom: 3rem;
  margin-top: -0.75rem;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.review {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color 0.25s, background 0.25s;
}
.review:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(78,197,199,0.3);
}
.review__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.25rem;
}
.review__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.review__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.review__detail {
  font-size: 0.75rem;
  color: var(--teal);
  background: rgba(78,197,199,0.1);
  padding: 0.15em 0.6em;
  border-radius: 100px;
}
.review__stars {
  color: #F59E0B;
  font-size: 0.8rem;
  margin-left: auto;
  letter-spacing: 1px;
}
.review--featured {
  border-color: rgba(78,197,199,0.3);
  background: rgba(78,197,199,0.06);
}
.review--featured .review__text {
  font-size: 1.2rem;
  color: var(--white);
}

.reviews__cta {
  margin-top: 2.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .review--featured { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .review--featured { grid-column: span 1; }
  .review--england { grid-column: span 1; }
}

/* ──────────────────────────────────────────
   FIND US
────────────────────────────────────────── */
.find-us { padding: var(--space-xl) 0; }
.find-us__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.find-us__address {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey-line);
}
.find-us__hours { margin-bottom: 2rem; }
.find-us__hours-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.find-us__hour-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--grey-line);
  font-size: 0.9rem;
}
.find-us__hour-row .mono { font-size: 0.85rem; }
.find-us__hour-row--closed span { color: var(--text-muted); opacity: 0.6; }

.find-us__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.find-us__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text);
  transition: color 0.2s;
}
.find-us__contact:hover { color: var(--teal); }
.find-us__contact svg { color: var(--teal); }
.find-us__contact--wa { color: #25D366; font-weight: 500; }
.find-us__contact--wa:hover { color: #1aab52; }
.find-us__contact--wa svg { color: #25D366; }

.find-us__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}
.find-us__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}

@media (min-width: 900px) {
  .find-us__inner {
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: start;
  }
  .find-us__map { min-height: 460px; }
  .find-us__map iframe { min-height: 460px; }
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}
.footer__brand img { margin-bottom: 0.75rem; mix-blend-mode: screen; opacity: 0.9; }
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.footer__desc {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 32ch;
}
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer__nav nav,
.footer__services-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--teal); }
.footer__services-col li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.footer__address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.footer__contact-link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer__contact-link:hover { color: var(--teal); }
.footer__hours-mini {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__wa-btn { margin-top: 0.25rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.footer__bottom-inner p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.footer__reg { text-align: right; }

@media (min-width: 640px) {
  .footer__top { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
  .footer__desc { max-width: 28ch; }
}

/* ──────────────────────────────────────────
   FLOATING WHATSAPP
────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ──────────────────────────────────────────
   REDUCE MOTION
────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__word,
  .hero__rating,
  .hero__sub,
  .hero__actions,
  .hero__image-wrap,
  .reveal-section {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ──────────────────────────────────────────
   FOCUS STATES
────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}
