:root {
  --ink: #17202a;
  --muted: #5d6a72;
  --line: #dce7e4;
  --paper: #fffaf2;
  --soft: #f5f8f6;
  --teal: #0f766e;
  --teal-dark: #0a4f4b;
  --gold: #d99a2b;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 32, 42, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 228, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-size: clamp(0.88rem, 1.8vw, 1.02rem);
  line-height: 1.2;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-switcher {
  position: relative;
  justify-self: end;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-start: 2px;
  border-inline-end: 2px solid var(--muted);
  border-block-end: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
}

.language-switcher[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.language-switcher summary:focus-visible {
  outline: 0;
  border-color: rgba(15, 118, 110, 0.6);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.language-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.language-switcher ul {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  z-index: 30;
  min-width: 190px;
  margin: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  list-style: none;
}

.language-switcher a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="page"] {
  color: var(--teal-dark);
  background: #e5f3ef;
}

.language-switcher a:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.45);
  outline-offset: 1px;
}

.language-switcher a img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(23, 32, 42, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.2);
}

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

.button-secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 118, 110, 0.25);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 47, 51, 0.88) 0%, rgba(10, 47, 51, 0.7) 47%, rgba(10, 47, 51, 0.22) 100%),
    url("https://images.pexels.com/photos/7464731/pexels-photo-7464731.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover no-repeat;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--white), rgba(255, 255, 255, 0));
  z-index: -1;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 116px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #f5d48a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 900px;
}

.hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.3vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(900px, 100%);
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-point {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.hero-point strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.hero-point span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

section {
  padding: 78px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p,
.intro-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card,
.quote-panel,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  padding: 24px;
  min-height: 246px;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--teal-dark);
  background: #e5f3ef;
  border-radius: var(--radius);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

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

.split {
  background: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 48px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

[dir="rtl"] .check-list li {
  grid-template-columns: 1fr 30px;
}

.check-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 7px #d9efe9;
}

[dir="rtl"] .check-list li::before {
  grid-column: 2;
  grid-row: 1;
}

.quote-panel {
  padding: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-panel h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.55rem;
  line-height: 1.2;
}

.quote-panel p {
  margin: 12px 0 22px;
  color: var(--muted);
}

.quote-panel .button {
  width: 100%;
}

.mini-heading {
  margin: 28px 0 0;
  color: var(--teal-dark);
  font-size: 1rem;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.area-pill {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.area-pill:hover {
  border-color: rgba(15, 118, 110, 0.35);
  background: #e5f3ef;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  counter-reset: steps;
}

.process-step {
  position: relative;
  min-height: 188px;
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: var(--soft);
}

[dir="rtl"] .process-step {
  border-left: 0;
  border-right: 3px solid var(--gold);
}

.process-step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-step h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq details {
  padding: 0 20px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--teal-dark);
  font-weight: 800;
}

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

.final-cta {
  color: var(--white);
  background: var(--teal-dark);
}

.final-cta .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}

.site-footer {
  padding: 28px 0 92px;
  color: var(--muted);
  background: #f9fbfa;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #128c4a;
  box-shadow: 0 14px 34px rgba(18, 140, 74, 0.32);
  font-weight: 800;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 18px;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.gateway {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 47, 51, 0.9), rgba(10, 47, 51, 0.55)),
    url("https://images.pexels.com/photos/7464731/pexels-photo-7464731.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover no-repeat;
}

.gateway-inner {
  width: min(920px, calc(100% - 32px));
  padding: 72px 0;
}

.gateway-inner h1 {
  max-width: 820px;
}

.gateway-inner > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.gateway-card {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.gateway-card strong,
.gateway-card span {
  display: block;
}

.gateway-card strong {
  color: var(--teal-dark);
  font-size: 1.2rem;
}

.gateway-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: minmax(190px, 1fr) auto;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 66px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(10, 47, 51, 0.9) 0%, rgba(10, 47, 51, 0.78) 58%, rgba(10, 47, 51, 0.56) 100%),
      url("https://images.pexels.com/photos/7464731/pexels-photo-7464731.jpeg?auto=compress&cs=tinysrgb&w=1100") center / cover no-repeat;
  }

  .hero-inner {
    padding: 64px 0 86px;
  }

  .hero-points,
  .services-grid,
  .split-layout,
  .section-heading,
  .process-grid,
  .final-cta .section-inner,
  .gateway-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 58px 0;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero-inner,
  .section-inner,
  .footer-inner,
  .gateway-inner {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 12px 0;
  }

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

  .language-switcher {
    justify-self: stretch;
  }

  .language-switcher summary {
    width: 100%;
    justify-content: center;
  }

  .language-switcher ul {
    inset-inline: 0;
    min-width: 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-card,
  .quote-panel,
  .process-step {
    padding: 20px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }
}
