:root {
  --radius: 1rem;
  --background: #f3fbfa;
  --foreground: #183140;
  --card: #ffffff;
  --primary: #1398a7;
  --primary-dark: #0f7783;
  --primary-foreground: #ffffff;
  --secondary: #e7f8f6;
  --muted: #edf5f6;
  --muted-foreground: #657781;
  --accent: #b9ec45;
  --accent-foreground: #23420f;
  --border: #d9e8eb;
  --input: #d3e5e8;
  --gradient-hero: linear-gradient(135deg, #1398a7 0%, #4ac7c9 50%, #b9ec45 100%);
  --gradient-soft: linear-gradient(180deg, #f3fbfa 0%, #e7f8f6 100%);
  --shadow-soft: 0 10px 30px -12px rgba(19, 152, 167, 0.25);
  --shadow-glow: 0 20px 60px -20px rgba(74, 199, 201, 0.55);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--foreground); background: var(--background); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 72rem; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: rgba(243,251,250,.82); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; height: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.1rem; letter-spacing: -.03em; }
.brand-icon { display: inline-flex; height: 2.25rem; width: 2.25rem; align-items: center; justify-content: center; border-radius: .85rem; background: var(--primary); color: white; box-shadow: var(--shadow-soft); }
.nav { display: flex; align-items: center; gap: .15rem; }
.nav a { padding: .55rem .9rem; color: var(--muted-foreground); border-radius: .7rem; font-size: .92rem; font-weight: 600; transition: .2s; }
.nav a:hover, .nav a.active { background: var(--secondary); color: var(--foreground); }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.language-toggle { display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; background: white; }
.language-toggle button { border: 0; background: transparent; padding: .3rem .55rem; font-weight: 800; font-size: .75rem; cursor: pointer; color: var(--muted-foreground); }
.language-toggle button.active { background: var(--primary); color: white; }
.call-pill { display: inline-flex; align-items: center; gap: .4rem; padding: .7rem 1rem; border-radius: 999px; background: var(--primary); color: white; font-weight: 800; font-size: .9rem; box-shadow: var(--shadow-soft); }
.menu-button { display: none; border: 1px solid var(--border); background: white; border-radius: .75rem; height: 2.4rem; width: 2.4rem; font-size: 1.2rem; }
.hero { position: relative; overflow: hidden; background: var(--gradient-soft); }
.hero-grid { display: grid; gap: 3rem; grid-template-columns: 1fr 1fr; align-items: center; padding-top: 4rem; padding-bottom: 5rem; }
.badge { display: inline-flex; align-items: center; gap: .45rem; background: rgba(185,236,69,.45); color: var(--accent-foreground); padding: .45rem .85rem; border-radius: 999px; font-size: .78rem; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 4rem); line-height: 1.04; letter-spacing: -.06em; margin: 1.2rem 0; }
.big-title, .section-heading h2, .section-title { font-size: clamp(2.2rem, 4.5vw, 3.1rem); line-height: 1.08; letter-spacing: -.055em; margin-bottom: 1rem; }
.gradient-text { background: var(--gradient-hero); background-clip: text; -webkit-background-clip: text; color: transparent; }
.lead { font-size: 1.13rem; color: var(--muted-foreground); line-height: 1.65; max-width: 36rem; }
.narrow { max-width: 52rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: 1.7rem; }
.button-row.center { justify-content: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; border-radius: 999px; padding: .9rem 1.25rem; border: 0; font-weight: 800; font-size: .95rem; cursor: pointer; transition: .2s; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--primary); color: white; box-shadow: var(--shadow-soft); }
.button.primary:hover { background: var(--primary-dark); }
.button.secondary { background: white; border: 2px solid rgba(19,152,167,.2); }
.button.light { background: white; color: var(--foreground); }
.button.outline-light { border: 2px solid rgba(255,255,255,.45); color: white; }
.button.full { width: 100%; }
.mini-facts { display: flex; gap: 1.5rem; flex-wrap: wrap; color: var(--muted-foreground); margin-top: 1.7rem; font-size: .95rem; }
.hero-image-wrap { position: relative; }
.hero-image-wrap::before { content: ""; position: absolute; inset: -1.5rem; border-radius: 2rem; background: var(--gradient-hero); filter: blur(45px); opacity: .4; }
.hero-image-wrap img { position: relative; border-radius: 2rem; aspect-ratio: 1 / 1; object-fit: cover; box-shadow: var(--shadow-glow); }
.section { padding-top: 5rem; padding-bottom: 5rem; }
.border-top { border-top: 1px solid var(--border); }
.section-title { text-align: center; }
.section-heading { max-width: 42rem; margin: 0 auto 3rem; text-align: center; }
.section-heading p { color: var(--muted-foreground); line-height: 1.65; }
.cards { display: grid; gap: 1.25rem; }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .card-form, .booking-form { background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow-soft); }
.card:hover { transform: translateY(-4px); transition: .2s; }
.icon-box { height: 2.75rem; width: 2.75rem; border-radius: .8rem; display: inline-flex; align-items: center; justify-content: center; background: rgba(19,152,167,.1); color: var(--primary); font-size: 1.3rem; }
.card h3 { margin: 1rem 0 .55rem; }
.card p { color: var(--muted-foreground); line-height: 1.6; font-size: .95rem; }
.step-card { position: relative; }
.step-num { position: absolute; top: -.75rem; left: -.75rem; height: 2.25rem; width: 2.25rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--gradient-hero); color: white; font-weight: 900; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
.price-card { position: relative; border-radius: 2rem; padding: 2rem; border: 1px solid var(--border); background: white; box-shadow: var(--shadow-soft); }
.price-card.highlight { color: white; background: var(--gradient-hero); border-color: transparent; box-shadow: var(--shadow-glow); }
.save-pill { position: absolute; right: 1.5rem; top: -.75rem; background: var(--accent); color: var(--accent-foreground); padding: .25rem .7rem; border-radius: 999px; font-size: .78rem; font-weight: 900; }
.price { display: flex; align-items: baseline; gap: .35rem; flex-wrap: nowrap; white-space: nowrap; margin: 1.25rem 0; overflow: visible; }
.price-amount { font-size: clamp(2.7rem, 8vw, 3.4rem); line-height: .95; font-weight: 900; letter-spacing: -.06em; }
.price-period { font-size: .95rem; line-height: 1.1; font-weight: 700; opacity: .9; letter-spacing: 0; }
ul.clean-list { list-style: none; padding: 0; margin: 1.2rem 0 1.5rem; display: grid; gap: .7rem; }
ul.clean-list li::before { content: "✓"; margin-right: .55rem; font-weight: 900; }
.addon-box { max-width: 48rem; margin: 2rem auto 0; display: flex; gap: 1rem; padding: 1.4rem; border-radius: 1.25rem; border: 1px dashed var(--border); background: rgba(231,248,246,.6); }
.addon-icon { height: 2.7rem; width: 2.7rem; border-radius: .8rem; display: flex; align-items: center; justify-content: center; background: rgba(185,236,69,.45); flex: 0 0 auto; }
.primary-text { color: var(--primary); }
.avatar { height: 4rem; width: 4rem; border-radius: 1.1rem; background: var(--gradient-hero); color: white; display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 900; }
.cta-card { border-radius: 2rem; padding: 3rem; text-align: center; color: white; background: var(--gradient-hero); box-shadow: var(--shadow-glow); }
.cta-card.left { text-align: left; margin-top: 3rem; }
.cta-card p { opacity: .9; max-width: 42rem; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-card.left p { margin-left: 0; }
.star { font-size: 2rem; opacity: .9; }
.review-grid { display: grid; gap: 1rem; margin-bottom: 2rem; }
.review-card { background: white; border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.25rem; box-shadow: var(--shadow-soft); }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.review-author { display: flex; align-items: center; gap: .8rem; }
.review-avatar { height: 2.5rem; width: 2.5rem; border-radius: 999px; background: var(--gradient-hero); color: white; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.stars { color: #b4dd30; letter-spacing: .08em; white-space: nowrap; }
.form { display: grid; gap: 1rem; }
.form h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.form label { display: grid; gap: .35rem; font-weight: 800; font-size: .9rem; }
.form input, .form select, .form textarea { width: 100%; border: 1px solid var(--input); border-radius: .9rem; padding: .85rem 1rem; background: var(--background); color: var(--foreground); font: inherit; }
.form textarea { resize: vertical; }
.form-grid { display: grid; gap: 1rem; }
.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-note { color: var(--muted-foreground); font-size: .85rem; line-height: 1.5; margin: 0; }
.success { padding: .9rem; border-radius: .9rem; background: rgba(185,236,69,.35); color: var(--accent-foreground); font-weight: 800; }
.hidden { display: none; }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: start; }
.info-list { display: grid; gap: 1rem; margin-top: 2rem; }
.info-list div { display: grid; gap: .25rem; padding-left: 1rem; border-left: 3px solid rgba(19,152,167,.2); }
.info-list span, .info-list a { color: var(--muted-foreground); }
.footer { border-top: 1px solid var(--border); background: rgba(231,248,246,.55); margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-top: 3rem; padding-bottom: 3rem; }
.footer p, .footer a { color: var(--muted-foreground); line-height: 1.6; display: block; margin: .25rem 0; }
.footer h3, .footer h4 { margin-bottom: .6rem; }
.copyright { border-top: 1px solid var(--border); text-align: center; padding: 1.1rem; color: var(--muted-foreground); font-size: .85rem; }
.language-modal { position: fixed; inset: 0; z-index: 100; background: rgba(243,251,250,.82); backdrop-filter: blur(14px); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-card { width: min(100%, 28rem); border-radius: 2rem; background: white; border: 1px solid var(--border); padding: 2rem; text-align: center; box-shadow: var(--shadow-glow); }
.globe { font-size: 2.5rem; margin-bottom: .5rem; }
.modal-card p { color: var(--muted-foreground); }
.modal-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.5rem; }
.modal-buttons button { border: 2px solid var(--border); background: var(--background); border-radius: 1.2rem; padding: 1rem; font-weight: 900; cursor: pointer; }
.modal-buttons span { display: block; font-size: 2rem; margin-bottom: .3rem; }
@media (max-width: 850px) {
  .nav { position: absolute; top: 4rem; left: 1rem; right: 1rem; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--border); border-radius: 1.25rem; padding: .6rem; box-shadow: var(--shadow-soft); }
  .nav.open { display: flex; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .call-pill span { display: none; }
  .hero-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards.three, .cards.four, .cards.two, .pricing-grid, .two-cols { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 3rem; }
  .section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .cta-card { padding: 2rem; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 .9rem; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .brand span:last-child { display: none; }
  .language-toggle button { padding: .3rem .45rem; }
}


/* Site controls + dark mode updates */
body.dark {
  --background: #071417;
  --foreground: #e8f6f5;
  --card: #0d2025;
  --primary: #35c3d1;
  --primary-dark: #1b9cac;
  --primary-foreground: #041012;
  --secondary: #102c32;
  --muted: #10252a;
  --muted-foreground: #a8bdc2;
  --accent: #b9ec45;
  --accent-foreground: #122107;
  --border: #1c3a42;
  --input: #25464e;
  --gradient-soft: linear-gradient(180deg, #071417 0%, #102c32 100%);
  --shadow-soft: 0 10px 30px -12px rgba(0,0,0,.55);
  --shadow-glow: 0 20px 60px -20px rgba(74,199,201,.45);
}
.site-header { background: color-mix(in srgb, var(--background) 84%, transparent); }
.control-button { display: inline-flex; align-items: center; gap: .35rem; border: 1px solid var(--border); background: var(--card); color: var(--foreground); border-radius: 999px; padding: .55rem .75rem; font-weight: 850; font-size: .82rem; cursor: pointer; box-shadow: var(--shadow-soft); }
.control-button:hover { transform: translateY(-1px); }
.language-modal[hidden] { display: none !important; }
.language-modal { background: color-mix(in srgb, var(--background) 82%, transparent); }
.modal-card, .price-card, .review-card, .nav, .button.secondary, .button.light, .menu-button { background: var(--card); color: var(--foreground); }
.modal-buttons button { color: var(--foreground); }
.modal-buttons button:hover { border-color: var(--primary); transform: translateY(-1px); }
.modal-close { margin-top: 1rem; border: 0; background: transparent; color: var(--muted-foreground); font-weight: 800; cursor: pointer; }
.footer { background: color-mix(in srgb, var(--secondary) 70%, transparent); }
@media (max-width: 480px) {
  .control-button span { display: none; }
  .control-button { padding: .55rem .65rem; }
}

.success.error { background: rgba(239, 68, 68, 0.12); border-color: rgba(239, 68, 68, 0.45); color: #991b1b; }
body.dark .success.error { color: #fecaca; }
button:disabled { opacity: 0.65; cursor: not-allowed; }


/* Service area */
.service-area {
  position: relative;
}

.city-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: 1.5rem auto 1rem;
  max-width: 820px;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(19, 152, 167, .22);
  background: rgba(19, 152, 167, .10);
  color: var(--foreground);
  border-radius: 999px;
  padding: .7rem 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.service-area-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted-foreground);
}

.other-city-field.hidden {
  display: none;
}

.price-extra { margin: -.65rem 0 1rem; font-weight: 800; color: var(--primary); }
.price-card.highlight .price-extra { color: white; opacity: .95; }
.estimate-box { display: grid; gap: .25rem; padding: 1rem; border: 1px solid var(--border); border-radius: 1rem; background: rgba(45, 212, 223, .09); }
.estimate-box strong { font-size: .95rem; }
.estimate-box span { font-size: 1.25rem; font-weight: 900; color: var(--primary); }
.estimate-box small { color: var(--muted); }
body.dark .estimate-box { background: rgba(45, 212, 223, .12); }
