/* ==========================================================================
   Dentalii — Satu Mare Dental Clinic — UK Dental Tourism Site
   Shared stylesheet for every page
   ========================================================================== */

:root {
  --navy: #1B2A4A;
  --navy-light: #2A3F66;
  --gold: #C9A24B;
  --gold-light: #E0C687;
  --gold-dark: #A9822E;
  --cream: #FBF7EF;
  --white: #FFFFFF;
  --text-dark: #1B2A4A;
  --text-body: #4B5567;
  --text-muted: #7A8296;
  --gray-line: #E7E1D4;
  --shadow-soft: 0 10px 30px rgba(27, 42, 74, 0.08);
  --shadow-medium: 0 16px 40px rgba(27, 42, 74, 0.14);
  --radius: 28px;
  --radius-sm: 14px;
  --container: 1180px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--gold); color: var(--navy); }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.accent-italic { font-style: italic; font-weight: 400; color: var(--gold-dark); }

/* ---------- Card hover lift ---------- */
.value-card, .service-card, .testimonial-card, .spec-card, .pricelist-card,
.attraction-card, .contact-form-card, .contact-info-card, .art-card {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
.value-card:hover, .service-card:hover, .testimonial-card:hover, .spec-card:hover,
.pricelist-card:hover, .attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
@media (max-width: 768px) {
  section { padding: 56px 0; }
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 162, 75, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  max-width: 100%;
}
.btn:active { transform: scale(0.97); }
@media (max-width: 560px) {
  .btn { white-space: normal; text-align: center; }
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.35);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-links { display: flex; justify-content: space-between; align-items: center; gap: 22px; flex-wrap: wrap; width: 100%; }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-links a:hover { color: var(--gold-light); }
.topbar-flag { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-light); font-weight: 600; }
.mobile-cta-link { display: none; }
.topbar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 1px 0 rgba(27,42,74,0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); background: rgba(255,255,255,0.95); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo .logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo .logo-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  border-radius: 8px;
  position: relative;
  transition: color 0.25s ease;
}
.main-nav a:hover { color: var(--gold-dark); }
.main-nav a.active { color: var(--gold-dark); }
.main-nav a::before {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.main-nav a:hover::before { transform: scaleX(1); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  background: var(--white);
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 20px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 8px; border-bottom: 1px solid var(--gray-line); }
  .main-nav a.active::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .topbar-links span.topbar-hide-mobile { display: none; }
  .mobile-cta-link {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    border-radius: 999px;
    margin-top: 10px;
    padding: 12px 8px !important;
    border-bottom: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 62%, #223963 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(201,162,75,0.20), transparent 45%),
                     radial-gradient(circle at 8% 90%, rgba(201,162,75,0.12), transparent 40%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-copy .eyebrow { background: rgba(201,162,75,0.18); color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--gold-light); font-style: italic; font-weight: 400; }
.hero p.lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-highlights { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 13px; max-width: 560px; }
.hero-highlights li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: rgba(255,255,255,0.82); }
.hero-highlights li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,162,75,0.22);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
}
.hero-highlights li strong { color: var(--white); font-weight: 700; }
.hero-highlights li span { min-width: 0; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 1.5rem; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.hero-trust span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art .art-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}
.hero-art .art-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(160deg, rgba(255,255,255,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.route-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 6px;
}
.route-line .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.route-line .line { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px); margin: 0 8px; position: relative; }
.route-line svg.plane { width: 22px; height: 22px; color: var(--gold-light); }
.route-labels { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 20px;}
.route-labels strong { display: block; color: var(--white); font-size: 1rem; }
.art-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.art-stat { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 14px 16px; }
.art-stat strong { display: block; font-size: 1.25rem; color: var(--gold-light); font-family:'Playfair Display', serif; }
.art-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ---------- Compact currency converter (hero stat slot) ---------- */
.fx-converter { display: flex; flex-direction: column; gap: 5px; }
.fx-converter .fx-label { font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.fx-converter .fx-row { display: flex; align-items: center; gap: 6px; }
.fx-converter input[type="number"] {
  width: 100%;
  min-width: 0;
  padding: 5px 7px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.82rem;
  font-family: inherit;
}
.fx-converter input[type="number"]:focus { outline: none; border-color: var(--gold-light); }
.fx-converter .fx-swap {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(201,162,75,0.25);
  border: none;
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.fx-converter .fx-swap svg { width: 13px; height: 13px; }
.fx-converter .fx-currency-tag { flex-shrink: 0; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.6); }
.fx-converter .fx-result { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.fx-converter .fx-note { font-size: 0.64rem; color: rgba(255,255,255,0.4); }

.art-card-note {
  display: block;
  margin-top: 16px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { margin-top: 12px; }
}

/* ---------- Icon circles ---------- */
.icon-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(201,162,75,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.icon-circle svg { width: 28px; height: 28px; }
.icon-circle.navy { background: rgba(27,42,74,0.08); color: var(--navy); }

/* ---------- Value props grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27,42,74,0.05);
}
.value-card h3 { font-size: 1.15rem; }
.value-card p { font-size: 0.94rem; margin-bottom: 0; color: var(--text-muted); }

/* ---------- Services ---------- */
.bg-navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .section-head p { color: rgba(255,255,255,0.65); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.service-card .price-from { color: var(--gold-light); font-weight: 700; font-size: 0.95rem; }
.service-card .link-arrow { color: var(--gold-light); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;}
.arrow { display: inline-block; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
a:hover .arrow { transform: translateX(4px); }

.services-footer-cta { text-align: center; margin-top: 44px; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.steps.steps-4col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .steps, .steps.steps-4col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps, .steps.steps-4col { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 28px 22px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.step .step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ---------- Specialty feature (Crowns highlight) ---------- */
.specialty-feature {
  position: relative;
  background: linear-gradient(180deg, #FDF9F0 0%, var(--white) 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 52px;
}
.specialty-badge {
  position: absolute;
  top: -19px;
  left: 48px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(201,162,75,0.4);
}
.specialty-feature .eyebrow { background: rgba(201,162,75,0.14); }
.specialty-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 22px;
}
.price-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.price-breakdown li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  min-width: 170px;
}
.price-breakdown li span { font-size: 0.82rem; color: var(--text-muted); }
.price-breakdown li strong { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.1rem; }
.price-breakdown li .price-gbp-inline { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500; color: var(--text-muted); }
@media (max-width: 620px) {
  .price-breakdown li { text-align: center; align-items: center; }
}
.specialty-price .price-gbp-inline { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 500; color: var(--text-muted); margin-left: 4px; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--text-body); }
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,162,75,0.16);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ---------- Treatment detail block (Implants, etc.) ---------- */
.treatment-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 44px;
}
.treatment-block .subhead {
  font-size: 1.1rem;
  margin-top: 26px;
}
.treatment-block + .treatment-block,
.specialty-feature + .treatment-block {
  margin-top: 32px;
}

/* ---------- Compact "more treatments" list ---------- */
.more-treatments-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 620px) { .more-treatments-list { grid-template-columns: 1fr; } }
.more-treatments-list li {
  background: var(--white);
  border: 1px dashed var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.more-treatments-list li strong { color: var(--navy); font-weight: 600; font-size: 0.94rem; }
.more-treatments-list li span.tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* ---------- Two-option comparison grid (Veneers, Whitening) ---------- */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .option-grid { grid-template-columns: 1fr; } }

/* ---------- Full price list (Pricing page) ---------- */
.pricelist-stack { display: flex; flex-direction: column; gap: 32px; }
.pricelist-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.pricelist-card h3 {
  background: var(--navy);
  color: var(--white);
  margin: 0;
  padding: 18px 28px;
  font-size: 1.08rem;
}
table.pricelist-table { width: 100%; border-collapse: collapse; }
.pricelist-table td {
  padding: 13px 28px;
  border-bottom: 1px solid var(--gray-line);
  font-size: 0.92rem;
  vertical-align: top;
}
.pricelist-table tr:last-child td { border-bottom: none; }
.pricelist-table td.item { color: var(--text-body); }
.pricelist-table td.price {
  text-align: right;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
}
.pricelist-table td.price .price-gbp {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 4px;
}

/* ---------- Included / not-included lists ---------- */
.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 760px) { .inclusion-grid { grid-template-columns: 1fr; } }
.inclusion-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px 30px;
}
.inclusion-card h3 { font-size: 1.08rem; margin-bottom: 18px; }
.addon-list { display: flex; flex-direction: column; gap: 12px; margin: 0; }
.addon-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: var(--text-body); }
.addon-list li::before {
  content: "+";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(27,42,74,0.08);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ---------- Deposit policy ---------- */
.deposit-panel {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 44px 48px;
  border-top: 3px solid var(--gold);
}
.deposit-panel p:last-child { margin-bottom: 0; }

/* ---------- Accommodation grid (Travel & Stay) ---------- */
.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .stay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stay-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-layout > * { min-width: 0; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}
.review-card-slot {
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 22px 22px;
}
.review-card-slot h3 {
  font-size: 1.05rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}
.review-card-slot .form-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.review-card-slot .form-group { gap: 4px; }
.review-card-slot .form-group label { font-size: 0.78rem; }
.review-card-slot .form-group input,
.review-card-slot .form-group select,
.review-card-slot .form-group textarea { padding: 8px 10px; font-size: 0.85rem; }
.review-card-slot .form-group textarea { min-height: 54px; }
.review-card-slot .btn-block { padding: 9px 14px; font-size: 0.86rem; }
@media (max-width: 500px) { .review-card-slot .form-grid { grid-template-columns: 1fr; } }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 0;
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group .hint { font-size: 0.78rem; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(201,162,75,0.12);
  border: 1px solid rgba(201,162,75,0.35);
  border-radius: var(--radius-sm);
  color: var(--gold-dark);
  font-size: 0.9rem;
}
.form-error-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(200,60,60,0.08);
  border: 1px solid rgba(200,60,60,0.3);
  border-radius: var(--radius-sm);
  color: #a83a3a;
  font-size: 0.9rem;
}
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ---------- Dental philosophy (About page) ---------- */
.philosophy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 0 auto 40px;
}
.philosophy-tag {
  background: rgba(201,162,75,0.12);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 999px;
}
.philosophy-quote {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.5;
  position: relative;
  padding: 0 20px;
}
.philosophy-quote::before {
  content: "\201C";
  display: block;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  font-style: normal;
}

