:root {
  --ink: #102024;
  --muted: #5b676b;
  --line: #d9e2df;
  --paper: #f7faf8;
  --white: #ffffff;
  --teal: #0e756b;
  --teal-dark: #064b45;
  --mint: #dff4ee;
  --sun: #f2b84b;
  --coral: #d95e4f;
  --blue: #dceff8;
  --whatsapp: #16a05f;
  --whatsapp-dark: #128652;
  --shadow: 0 18px 46px rgba(16, 32, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.55;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="ltr"] body {
  text-align: left;
}

body::selection {
  color: var(--ink);
  background: #ffe2a4;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

svg {
  fill: currentColor;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: rgba(247, 250, 248, 0.93);
  border-bottom: 1px solid rgba(217, 226, 223, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid #b8ded5;
  border-radius: 8px;
}

.brand__mark svg {
  width: 25px;
  height: 25px;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: var(--blue);
  outline: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-phone,
.button,
.mobile-callbar a,
.copy-button,
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.language-toggle {
  padding: 10px 12px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--ink);
  background: var(--blue);
  outline: none;
}

.phone-number {
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
}

.header-phone {
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(14, 117, 107, 0.22);
}

.header-phone svg,
.button svg,
.copy-button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.hero {
  position: relative;
  min-height: calc(88vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(5, 18, 22, 0.88) 0%, rgba(5, 18, 22, 0.66) 43%, rgba(5, 18, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 18, 22, 0.5), rgba(5, 18, 22, 0.04) 54%);
}

html[dir="ltr"] .hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 22, 0.88) 0%, rgba(5, 18, 22, 0.66) 43%, rgba(5, 18, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 18, 22, 0.5), rgba(5, 18, 22, 0.04) 54%);
}

.hero__content {
  position: relative;
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe08b;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.06;
}

.hero__lead {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-width: 132px;
  padding: 12px 18px;
  border: 0;
  cursor: pointer;
}

.button--primary,
.button--submit {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 12px 26px rgba(242, 184, 75, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--submit:hover,
.button--submit:focus-visible {
  background: #ffd171;
  outline: none;
}

.button--whatsapp {
  color: var(--white);
  background: var(--whatsapp);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: var(--whatsapp-dark);
  outline: none;
}

.button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  outline: none;
}

.button--wide {
  width: 100%;
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__note span,
.lead-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  font-weight: 700;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar div {
  min-height: 104px;
  padding: 22px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  font-size: 1.05rem;
}

.trust-bar span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  padding: 78px clamp(18px, 4vw, 54px);
}

.section__head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section__head h2,
.lead-copy h2,
.area-copy h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.16;
}

.section__head p:not(.eyebrow),
.lead-copy p,
.area-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-grid article,
.contact-panel,
.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-grid article {
  padding: 24px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 8px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.15rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.section--lead {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  background: var(--mint);
}

.lead-copy {
  max-width: 640px;
}

.lead-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lead-highlights span {
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid #c7e5de;
}

.lead-quick-actions {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-top: 22px;
}

.quick-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid #c7e5de;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.quick-contact:hover,
.quick-contact:focus-visible {
  background: var(--blue);
  outline: none;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row--single {
  grid-template-columns: 1fr;
}

.booking-fields {
  display: grid;
  gap: 9px;
}

.slot-helper {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

label,
.choice-group {
  display: grid;
  gap: 7px;
  min-width: 0;
}

label span,
.choice-group legend {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdfc;
  border: 1px solid #cbd8d5;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(14, 117, 107, 0.14);
}

.choice-group {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.choice-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px;
  background: #fbfdfc;
  border: 1px solid #cbd8d5;
  border-radius: 8px;
}

.choice-group input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--teal);
}

.button--submit {
  width: 100%;
  font-size: 1rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: var(--teal-dark);
}

.form-status.is-error {
  color: #a33a2f;
}

.section--area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.area-copy {
  max-width: 760px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.contact-panel h3 {
  margin: 0;
}

.contact-panel__phone {
  color: var(--teal-dark);
  font-size: 1.65rem;
  font-weight: 800;
  text-decoration: none;
}

.copy-button {
  width: 100%;
  padding: 12px 14px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.copy-button:hover,
.copy-button:focus-visible {
  background: var(--blue);
  outline: none;
}

.section--faq {
  background: #eef5f3;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px) 96px;
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.mobile-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 8px;
  background: rgba(247, 250, 248, 0.95);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.mobile-callbar a {
  color: var(--ink);
  background: var(--sun);
}

.mobile-callbar .mobile-callbar__whatsapp {
  color: var(--white);
  background: var(--whatsapp);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 74vh;
  }

  h1 {
    font-size: 2.45rem;
  }

  .feature-grid,
  .section--lead,
  .section--area {
    grid-template-columns: 1fr;
  }

  .lead-copy,
  .area-copy {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand small,
  .header-phone span {
    display: none;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .header-phone,
  .language-toggle {
    min-height: 40px;
    padding: 9px 10px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero__image {
    object-position: 56% center;
  }

  .hero__content {
    width: calc(100% - 28px);
    padding: 74px 0 48px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .button,
  .hero__actions .button {
    width: 100%;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    min-height: auto;
    padding: 18px;
  }

  .section {
    padding: 54px 18px;
  }

  .section__head {
    text-align: inherit;
  }

  .section__head h2,
  .lead-copy h2,
  .area-copy h2 {
    font-size: 1.62rem;
  }

  .form-row,
  .choice-group {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 14px;
  }

  .mobile-callbar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
