/* ==========================================================================
   BrightSmile Dental Care — stylesheet
   Bazat pe designul ACCsite, re-tematizat pentru o clinică stomatologică
   ========================================================================== */

:root {
  --color-bg: #f5fafd;
  --color-bg-alt: #eaf5fb;
  --color-surface: #ffffff;

  --color-primary: #2f8fd1;
  --color-primary-dark: #1f6fa8;
  --color-primary-light: #d6ecfb;

  --color-secondary: #2fbf9f;
  --color-secondary-dark: #1f9c81;
  --color-secondary-light: #d3f3ec;

  --color-accent: #ff9478;
  --color-accent-dark: #f26f4f;
  --color-accent-light: #ffe1d8;

  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1ebc59;

  --color-text: #16323f;
  --color-text-light: #5b7887;
  --color-white: #ffffff;
  --color-border: #dcebf4;

  --shadow-soft: 0 10px 30px rgba(22, 50, 63, 0.1);
  --shadow-hover: 0 18px 40px rgba(22, 50, 63, 0.16);
  --shadow-btn: 0 8px 20px rgba(47, 143, 209, 0.28);

  --radius-pill: 999px;
  --radius-lg: 26px;
  --radius: 18px;
  --radius-sm: 10px;

  --font-heading: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container-w: 1180px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { line-height: 1.7; color: var(--color-text-light); margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Eyebrow / Tag ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--color-primary); color: var(--color-white); box-shadow: var(--shadow-btn); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(47, 143, 209, 0.36);
}
.btn-secondary { background: var(--color-accent); color: var(--color-white); box-shadow: 0 8px 20px rgba(255, 148, 120, 0.32); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--color-accent-dark); transform: translateY(-2px); }
.btn-ghost { background: var(--color-surface); color: var(--color-text); border: 2px solid var(--color-border); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--color-bg-alt); border-color: var(--color-primary); color: var(--color-primary-dark); }
.btn-whatsapp { background: var(--color-whatsapp); color: var(--color-white); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32); }
.btn-whatsapp:hover, .btn-whatsapp:focus-visible { background: var(--color-whatsapp-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 250, 253, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled { border-color: var(--color-border); box-shadow: 0 4px 20px rgba(22, 50, 63, 0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--color-text); display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--color-primary); }
.logo .logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-accent); display: inline-block; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  color: var(--color-text-light);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active { background: var(--color-bg-alt); color: var(--color-primary-dark); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--color-text); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 74px 16px auto 16px;
    flex-direction: column; align-items: stretch;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 12px; gap: 4px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { text-align: center; padding: 14px; }
  .header-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 0; }
.hero-intro { text-align: center; max-width: 760px; margin: 0 auto; padding-bottom: 44px; }
.hero-intro .eyebrow { margin-left: auto; margin-right: auto; }
.hero-intro .hero-actions { justify-content: center; }
.hero-intro .hero-stats { justify-content: center; }
.hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); }
.hero h1 .accent { color: var(--color-primary); }
.hero h1 .accent-2 { color: var(--color-accent); }
.hero p.lead { font-size: 1.12rem; max-width: 48ch; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-text); }
.hero-stats span { font-size: 0.85rem; color: var(--color-text-light); }

/* ---------- Hero puzzle mosaic (full-bleed) ---------- */
.hero-puzzle-section {
  width: 100%;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  padding: 8px 0 0;
}
.hero-puzzle { position: relative; width: 100%; aspect-ratio: 3 / 2; max-height: 88vh; margin: 0 auto; }
@media (max-width: 900px) { .hero-puzzle { aspect-ratio: 3 / 3.2; } }
@media (max-width: 560px) { .hero-puzzle { aspect-ratio: 3 / 4.6; } }

.jigsaw-seams { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 8; pointer-events: none; }
.jigsaw-seams path { fill: none; stroke: var(--color-primary-light); stroke-width: 2.5; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 2px rgba(22, 50, 63, 0.35)); }
.jigsaw-seams .seam-outer { stroke-width: 3; }

