:root {
  --charcoal: #1a1d23;
  --charcoal-deep: #0f1115;
  --charcoal-mid: #2a2f38;
  --steel: #8b939e;
  --steel-light: #b8bec6;
  --orange: #e85d04;
  --orange-light: #ff7a1f;
  --orange-dark: #c44d03;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --text: #1a1d23;
  --muted: #5c6570;
  --border: rgba(26, 29, 35, 0.1);
  --shadow: 0 20px 50px rgba(15, 17, 21, 0.15);
  --radius: 8px;
  --radius-lg: 14px;
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 76px;
  --fab-size: 52px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--fab-size) + 1.5rem);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange); }

.container { width: min(1140px, 92vw); margin: 0 auto; }
.narrow { max-width: 720px; }
.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 42rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.site-header.header-solid {
  background: rgba(15, 17, 21, 0.96);
  border-bottom: 1px solid rgba(232, 93, 4, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
}
.brand__icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}
.brand__text span { color: var(--orange); display: block; font-size: 0.72rem; letter-spacing: 0.18em; }
.site-header.header-solid .brand__text,
.site-header.header-solid .brand__text span { color: var(--white); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.main-nav a:hover { color: var(--orange-light); }
.lang-toggle {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
}
.lang-toggle:hover { background: rgba(232, 93, 4, 0.35); border-color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover { background: var(--charcoal-mid); color: var(--white); }
.btn-nav { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15, 17, 21, 0.92) 0%, rgba(15, 17, 21, 0.65) 45%, rgba(15, 17, 21, 0.4) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero h1 { color: var(--white); margin: 0 0 1rem; }
.hero .lead { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.25rem; }
.hero__trust {
  font-size: 0.85rem;
  color: var(--orange-light);
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.section--dark {
  background: var(--charcoal);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lead { color: var(--steel-light); }
.section--white { background: var(--white); }
.section-head { margin-bottom: 2.5rem; }
.section-head.text-center .lead { margin-left: auto; margin-right: auto; }

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card__img { aspect-ratio: 16/10; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.35rem; }
.card__body h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.card__body p { margin: 0 0 1rem; color: var(--muted); font-size: 0.95rem; }
.card__link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.usp-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
}
.usp-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 93, 4, 0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.usp-card h3 { margin: 0 0 0.65rem; text-transform: none; font-size: 1.15rem; }
.usp-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-card__num {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.step-card h3 { font-size: 1rem; margin: 0 0 0.5rem; text-transform: none; }
.step-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.section--dark .step-card p { color: var(--steel-light); }

.testimonial {
  padding: 1.75rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}
.testimonial p { margin: 0 0 1rem; font-style: italic; color: var(--charcoal-mid); }
.testimonial cite { font-style: normal; font-size: 0.85rem; font-weight: 600; color: var(--muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin: 0 0 1.25rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.info-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
}
.info-list strong { min-width: 5rem; color: var(--charcoal); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Footer */
.site-footer {
  background: var(--charcoal-deep);
  color: var(--steel-light);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--steel-light); font-size: 0.9rem; }
.site-footer a:hover { color: var(--orange-light); }
.footer-brand p { font-size: 0.9rem; margin: 0.75rem 0 0; max-width: 280px; }
.social-row { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.social-row a:hover { background: var(--orange); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  text-align: center;
}

/* Floating action buttons */
.fab-stack {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.fab {
  width: var(--fab-size);
  height: var(--fab-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  line-height: 1.1;
  padding: 0.25rem;
}
.fab:hover { transform: scale(1.08); color: var(--white); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3); }
.fab--whatsapp { background: #25d366; }
.fab--call { background: var(--charcoal); }
.fab--maps { background: var(--orange); }

/* Inner pages */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin: 0 0 0.75rem; }
.page-hero .lead { color: var(--steel-light); margin: 0; }

.breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: var(--steel);
}
.breadcrumb a { color: var(--orange-light); }
.breadcrumb span { color: var(--steel-light); }

.content-block { max-width: 760px; }
.content-block p { color: var(--muted); margin: 0 0 1.25rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.check-list li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal-mid);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.service-sidebar h3 { margin: 0 0 1rem; font-size: 1rem; }
.service-sidebar ul { list-style: none; padding: 0; margin: 0; }
.service-sidebar li { margin-bottom: 0.5rem; }
.service-sidebar a { font-size: 0.9rem; color: var(--charcoal-mid); }
.service-sidebar a:hover { color: var(--orange); }

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.faq-item h4 { margin: 0 0 0.5rem; font-size: 1rem; text-transform: none; font-family: var(--font-body); font-weight: 600; }
.faq-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .grid-3, .grid-4, .footer-grid, .location-grid, .service-layout, .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-sidebar { position: static; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--charcoal-deep);
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    border-bottom: 1px solid rgba(232, 93, 4, 0.2);
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .fab-stack {
    bottom: 0.75rem;
    right: 0.75rem;
    flex-direction: row;
    gap: 0.5rem;
  }
  .fab {
    width: 46px;
    height: 46px;
    font-size: 0.55rem;
  }
}

/* Appointment bar */
.appointment-bar {
  background: var(--orange);
  color: var(--white);
  padding: 0.55rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}
.appointment-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}
.appointment-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.appointment-bar a:hover { opacity: 0.9; }

.appointment-badge {
  display: inline-block;
  background: rgba(232, 93, 4, 0.15);
  color: var(--orange-dark);
  border: 1px solid rgba(232, 93, 4, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero .appointment-badge {
  background: rgba(232, 93, 4, 0.25);
  color: var(--orange-light);
  border-color: rgba(232, 93, 4, 0.5);
}
.hero .appointment-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.notice-box {
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.25);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal-mid);
  font-size: 0.95rem;
}
.page-hero .notice-box {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 93, 4, 0.4);
  color: var(--steel-light);
  margin-top: 1rem;
}

/* Schedule app */
.schedule-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}
.schedule-sidebar-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.schedule-sidebar-card h3 {
  color: var(--orange-light);
  font-size: 1rem;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}
.schedule-sidebar-card p {
  font-size: 0.9rem;
  color: var(--steel-light);
  margin: 0 0 1rem;
  line-height: 1.55;
}
.schedule-sidebar-card .info-list { margin: 0; }
.schedule-sidebar-card .info-list li {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--steel-light);
  font-size: 0.9rem;
}
.schedule-sidebar-card .info-list strong { color: var(--white); min-width: 4.5rem; }

.schedule-app {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.schedule-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.schedule-step-indicator {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius);
  background: var(--off-white);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  border: 2px solid transparent;
}
.schedule-step-indicator.is-active {
  background: rgba(232, 93, 4, 0.12);
  color: var(--orange-dark);
  border-color: var(--orange);
}
.schedule-step-indicator.is-done {
  background: rgba(26, 29, 35, 0.06);
  color: var(--charcoal);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.time-slot {
  padding: 0.65rem 0.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--charcoal);
}
.time-slot:hover { border-color: var(--orange); color: var(--orange-dark); }
.time-slot.is-selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.summary-list {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.65rem 1rem;
  margin: 0;
}
.summary-list dt {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.85rem;
}
.summary-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.schedule-policy {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .schedule-layout { grid-template-columns: 1fr; }
  .schedule-sidebar-card { position: static; }
}
