:root {
  color-scheme: light;
  --background: #fffdf9;
  --foreground: #332f2b;
  --card: #ffffff;
  --primary: #b7752b;
  --primary-foreground: #ffffff;
  --secondary: #faefed;
  --muted-foreground: #746a62;
  --border: #eadbd0;
  --input: #e6d8ce;
  --shadow-soft: 0 4px 20px -8px rgba(183, 117, 43, 0.2);
  --shadow-elevated: 0 16px 44px -18px rgba(120, 75, 30, 0.34);
  --font-sans: "Open Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

.dark {
  color-scheme: dark;
  --background: #211c19;
  --foreground: #fbf5ef;
  --card: #2b2420;
  --primary: #d99a49;
  --primary-foreground: #211c19;
  --secondary: #332822;
  --muted-foreground: #c9bdb4;
  --border: #4c3d34;
  --input: #5a493f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: 0.25s ease; }
button, input, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 600;
}
p { margin: 0; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.container { width: min(100% - 56px, 1240px); margin-inline: auto; }
.section { padding: 88px 0; scroll-margin-top: 80px; }
.band { background: color-mix(in srgb, var(--secondary) 46%, transparent); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled, .site-header.menu-open {
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--background) 88%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.nav { display: flex; height: 68px; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.brand-mark {
  display: none;
}
.brand-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 30px; padding: 0; margin: 0; list-style: none; font-size: 0.86rem; font-weight: 600; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  background: color-mix(in srgb, var(--background) 92%, transparent);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  border-radius: 999px;
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lang-btn.active {
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  color: var(--primary);
}
.btn, .icon-btn { display: inline-flex; align-items: center; justify-content: center; border: 0; min-height: 40px; border-radius: 999px; font-weight: 700; }
.btn { gap: 8px; padding: 0 22px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 82%, white)); color: var(--primary-foreground); box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-elevated); }
.btn-outline { border: 2px solid color-mix(in srgb, var(--primary) 30%, transparent); background: var(--background); }
.btn-outline:hover { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, transparent); }
.icon-btn { width: 40px; padding: 0; background: transparent; color: var(--foreground); }
.icon-btn:hover { background: var(--secondary); color: var(--primary); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 4px; }
.mobile-menu-btn span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.mobile-menu { display: none; width: min(100% - 40px, 1280px); margin: 0 auto; padding: 10px 0 18px; }
.mobile-menu a:not(.btn) { display: block; padding: 12px 14px; border-radius: 10px; font-weight: 700; }
.mobile-menu a:not(.btn):hover { background: var(--secondary); color: var(--primary); }