.puzzle-piece {
  position: absolute; inset: 0; overflow: hidden;
  background: var(--color-text);
  filter: brightness(1) saturate(1);
  cursor: pointer;
  transition: filter var(--transition), z-index var(--transition);
}
.puzzle-piece:focus-visible { outline: 3px solid var(--color-accent); outline-offset: -3px; }
.puzzle-piece:hover { filter: brightness(1.08) saturate(1.12); z-index: 5; }
.jp-1 { clip-path: url(#jigsaw-p1); }
.jp-2 { clip-path: url(#jigsaw-p2); }
.jp-3 { clip-path: url(#jigsaw-p3); }
.jp-4 { clip-path: url(#jigsaw-p4); }
.jp-5 { clip-path: url(#jigsaw-p5); }
.jp-6 { clip-path: url(#jigsaw-p6); }

.puzzle-piece video, .puzzle-piece img.piece-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.92; transition: opacity var(--transition), transform 6s ease;
}
.puzzle-piece:hover video, .puzzle-piece:hover img.piece-img { opacity: 1; transform: scale(1.05); }

.puzzle-piece::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(22,50,63,0.8) 0%, rgba(22,50,63,0.1) 45%, rgba(22,50,63,0) 65%);
  transition: opacity 0.6s ease;
}
.puzzle-piece:has(.puzzle-caption.is-shattering)::after { opacity: 0.45; }

.puzzle-caption { position: absolute; z-index: 2; color: var(--color-white); }
.jp-1 .puzzle-caption { top: 8%; left: 6%; right: 69%; }
.jp-2 .puzzle-caption { top: 6%; left: 38%; right: 36%; text-align: center; }
.jp-3 .puzzle-caption { top: 8%; left: 70%; right: 5%; text-align: right; }
.jp-4 .puzzle-caption { bottom: 5%; left: 6%; right: 69%; }
.jp-5 .puzzle-caption { bottom: 4%; left: 38%; right: 36%; text-align: center; }
.jp-6 .puzzle-caption { bottom: 5%; left: 70%; right: 5%; text-align: right; }
.puzzle-caption .puzzle-tag {
  display: inline-block; font-size: clamp(0.56rem, 1.1vw, 0.68rem); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 8px;
  border-radius: var(--radius-pill); margin-bottom: 5px;
  transition: opacity 0.5s ease 0.15s; white-space: nowrap;
}
.puzzle-caption.is-shattering .puzzle-tag { opacity: 0; }
@media (max-width: 640px) {
  .puzzle-caption .puzzle-tag { white-space: normal; line-height: 1.25; }
}
.tap-hint {
  position: absolute; bottom: 8px; right: 8px; width: 26px; height: 26px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.92); color: var(--color-primary-dark);
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; line-height: 1; z-index: 3;
  box-shadow: 0 2px 8px rgba(22, 50, 63, 0.25);
}
@media (hover: hover) { .puzzle-piece:hover .tap-hint { display: flex; } }
.jp-1 .tap-hint { top: 8%; right: 69%; bottom: auto; left: auto; }
.jp-2 .tap-hint { top: 6%; right: 36%; bottom: auto; left: auto; }
.jp-3 .tap-hint { top: 8%; left: 70%; bottom: auto; right: auto; }
.jp-4 .tap-hint { bottom: 5%; right: 69%; top: auto; left: auto; }
.jp-5 .tap-hint { bottom: 4%; right: 36%; top: auto; left: auto; }
.jp-6 .tap-hint { bottom: 5%; left: 70%; top: auto; right: auto; }

.puzzle-caption .shard {
  display: inline-block; white-space: pre; transform: translate(0, 0) rotate(0deg); opacity: 1;
  transition: transform 0.85s cubic-bezier(0.22, 0.85, 0.34, 1), opacity 0.7s ease;
}
.puzzle-caption.is-shattering .shard { transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--rot, 0deg)); opacity: 0; }
.puzzle-caption h3 { font-size: clamp(0.72rem, 1.6vw, 1rem); margin: 0; line-height: 1.15; }
.puzzle-caption p { display: none; }

/* ---------- Puzzle piece modal ---------- */
.puzzle-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; }
.puzzle-modal[hidden] { display: none; }
.puzzle-modal-backdrop { position: absolute; inset: 0; background: rgba(22, 50, 63, 0.72); backdrop-filter: blur(4px); }
.puzzle-modal-card {
  position: relative; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-hover);
  animation: puzzle-modal-in 0.25s ease;
}
@keyframes puzzle-modal-in { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.puzzle-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  border: none; background: rgba(255, 255, 255, 0.92); color: var(--color-text); font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.puzzle-modal-close:hover { background: var(--color-white); transform: scale(1.06); }
.puzzle-modal-media { aspect-ratio: 16 / 10; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; background: var(--color-text); }
.puzzle-modal-media video, .puzzle-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.puzzle-modal-body { padding: 28px; }
.puzzle-modal-body .puzzle-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 12px;
}
.puzzle-modal-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.puzzle-modal-body p { margin-bottom: 22px; }

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin: 0 auto; }
.section-head.align-left { margin-left: 0; text-align: left; }

/* ---------- Domain-style cards (reused for services teaser) ---------- */
.domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .domain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .domain-grid { grid-template-columns: 1fr; } }
.domain-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-text);
  aspect-ratio: 3 / 4; box-shadow: var(--shadow-soft); transition: transform var(--transition), box-shadow var(--transition);
}
.domain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.domain-card video, .domain-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.88; transition: opacity var(--transition), transform 6s ease; }
.domain-card:hover video, .domain-card:hover img { opacity: 1; transform: scale(1.06); }
.domain-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22,50,63,0.85) 0%, rgba(22,50,63,0.15) 55%, rgba(22,50,63,0.05) 100%); }
.domain-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; color: var(--color-white); }
.domain-card-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 10px; }
.domain-card-body h3 { margin-bottom: 6px; font-size: 1.2rem; }
.domain-card-body p { color: rgba(255,255,255,0.82); font-size: 0.92rem; margin: 0; }