.contact-info-card {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.contact-info-card h3 { color: var(--white); font-size: 1.15rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin: 26px 0 30px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.95rem; }
.contact-info-list svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.contact-info-list strong { display: block; color: var(--white); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; color: rgba(255,255,255,0.55); }

/* ---------- Pricing teaser table ---------- */
.price-compare {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.price-table { width: 100%; min-width: 480px; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--gray-line);
  font-size: 0.95rem;
}
.price-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td.uk-price { color: var(--text-muted); text-decoration: line-through; }
.price-table td.dentalii-price { color: var(--gold-dark); font-weight: 700; }
.price-table td.saving { color: #2E7D4F; font-weight: 700; }
.price-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 18px; }

@media (max-width: 620px) {
  .price-compare-cards { overflow-x: visible; background: transparent; box-shadow: none; }
  .price-compare-cards table.price-table { display: block; min-width: 0; }
  .price-compare-cards thead { display: none; }
  .price-compare-cards tbody { display: block; }
  .price-compare-cards tr {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 14px;
    overflow: hidden;
  }
  .price-compare-cards tbody tr:last-child { margin-bottom: 0; }
  .price-compare-cards td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-bottom: 1px solid var(--gray-line);
    font-size: 0.92rem;
  }
  .price-compare-cards tr td:last-child { border-bottom: none; }
  .price-compare-cards td:first-child {
    display: block;
    background: var(--navy);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 18px;
  }
  .price-compare-cards td[data-label]::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--navy);
  }
}
/* ---------- Attraction cards (Travel & Stay) ---------- */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.attraction-grid.attraction-grid-2col { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin-left: auto; margin-right: auto; }
@media (max-width: 980px) { .attraction-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .attraction-grid, .attraction-grid.attraction-grid-2col { grid-template-columns: 1fr; } }
.attraction-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.attraction-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.attraction-card:hover img { transform: scale(1.06); }
.attraction-card-body { padding: 20px 22px 24px; }
.attraction-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.attraction-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