.hero { position: relative; overflow: hidden; padding-top: 128px; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 88% 20%, color-mix(in srgb, var(--primary) 15%, transparent), transparent 25rem),
    radial-gradient(circle at 0 80%, color-mix(in srgb, var(--primary) 9%, transparent), transparent 23rem),
    linear-gradient(180deg, color-mix(in srgb, var(--secondary) 68%, transparent), var(--background) 52%);
}
.hero-grid, .about-grid, .booking-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
}
.hero-copy { display: grid; gap: 24px; }
.hero-copy {
  max-width: 600px;
}
.eyebrow, .pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 800;
}
.kicker { display: inline-block; color: var(--primary); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.inline-icon { width: 16px; height: 16px; stroke-width: 2; vertical-align: middle; }
.icon-only { width: 20px; height: 20px; stroke-width: 2; }
.icon-chip {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary);
}
.hero h1 {
  font-size: clamp(2.45rem, 3.9vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: 0;
  max-width: none;
}
.hero h1 .line-1 {
  display: block;
  color: var(--foreground);
  font-style: normal;
  white-space: nowrap;
}
.hero h1 .line-2 {
  display: block;
  color: var(--primary);
  font-style: italic;
  white-space: nowrap;
}
h2 em { display: block; color: var(--primary); font-style: italic; }
.hero p, .section-heading p, .split-heading p, .about p, .booking p, .center-note { color: var(--muted-foreground); }
.hero p { max-width: 600px; font-size: 1.02rem; line-height: 1.42; }
.hero-buttons, .social-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.social-proof { gap: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.avatars { display: flex; }
.avatars span { width: 42px; height: 42px; margin-left: -10px; border: 2px solid var(--background); border-radius: 50%; background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 38%, white), var(--primary)); }
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--primary); letter-spacing: 0.08em; }
.hero-media { position: relative; }
.hero-media::before { position: absolute; inset: -28px; z-index: -1; border-radius: 34px; background: linear-gradient(35deg, color-mix(in srgb, var(--primary) 25%, transparent), transparent 70%); filter: blur(26px); content: ""; }
.hero-media img, .about-media img {
  width: 100%;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  border-radius: 28px;
  box-shadow: var(--shadow-elevated);
}
.hero-media img {
  aspect-ratio: 4 / 3.35;
  max-height: 520px;
}
.promo-card { position: absolute; left: -24px; bottom: -24px; display: flex; gap: 14px; align-items: center; max-width: 280px; padding: 16px; border: 1px solid var(--border); border-radius: 16px; background: var(--background); box-shadow: var(--shadow-elevated); }
.promo-card span { display: grid; flex: 0 0 54px; height: 54px; place-items: center; border-radius: 50%; background: var(--secondary); color: var(--primary); }
.promo-card small, .testimonial-card small, .contact-list em { display: block; color: var(--muted-foreground); font-style: normal; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 72px; }
.stat-grid article { padding: 24px 20px; border: 1px solid var(--border); border-radius: 16px; background: color-mix(in srgb, var(--card) 72%, transparent); text-align: center; }
.stat-grid strong { display: block; color: var(--primary); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.stat-grid span { color: var(--muted-foreground); font-size: 0.88rem; font-weight: 700; }

.section-heading { max-width: 680px; }
.center-heading { margin-inline: auto; text-align: center; }
.section-heading h2, .split-heading h2, .about h2, .booking h2 { margin-top: 14px; font-size: clamp(2.25rem, 3.4vw, 3.4rem); }
.section-heading p, .split-heading p { margin-top: 20px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.split-heading p { max-width: 440px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.service-card, .testimonial-card, .booking-form, .blog-grid article, .contact-list a { border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-soft); }
.service-card { position: relative; display: flex; min-height: 310px; flex-direction: column; gap: 16px; padding: 30px; border-radius: 20px; overflow: hidden; }
.service-card:hover, .blog-grid article:hover, .contact-list a:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--primary) 45%, transparent); box-shadow: var(--shadow-elevated); }
.service-card.popular { border-width: 2px; border-color: color-mix(in srgb, var(--primary) 42%, transparent); }
.service-card > span { flex: 0 0 auto; }
.service-card i { position: absolute; top: 16px; right: 16px; border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent); border-radius: 999px; color: var(--primary); padding: 5px 10px; font-size: 0.72rem; font-style: normal; font-weight: 800; }
.service-card h3 { font-size: 1.35rem; }
.service-card p { flex: 1; color: var(--muted-foreground); }
.service-card footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.service-card footer a, .blog a, .split-heading a { color: var(--primary); font-weight: 800; }
.service-card footer a,
.blog a,
.split-heading a,
.hero-buttons a { display: inline-flex; align-items: center; gap: 5px; }
.center, .center-note { text-align: center; }
.center-note { margin-top: 54px; margin-bottom: 16px; }

.gallery-grid { display: grid; grid-auto-rows: 220px; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border: 1px solid color-mix(in srgb, var(--border) 70%, transparent); border-radius: 20px; background: var(--card); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; padding: 50px 16px 16px; background: linear-gradient(transparent, rgba(0, 0, 0, 0.74)); color: #fff; font-weight: 700; opacity: 0; transition: opacity 0.25s ease; }
.gallery-grid figure:hover figcaption { opacity: 1; }

.about-media { position: relative; }
.about-media img {
  aspect-ratio: 4 / 3.35;
  max-height: 520px;
}
.about p, .booking p { margin-top: 22px; max-width: 560px; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 30px 0; list-style: none; }
.check-list li { position: relative; padding-left: 36px; }
.check-list li::before { position: absolute; left: 0; top: 1px; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--secondary); color: var(--primary); content: "✓"; font-weight: 900; }

.narrow { max-width: 920px; }
.testimonial-card { position: relative; margin-top: 56px; padding: 42px; border-radius: 28px; overflow: hidden; }
.quote-mark { color: color-mix(in srgb, var(--primary) 30%, transparent); font-family: var(--font-display); font-size: 5rem; line-height: 0.7; }
.testimonial-card p { min-height: 112px; margin-top: 18px; font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-style: italic; font-weight: 600; }
.testimonial-card footer { display: flex; align-items: center; gap: 14px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--border); }
.testimonial-card footer span { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--primary) 18%, transparent); color: var(--primary); font-weight: 800; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.slider-controls button { width: 46px; height: 46px; border: 2px solid color-mix(in srgb, var(--primary) 25%, transparent); border-radius: 50%; background: var(--card); color: var(--foreground); font-size: 1.8rem; }
.slider-controls button:hover { border-color: var(--primary); background: var(--primary); color: var(--primary-foreground); }
.slider-controls div { display: flex; align-items: center; gap: 8px; }
.slider-controls .dot { width: 10px; height: 10px; border: 0; border-radius: 999px; background: var(--border); }
.slider-controls .dot.active { width: 32px; background: var(--primary); }