.tag-blue { background: var(--color-primary); }
.tag-mint { background: var(--color-secondary); }
.tag-coral { background: var(--color-accent); }

/* ---------- Feature / process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid var(--color-border); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--color-primary-light); }
.step-num { width: 44px; height: 44px; border-radius: var(--radius-pill); background: var(--color-bg-alt); color: var(--color-primary-dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; margin-bottom: 18px; }
.step-card h3 { font-size: 1.05rem; }
.step-card p { font-size: 0.94rem; margin: 0; }

.section-alt { background: var(--color-bg-alt); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary), #1f6fa8);
  border-radius: var(--radius-lg); padding: 64px 48px; color: var(--color-white);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; max-width: 42ch; }
.cta-band .btn-ghost { background: var(--color-white); border-color: var(--color-white); color: var(--color-primary-dark); }
.cta-band .btn-ghost:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-white); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-text); color: rgba(255,255,255,0.75); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.site-footer .logo { color: var(--color-white); }
.site-footer h4 { color: var(--color-white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--color-accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 0.85rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 64px 0 20px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.7rem); }
.page-hero p { max-width: 60ch; margin: 0 auto; font-size: 1.08rem; }

/* ---------- About / info grid ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-media video, .about-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.value-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 16px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: var(--radius-pill); background: var(--color-primary-light); color: var(--color-primary-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-heading); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 18px; box-shadow: var(--shadow-soft); background: var(--color-bg-alt);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-role { color: var(--color-primary-dark); font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; display: block; }
.team-card p { font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 26px; transition: transform var(--transition), box-shadow var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.testimonial-stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.testimonial-card p { font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; color: var(--color-text); }
.testimonial-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--color-primary-light); color: var(--color-primary-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }

/* ---------- Pricing / services tables ---------- */
.price-cat { margin-bottom: 40px; }
.price-cat:last-child { margin-bottom: 0; }
.price-cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.price-cat-icon {
  width: 46px; height: 46px; border-radius: var(--radius-pill);
  background: var(--color-primary-light); color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.price-cat-head h3 { margin: 0; font-size: 1.2rem; }
.price-table { width: 100%; border-collapse: collapse; background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.price-table tr { border-bottom: 1px solid var(--color-border); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 16px 22px; }
.price-table td:first-child { color: var(--color-text); font-weight: 500; }
.price-table td:last-child { text-align: right; font-family: var(--font-heading); font-weight: 700; color: var(--color-primary-dark); white-space: nowrap; }
@media (max-width: 560px) {
  .price-table td { padding: 14px 16px; font-size: 0.92rem; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--color-text); text-align: left;
}
.faq-question .faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--color-bg-alt);
  color: var(--color-primary-dark); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: transform var(--transition), background var(--transition);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--color-primary); color: var(--color-white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 22px; }
.faq-answer-inner p { margin: 0; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-filter {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem;
  padding: 9px 18px; border-radius: var(--radius-pill); border: 2px solid var(--color-border);
  background: var(--color-surface); color: var(--color-text-light); cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.gallery-filter:hover { border-color: var(--color-primary-light); }
.gallery-filter.is-active { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--color-bg-alt); box-shadow: var(--shadow-soft); transition: transform var(--transition); }
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item[hidden] { display: none; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 32px; }
.contact-methods { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.contact-methods a { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius); border: 1px solid var(--color-border); transition: border-color var(--transition), background var(--transition), transform var(--transition); }
.contact-methods a:hover { border-color: var(--color-primary); background: var(--color-bg-alt); transform: translateX(4px); }
form.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; border-radius: var(--radius); border: 2px solid var(--color-border);
  font-family: var(--font-body); font-size: 1rem; background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px var(--color-primary-light);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); margin-top: 24px; aspect-ratio: 16/9; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Whatsapp float button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 58px; height: 58px; border-radius: 50%;
  background: var(--color-whatsapp); color: var(--color-white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4); transition: transform var(--transition), background var(--transition);
}
.wa-float:hover { background: var(--color-whatsapp-dark); transform: scale(1.08); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 22px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 24s linear infinite; }
.marquee-track span { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--color-text-light); display: flex; align-items: center; gap: 10px; }
.marquee-track span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
