:root {
  --teal-dark: #005861;
  --teal: #008f98;
  --turquoise: #08b7bd;
  --gold: #dca11a;
  --ink: #102a2f;
  --muted: #61767b;
  --line: #dce9eb;
  --bg: #f5fbfb;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 88, 97, 0.12);
  --radius: 24px;
}

* {
  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;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 88, 97, 0.1);
}

.header-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  color: var(--teal-dark);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  color: var(--ink);
}

.language-switcher select {
  min-width: 138px;
  padding: 11px 40px 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 88, 97, 0.18);
  background: var(--white);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  font-weight: 700;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--turquoise);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 88, 97, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--bg);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: 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;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(8, 183, 189, 0.14), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f6fcfc 55%, #eefafa 100%);
  overflow: hidden;
}

.hero-grid,
.split-grid,
.guide-grid,
.form-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--teal-dark);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--teal-dark);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--teal-dark);
}

.hero-text {
  max-width: 720px;
  font-size: 20px;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(0, 88, 97, 0.22);
}

.btn-outline {
  color: var(--teal-dark);
  border-color: rgba(0, 88, 97, 0.22);
  background: rgba(255, 255, 255, 0.7);
}

.hero-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(0, 88, 97, 0.1);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(380px, 100%);
  margin: 0 auto 26px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-stats div {
  padding: 16px;
  border-radius: 18px;
  background: var(--bg);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--teal-dark);
}

.mini-stats span {
  color: var(--muted);
  font-size: 13px;
}

.intro-section {
  position: relative;
  border-top: 1px solid rgba(0, 88, 97, 0.08);
  background:
    radial-gradient(circle at top left, rgba(8, 183, 189, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
  overflow: hidden;
}

.intro-grid {
  gap: 40px;
  align-items: stretch;
}

.intro-content {
  padding-right: 10px;
}

.intro-lead,
.center-heading p,
.guide-content p,
.form-intro p,
.contact-grid p {
  color: var(--muted);
  font-size: 18px;
}

.intro-lead {
  max-width: 700px;
  margin-bottom: 0;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.intro-point {
  padding: 22px;
  border: 1px solid rgba(0, 88, 97, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(0, 88, 97, 0.08);
}

.intro-point strong,
.intro-point span,
.intro-metrics strong,
.intro-metrics span {
  display: block;
}

.intro-point strong {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--teal-dark);
}

.intro-point span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.intro-panel {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(155deg, #005861 0%, #0b7f87 100%);
  color: var(--white);
  box-shadow: 0 26px 60px rgba(0, 88, 97, 0.2);
  overflow: hidden;
}

.intro-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.intro-panel > * {
  position: relative;
  z-index: 1;
}

.intro-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-panel h3 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.1;
  color: var(--white);
}

.intro-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.intro-metrics {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}

.intro-metrics div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.intro-metrics strong {
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--white);
}

.intro-metrics span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.76);
}

.intro-panel-cta {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  box-shadow: none;
}

.light-section {
  background: var(--bg);
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.text-link,
.card-link {
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link::after,
.card-link::after {
  content: " \2192";
  color: var(--gold);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 10px 16px;
  border: 1px solid rgba(0, 88, 97, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.card-grid,
.service-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.opportunity-card,
.service-card,
.insight-card,
.contact-card,
.lead-form {
  background: var(--white);
  border: 1px solid rgba(0, 88, 97, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 88, 97, 0.08);
}

.opportunity-card {
  padding: 26px;
}

.card-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(220, 161, 26, 0.12);
  color: #986e0e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.opportunity-card p,
.opportunity-card li,
.service-card p,
.insight-card span {
  color: var(--muted);
}

.opportunity-card ul {
  padding-left: 18px;
  margin: 18px 0;
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-card {
  padding: 28px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--teal-dark);
  font-weight: 900;
}

.guide-section {
  background:
    linear-gradient(135deg, rgba(0, 88, 97, 0.94), rgba(0, 143, 152, 0.92)),
    radial-gradient(circle at top right, rgba(220, 161, 26, 0.25), transparent 30%);
  color: var(--white);
}

.guide-section h2,
.guide-section h3,
.guide-section .eyebrow {
  color: var(--white);
}

.guide-section .eyebrow {
  opacity: 0.84;
}

.guide-content p,
.timeline-item p {
  color: rgba(255, 255, 255, 0.82);
}

.guide-section .btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: none;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline-item strong {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: var(--gold);
}

.timeline-item p {
  margin-bottom: 0;
}

.insight-card {
  padding: 30px;
}

.insight-card p {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 12px;
}

.inquiry-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-points div {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  background: var(--bg);
}

.contact-points strong,
.contact-points span {
  display: block;
}

.contact-points span {
  color: var(--muted);
}

.lead-form {
  padding: 30px;
}

.form-row {
  margin-bottom: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 10px;
}

#phoneCode {
  max-width: none;
}

#phoneNumber {
  min-width: 0;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(8, 183, 189, 0.12);
}

.lead-form .is-invalid {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.12);
}

.full-btn {
  width: 100%;
}

.full-btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.form-message.is-pending {
  color: var(--muted);
}

.form-message.is-success {
  color: #0f7a44;
}

.form-message.is-error {
  color: #b42318;
}

.contact-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-card {
  padding: 28px;
  display: grid;
  gap: 12px;
}

.contact-card a {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--bg);
  color: var(--teal-dark);
  font-weight: 800;
}

.disclaimer {
  padding: 24px 0;
  background: #fff7e4;
  color: #5c430c;
  font-size: 14px;
}

.site-footer {
  padding: 64px 0 26px;
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
}

.footer-brand strong,
.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.back-to-top {
  color: var(--white);
  font-weight: 800;
}

body.rtl .main-nav a:not(.nav-cta)::after {
  left: auto;
  right: 0;
}

body.rtl .contact-points div {
  border-left: 0;
  border-right: 4px solid var(--gold);
}

body.rtl .footer-bottom {
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(0, 88, 97, 0.12);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .header-actions {
    margin-left: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .guide-grid,
  .form-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .service-grid,
  .insight-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

  .intro-content {
    padding-right: 0;
  }

  .intro-panel {
    padding: 30px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 70px 0;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .header-wrap {
    gap: 14px;
  }

  .header-actions {
    gap: 10px;
  }

  .language-switcher select {
    min-width: 118px;
    padding-right: 34px;
    font-size: 13px;
  }

  .section-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-grid,
  .service-grid,
  .insight-grid,
  .footer-grid,
  .mini-stats,
  .two-col {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .intro-points {
    grid-template-columns: 1fr;
  }

  .intro-panel {
    padding: 26px;
    border-radius: 24px;
  }

  .intro-panel h3 {
    font-size: 26px;
  }
}