.benefits { display: grid; gap: 16px; margin-top: 34px; }
.benefits div { display: flex; align-items: center; gap: 14px; font-weight: 700; }
.benefits span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--secondary); color: var(--primary); }
.booking-form { position: relative; display: grid; gap: 18px; padding: 34px; border-radius: 26px; }
.form-steps { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.form-steps span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--primary); color: var(--primary-foreground); font-weight: 900; }
.form-steps i { flex: 1; height: 1px; background: var(--border); }
.form-steps [data-step-done] { background: var(--secondary); color: var(--muted-foreground); }
.booking-form label { display: grid; gap: 8px; font-weight: 700; }
.booking-form input, .booking-form select { width: 100%; min-height: 48px; border: 1px solid var(--input); border-radius: 12px; background: var(--background); color: var(--foreground); padding: 0 14px; }
.booking-form input.error, .booking-form select.error { border-color: #d84d3f; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.full { width: 100%; margin-top: 10px; }
.form-message { display: none; border-radius: 12px; padding: 13px 14px; font-weight: 700; }
.form-message.show { display: block; }
.form-message.success { border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent); background: color-mix(in srgb, var(--primary) 9%, transparent); }
.form-message.error { border: 1px solid rgba(216, 77, 63, 0.35); background: rgba(216, 77, 63, 0.08); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-grid article { overflow: hidden; border-radius: 24px; }
.blog-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.7s ease; }
.blog-grid article:hover img { transform: scale(1.06); }
.blog-grid article div { padding: 24px; }
.blog-grid span { color: var(--muted-foreground); font-size: 0.82rem; font-weight: 700; }
.blog-grid h3 { margin: 12px 0 16px; font-size: 1.35rem; }

.contact-grid { align-items: stretch; margin-top: 56px; }
.contact iframe { width: 100%; min-height: 440px; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow-soft); }
.contact-list { display: grid; gap: 16px; }
.contact-list a { display: flex; align-items: flex-start; gap: 18px; padding: 24px; border-radius: 18px; }
.contact-list span { display: grid; flex: 0 0 54px; height: 54px; place-items: center; border-radius: 16px; background: color-mix(in srgb, var(--primary) 14%, transparent); color: var(--primary); }
.contact-list small { color: var(--muted-foreground); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-list strong { display: block; margin: 3px 0; font-family: var(--font-display); font-size: 1.2rem; }

.footer { padding: 72px 0 28px; background: var(--foreground); color: var(--background); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; }
.footer p, .footer a, .footer span { color: color-mix(in srgb, var(--background) 72%, transparent); }
.footer p { max-width: 320px; margin-top: 18px; }
.footer h3 { margin-bottom: 14px; font-size: 1.1rem; }
.footer-grid div { display: grid; align-content: start; gap: 9px; }
.footer a:hover { color: var(--primary); }
.copyright { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 26px; border-top: 1px solid color-mix(in srgb, var(--background) 18%, transparent); font-size: 0.82rem; }
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: grid; gap: 12px; }
.floating-actions a { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 50%; background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-elevated); }
.floating-actions a:first-child { background: #0068ff; color: #fff; }
.floating-actions a:hover { transform: scale(1.08); }
.reveal { animation: fade-up 0.75s ease both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Booking Page */
.booking-page { padding-top: 68px; }
.booking-hero { background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), color-mix(in srgb, var(--secondary) 80%, transparent)); padding: 60px 0; }
.booking-header { text-align: center; max-width: 600px; margin-inline: auto; }
.booking-header h1 { font-size: 2.5rem; margin-bottom: 16px; }
.booking-header p { color: var(--muted-foreground); font-size: 1.1rem; }

.booking-form-section { padding: 60px 0; }
.booking-form-container { max-width: 900px; margin-inline: auto; }

/* Progress Indicator */
.progress-indicator { margin-bottom: 60px; }
.progress-bar { height: 3px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 28px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--primary) 82%, white)); transition: width 0.3s ease; }
.progress-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.progress-step { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px; }
.progress-step.active .step-number { background: var(--primary); color: var(--primary-foreground); }
.progress-step.completed .step-number { background: var(--primary); color: var(--primary-foreground); }
.step-number { display: grid; width: 36px; height: 36px; place-items: center; border: 2px solid var(--border); border-radius: 50%; font-weight: 700; font-size: 0.85rem; background: var(--card); color: var(--foreground); transition: all 0.25s ease; }
.step-label { font-size: 0.75rem; font-weight: 600; color: var(--muted-foreground); }