.attraction-list-plain {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
.attraction-list-plain .attraction-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 14px 22px;
}
.attraction-list-plain .attraction-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.attraction-list-plain h4 { font-size: 1rem; margin: 0 0 4px; color: var(--navy); font-family: 'Playfair Display', serif; }
.attraction-list-plain p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.value-highlight-panel {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.value-highlight-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 70%;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.value-highlight-panel > * { position: relative; }
.value-highlight-panel .big-stat {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}
.value-highlight-panel p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.image-credit {
  text-align: center;
  font-size: 0.62rem;
  color: var(--text-muted);
  opacity: 0.75;
  margin-top: 20px;
}
.image-credit a { text-decoration: underline; }

/* ---------- Trust strip (country flags) ---------- */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 26px 0;
}
.trust-strip .trust-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.trust-strip .trust-flag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Technical spec comparison cards (Services page) ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.spec-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px;
}
.spec-card .spec-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.spec-card h4 { font-size: 1.05rem; margin-bottom: 14px; }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-line);
  font-size: 0.85rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .spec-label { color: var(--text-muted); }
.spec-row .spec-value { color: var(--navy); font-weight: 600; text-align: right; }

.best-value-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p.quote { font-style: italic; color: var(--text-body); font-size: 0.96rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
.testimonial-author div { text-align: left; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- About teaser (split) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split > div:not(.doctor-photo-frame) { text-align: center; }
  .split .credential-list { text-align: left; }
}
.doctor-photo-frame {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  padding: 14px;
}
.doctor-photo-placeholder {
  aspect-ratio: 4/5;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
}
.doctor-photo-placeholder svg { width: 96px; height: 96px; }
.doctor-photo-frame { overflow: hidden; }
.doctor-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.doctor-photo-frame:hover .doctor-photo { transform: scale(1.04); }
.doctor-specialty { color: var(--gold-dark); font-weight: 600; font-size: 1rem; margin: -10px 0 18px; }
.credential-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.credential-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.credential-list svg { width: 20px; height: 20px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }

/* ---------- Portrait placeholder (monogram, no real photo yet) ---------- */
.portrait-placeholder {
  aspect-ratio: 4/5;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.portrait-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 22% 18%, rgba(201,162,75,0.22), transparent 45%),
                     radial-gradient(circle at 85% 90%, rgba(201,162,75,0.12), transparent 40%);
}
.portrait-placeholder .monogram {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 4.2rem;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  border: 1px solid rgba(201,162,75,0.4);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-placeholder .portrait-caption {
  position: relative;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---------- Surgical care callout ---------- */
.surgical-callout {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.surgical-callout .icon-circle {
  margin: 0 auto 20px;
  background: rgba(201,162,75,0.16);
  color: var(--gold-light);
}
.surgical-callout p { color: rgba(255,255,255,0.75); font-size: 1.02rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.faq-question .plus {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(201,162,75,0.15);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-answer { padding: 0 24px 22px; }
.faq-answer p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 20px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 70%;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; font-size: 1.7rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 0; }
@media (max-width: 768px) {
  .cta-band { flex-direction: column; justify-content: center; text-align: center; gap: 20px; }
  .cta-band p { margin: 0 auto; max-width: 480px; }
}
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; flex-basis: 100%; }

/* ---------- Blog teaser ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.blog-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: rgba(27,42,74,0.4);
}
.blog-thumb svg { width: 44px; height: 44px; }
.blog-card-body { padding: 22px 22px 26px; }
.blog-tag { color: var(--gold-dark); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.06rem; margin: 10px 0; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 64px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(201,162,75,0.18), transparent 40%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-light); }

.placeholder-panel {
  background: var(--white);
  border: 1px dashed var(--gray-line);
  border-radius: var(--radius);
  padding: 64px 32px;
  text-align: center;
  color: var(--text-muted);
}
.placeholder-panel .icon-circle { margin: 0 auto 18px; }
.placeholder-panel h2 { color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--white);
  margin-bottom: 14px;
}
.footer-logo svg { width: 32px; height: 32px; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- WhatsApp floating button ---------- */
.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  z-index: 600;
  transition: transform 0.2s ease;
}
.float-whatsapp:hover { transform: scale(1.06); }
.float-whatsapp svg { width: 28px; height: 28px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden-mobile { display: block; }
@media (max-width: 768px) { .hidden-mobile { display: none; } }

/* ---------- Before / After slider ---------- */
.ba-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 28px;
}
.ba-compare:last-of-type { margin-bottom: 0; }
@media (max-width: 560px) { .ba-compare { grid-template-columns: 1fr; } }
.ba-compare-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.ba-compare-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.ba-compare-item:hover img { transform: scale(1.05); }
.ba-compare-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 5;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.before-after-disclaimer {
  text-align: center;
  font-size: 0.58rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 18px auto 0;
  max-width: 900px;
  white-space: nowrap;
}
@media (max-width: 620px) {
  .before-after-disclaimer { white-space: normal; }
}
