:root {
  --ink: #122126;
  --muted: #5d6f73;
  --line: #dce7e6;
  --surface: #f7fbfa;
  --white: #ffffff;
  --teal: #078a8d;
  --teal-dark: #04686b;
  --lime: #b6d957;
  --coral: #ef7f67;
  --shadow: 0 22px 70px rgba(18, 33, 38, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(18, 33, 38, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--lime));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

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

.language-switcher {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  max-height: 44px;
  overflow: hidden;
  transition: max-height 180ms ease, background 180ms ease;
}

.language-switcher:not(.is-open) button:not(.is-active) {
  display: none;
}

.language-switcher.is-open {
  position: relative;
  z-index: 25;
  max-height: 132px;
  overflow-y: auto;
}

.site-header.is-scrolled .language-switcher,
.site-header.is-open .language-switcher {
  border-color: var(--line);
  background: var(--surface);
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: currentColor;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  outline: none;
}

.language-switcher button:focus-visible {
  outline: 2px solid rgba(182, 217, 87, 0.85);
  outline-offset: 2px;
}

.language-switcher::-webkit-scrollbar {
  width: 4px;
}

.language-switcher::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.language-switcher button.is-active {
  color: var(--white);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 72px) 76px;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 37, 43, 0.82) 0%, rgba(4, 37, 43, 0.56) 42%, rgba(4, 37, 43, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 37, 43, 0.15), rgba(4, 37, 43, 0.55));
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.7vw, 5.8rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button.outline {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: var(--white);
}

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

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

.trust-strip div {
  padding: 28px clamp(20px, 4vw, 56px);
  background: var(--surface);
}

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

.trust-strip span {
  color: var(--muted);
}

.section,
.photo-section,
.process-section,
.contact-section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p,
.process-copy p,
.split-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 33, 38, 0.06);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 900;
}

.service-card p,
.step p {
  color: var(--muted);
}

.more-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.more-content[hidden] {
  display: none;
}

.photo-section {
  background: #f0f7f4;
}

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

.photo-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 46px rgba(18, 33, 38, 0.14);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 33, 38, 0.02) 35%, rgba(18, 33, 38, 0.78) 100%);
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  color: var(--white);
}

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

.photo-card strong {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.photo-card span {
  color: rgba(255, 255, 255, 0.82);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  background: var(--surface);
}

.process-copy {
  max-width: 620px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #dff3ef;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(30px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.locations {
  max-width: 700px;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.location-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(36px, 6vw, 80px);
  background: #fff;
}

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

.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--ink);
}

.contact-list a,
.contact-list span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cddcda;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(7, 138, 141, 0.16);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #122126;
}

[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(4, 37, 43, 0.82) 0%, rgba(4, 37, 43, 0.56) 42%, rgba(4, 37, 43, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 37, 43, 0.15), rgba(4, 37, 43, 0.55));
}

[dir="rtl"] .hero-content,
[dir="rtl"] .process-copy,
[dir="rtl"] .section-heading,
[dir="rtl"] .locations,
[dir="rtl"] .contact-copy {
  text-align: right;
}

[dir="rtl"] .photo-card figcaption {
  text-align: right;
}

[dir="rtl"] .hero-actions,
[dir="rtl"] .location-list {
  justify-content: flex-start;
}

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

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card img {
    min-height: 340px;
  }

  .process-section,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-actions {
    gap: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  [dir="rtl"] .site-nav {
    text-align: right;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 20px 56px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 37, 43, 0.86), rgba(4, 37, 43, 0.55)),
      linear-gradient(180deg, rgba(4, 37, 43, 0.08), rgba(4, 37, 43, 0.66));
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .language-switcher button {
    min-width: 34px;
  }

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

  .step {
    grid-template-columns: 1fr;
  }
}