/* Multi-step Form */
.multi-step-form { display: grid; }
.form-step { display: none; grid-template-columns: 1fr; gap: 32px; animation: fade-in 0.3s ease; }
.form-step.active { display: grid; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.multi-step-form.two-stage { gap: 18px; }
.multi-step-form.two-stage .form-step.active {
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}
.multi-step-form.two-stage .step-header { text-align: left; margin-bottom: 0; }
.multi-step-form.two-stage .booking-summary { margin-bottom: 0; }

.step-header { text-align: center; margin-bottom: 16px; }
.step-header h2 { font-size: 1.8rem; margin-bottom: 8px; }
.step-header p { color: var(--muted-foreground); }

/* Form Groups */
.form-group { display: grid; gap: 8px; margin-bottom: 20px; }
.form-group label { font-weight: 600; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: var(--foreground);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 8%, transparent);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input.input-error,
.form-group textarea.input-error,
.date-picker input.input-error {
  border-color: #d84d3f;
  box-shadow: 0 0 0 3px color-mix(in srgb, #d84d3f 20%, transparent);
}
.selection-error {
  outline: 2px solid color-mix(in srgb, #d84d3f 70%, transparent);
  outline-offset: 4px;
  border-radius: 12px;
}

/* Branch Cards */
.branches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.branch-card { position: relative; }
.branch-card input { position: absolute; opacity: 0; }
.branch-card input:checked ~ .branch-content,
.branch-card input:checked + .branch-content { color: var(--primary); }
.branch-card { cursor: pointer; padding: 20px; border: 2px solid var(--border); border-radius: 12px; background: var(--card); transition: all 0.25s ease; }
.branch-card:has(input:checked) { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, transparent); box-shadow: var(--shadow-soft); }
.branch-card:hover { border-color: color-mix(in srgb, var(--primary) 40%, transparent); }
.branch-content { display: grid; gap: 8px; }
.branch-name { font-weight: 700; font-size: 1rem; }
.branch-address { font-size: 0.9rem; color: var(--muted-foreground); }
.branch-hours { font-size: 0.85rem; color: var(--muted-foreground); }
.branch-icon { position: absolute; top: 16px; right: 16px; width: 24px; height: 24px; color: var(--primary); opacity: 0; transition: opacity 0.25s ease; }
.branch-card:has(input:checked) .branch-icon { opacity: 1; }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.service-card { position: relative; padding: 20px; border: 2px solid var(--border); border-radius: 12px; background: var(--card); cursor: pointer; transition: all 0.25s ease; }
.service-card input { position: absolute; opacity: 0; }
.service-card:has(input:checked) { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, transparent); box-shadow: var(--shadow-soft); }
.service-card:hover { border-color: color-mix(in srgb, var(--primary) 40%, transparent); }
.service-header { display: flex; justify-content: space-between; align-items: start; gap: 12px; margin-bottom: 12px; }
.service-name { font-weight: 700; font-size: 0.95rem; }
.service-price { color: var(--primary); font-weight: 700; white-space: nowrap; }
.service-duration { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--muted-foreground); }
.service-check { position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; color: var(--primary); opacity: 0; transition: opacity 0.25s ease; }
.service-card:has(input:checked) .service-check { opacity: 1; }

/* Technician Cards */
.technicians-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.technician-card { position: relative; padding: 20px; border: 2px solid var(--border); border-radius: 12px; background: var(--card); cursor: pointer; text-align: center; transition: all 0.25s ease; }
.technician-card input { position: absolute; opacity: 0; }
.technician-card:has(input:checked) { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, transparent); box-shadow: var(--shadow-soft); }
.technician-card:hover { border-color: color-mix(in srgb, var(--primary) 40%, transparent); }
.technician-avatar { display: grid; width: 80px; height: 80px; place-items: center; border-radius: 50%; background: var(--secondary); margin-inline: auto; margin-bottom: 12px; color: var(--primary); font-size: 2rem; }
.technician-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.technician-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0; }
.technician-check { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; color: var(--primary); opacity: 0; transition: opacity 0.25s ease; }
.technician-card:has(input:checked) .technician-check { opacity: 1; }
.technician-empty {
  grid-column: 1 / -1;
  padding: 16px;
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  color: var(--muted-foreground);
  text-align: center;
  background: color-mix(in srgb, var(--secondary) 70%, transparent);
}

