:root {
  --blue: #3c839a;
  --green: #64943f;
  --navy: #111c36;
  --ink: #132033;
  --muted: #64707d;
  --line: #dce7e8;
  --soft: #f5f9f8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(17, 28, 54, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.6;
}

body[dir="ltr"] {
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  min-height: 82px;
  padding: 12px clamp(16px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 231, 232, 0.95);
  box-shadow: 0 10px 30px rgba(17, 28, 54, 0.05);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(168px, 18vw, 250px);
  height: auto;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.primary-menu a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.primary-menu a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transition: width 180ms ease;
}

html[dir="ltr"] .primary-menu a::after {
  right: auto;
  left: 0;
}

.primary-menu a:hover::after {
  width: 100%;
}

.menu-booking {
  padding: 10px 14px !important;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
}

.menu-booking::after {
  display: none;
}

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

.lang-switch,
.menu-toggle {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.lang-switch.active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.menu-toggle {
  display: none;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(100, 148, 63, 0.36), transparent 28%),
    linear-gradient(90deg, rgba(17, 28, 54, 0.28), rgba(60, 131, 154, 0.76) 50%, rgba(17, 28, 54, 0.94));
}

html[dir="ltr"] .hero-overlay {
  background:
    radial-gradient(circle at 82% 20%, rgba(100, 148, 63, 0.36), transparent 28%),
    linear-gradient(90deg, rgba(17, 28, 54, 0.94), rgba(60, 131, 154, 0.76) 50%, rgba(17, 28, 54, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
  margin-inline: clamp(16px, 7vw, 96px);
  padding: 64px 0 84px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
}

.hero .eyebrow {
  color: #9edc75;
}

.hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.15rem, 5.4vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2.15vw, 1.36rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.hero-points li {
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  font-weight: 800;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.service-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-submit {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(100, 148, 63, 0.28);
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 500px);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(16px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(60, 131, 154, 0.09), transparent 46%),
    var(--soft);
}

.booking-copy h2,
.section-head h2,
.trust h2,
.contact-section h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.booking-copy p,
.section-head p,
.contact-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.form-benefits {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.form-benefits span {
  width: fit-content;
  padding: 10px 14px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(17, 28, 54, 0.05);
}

.lead-form {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 900;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cad8de;
  border-radius: var(--radius);
  font: inherit;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(60, 131, 154, 0.14);
}

.honeypot {
  position: absolute;
  left: -9999px;
  display: none;
}

.field-error {
  min-height: 22px;
  margin: 4px 0 10px;
  color: #b42318;
  font-size: 0.9rem;
}

.btn-submit {
  width: 100%;
  margin-top: 2px;
  font-size: 1rem;
}

.form-note,
.success-message {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.success-message {
  display: none;
  padding: 12px;
  color: #315f1f;
  background: #f0f8e9;
  border: 1px solid #cfe6bd;
  border-radius: var(--radius);
  font-weight: 800;
}

.success-message.show {
  display: block;
}

.services,
.trust,
.contact-section {
  padding: clamp(44px, 7vw, 86px) clamp(16px, 5vw, 76px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.center-head {
  margin-inline: auto;
  text-align: center;
}

.center-head p {
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(17, 28, 54, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  border-color: rgba(60, 131, 154, 0.45);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: var(--radius);
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.16rem;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-card strong {
  margin-top: auto;
  color: var(--green);
}

.trust {
  background: linear-gradient(135deg, var(--blue), #244b62);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--white);
}

.trust h2,
.trust .section-kicker {
  color: var(--white);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-list span {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}

.contact-section {
  background:
    linear-gradient(180deg, #ffffff, #f6faf8);
  border-top: 5px solid var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  min-height: 252px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(17, 28, 54, 0.09);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-card.featured {
  background: var(--navy);
  color: var(--white);
}

.contact-card.featured h3,
.contact-card.featured a {
  color: var(--white);
}

.contact-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.featured .contact-icon {
  background: var(--green);
}

.contact-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.35rem;
}

.contact-card a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  word-break: break-word;
}

.site-footer {
  padding: 24px 16px;
  text-align: center;
  color: var(--white);
  background: var(--navy);
}

.site-footer p {
  margin: 0;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--soft);
}

.thank-you {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.thank-brand {
  position: absolute;
  top: 24px;
}

.thank-card {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 52px);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thank-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.thank-card h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.thank-card p {
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 10px;
}

html[dir="rtl"] .contact-toggle {
  right: 18px;
  left: auto;
  justify-items: end;
}

.contact-toggle-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 12px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17, 28, 54, 0.24);
  cursor: pointer;
}

.contact-toggle-button span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
}

.contact-flyout {
  display: none;
  min-width: 178px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-toggle.open .contact-flyout {
  display: grid;
  gap: 8px;
}

.contact-flyout a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-flyout a:hover {
  background: var(--soft);
}

.contact-flyout span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.contact-flyout svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-flyout .whatsapp-mark {
  background: #25d366;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .primary-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-menu.open {
    display: flex;
  }

  .primary-menu a {
    padding: 10px 12px;
  }

  .header-actions {
    justify-self: end;
  }
}

@media (max-width: 920px) {
  .booking-band,
  .service-grid,
  .trust-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay,
  html[dir="ltr"] .hero-overlay {
    background:
      linear-gradient(180deg, rgba(17, 28, 54, 0.9), rgba(60, 131, 154, 0.72) 56%, rgba(17, 28, 54, 0.28));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 10px 12px;
    gap: 8px;
  }

  .brand img {
    width: 156px;
  }

  .lang-switch,
  .menu-toggle {
    min-width: 38px;
    min-height: 38px;
  }

  .hero {
    min-height: calc(100svh - 70px);
    align-items: end;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-inline: 14px;
    padding: 42px 0 52px;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .cta-row,
  .btn {
    width: 100%;
  }

  .lead-form {
    padding: 18px;
  }

  .contact-toggle {
    right: 14px;
    bottom: 14px;
  }

  html[dir="rtl"] .contact-toggle {
    right: 14px;
    left: auto;
  }

  .contact-toggle-button strong {
    display: none;
  }
}