/* Date & Time Picker */
.date-time-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 24px; }
.date-picker, .time-picker { display: grid; gap: 12px; }
.date-picker label, .time-picker label { font-weight: 600; font-size: 0.95rem; }
.date-picker input { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--card); color: var(--foreground); font-size: 0.95rem; }
.date-picker input:focus { outline: none; border-color: var(--primary); }
.time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 10px; }
.time-slot { position: relative; }
.time-slot input { position: absolute; opacity: 0; }
.time-slot label { display: grid; place-items: center; padding: 12px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--card); color: var(--foreground); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.25s ease; }
.time-slot input:checked ~ label { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 12%, transparent); color: var(--primary); }
.time-slot.disabled label { opacity: 0.5; cursor: not-allowed; background: var(--secondary); }
.availability-note { display: flex; align-items: flex-start; gap: 12px; padding: 14px; background: color-mix(in srgb, var(--primary) 8%, transparent); border-radius: 8px; font-size: 0.9rem; color: var(--muted-foreground); }
.availability-note i { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* Booking Summary */
.booking-summary { display: grid; gap: 24px; padding: 24px; background: var(--secondary); border-radius: 12px; margin-bottom: 24px; }
.summary-section { display: grid; gap: 12px; }
.summary-title { font-weight: 700; font-size: 0.95rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.04em; }
.summary-content { display: grid; gap: 10px; }
.summary-item { display: flex; justify-content: space-between; gap: 12px; font-size: 0.9rem; }
.summary-label { color: var(--muted-foreground); }
.summary-value { font-weight: 600; text-align: right; }
.confirmation-message { padding: 16px; border-radius: 8px; font-weight: 600; display: none; }
.confirmation-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.confirmation-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Form Actions */
.form-actions { display: flex; justify-content: space-between; gap: 16px; margin-top: 32px; }
.form-actions .btn { flex: 1; }
.form-actions .btn.full { flex: 1 1 auto; }
.form-actions [data-submit-btn] { grid-column: 2 / 3; }
.multi-step-form.two-stage .form-actions { margin-top: 8px; }

/* Booking Benefits */
.booking-benefits { padding: 60px 0; background: var(--secondary); }
.booking-benefits h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.benefit-card { padding: 28px; background: var(--card); border-radius: 12px; text-align: center; transition: all 0.25s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.benefit-icon { display: grid; width: 60px; height: 60px; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--primary) 12%, transparent); color: var(--primary); font-size: 1.8rem; margin-inline: auto; margin-bottom: 16px; }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.benefit-card p { color: var(--muted-foreground); font-size: 0.95rem; }

@media (max-width: 1024px) {
  .nav-links, .nav-booking { display: none; }
  .lang-switch { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .site-header.menu-open .mobile-menu { display: grid; }
  .hero-grid, .about-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .service-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .progress-steps { grid-template-columns: repeat(3, 1fr); }
  .progress-step .step-label { display: none; }
  .date-time-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1240px); }
  .section { padding: 72px 0; }
  .nav { height: 58px; }
  .brand { font-size: 0.98rem; }
  .hero { padding-top: 98px; }
  .hero h1 { font-size: clamp(2rem, 10.5vw, 2.9rem); line-height: 1.1; max-width: 100%; }
  .hero h1 .line-1,
  .hero h1 .line-2 { white-space: normal; }
  .hero p { font-size: 0.96rem; }
  .promo-card { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 54px; }
  .stat-grid article { padding: 20px 10px; }
  .split-heading { display: grid; }
  .service-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: 10px; }
  .testimonial-card, .booking-form { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .contact iframe { min-height: 330px; }
  .copyright { flex-direction: column; }
  .floating-actions { right: 14px; bottom: 14px; }
  .floating-actions a { width: 50px; height: 50px; }
  
  /* Booking Page Mobile */
  .booking-page { padding-top: 58px; }
  .booking-hero { padding: 40px 0; }
  .booking-header h1 { font-size: 1.8rem; }
  .booking-header p { font-size: 0.95rem; }
  .progress-indicator { margin-bottom: 40px; }
  .progress-steps { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .step-number { width: 32px; height: 32px; font-size: 0.75rem; }
  .step-header h2 { font-size: 1.4rem; }
  .branches-grid, .services-grid, .technicians-grid { grid-template-columns: 1fr; }
  .date-time-wrapper { grid-template-columns: 1fr; gap: 20px; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .booking-benefits { padding: 40px 0; }
  .booking-benefits h2 { font-size: 1.5rem; margin-bottom: 28px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
}
