.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

html {
  overflow-x: clip;
  scroll-padding-top: 6.5rem;
}

body {
  overflow-x: clip;
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

.px-gutter {
  padding-left: max(1rem, env(safe-area-inset-left, 0px)) !important;
  padding-right: max(1rem, env(safe-area-inset-right, 0px)) !important;
}

@media (min-width: 640px) {
  .px-gutter {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

.font-display-lg,
.text-display-lg {
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 7.5rem;
  }
}

.hp-trap {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* ——— Site chrome ——— */
.site-header {
  background: rgba(247, 249, 251, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(198, 198, 205, 0.45);
  box-shadow: 0 10px 30px -18px rgba(19, 27, 46, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 5.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .site-header__inner {
    gap: 1.5rem;
    min-height: 7.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  transition: transform 0.35s ease;
}

.site-logo:hover {
  transform: translateY(-1px);
}

.site-logo img {
  height: 3.75rem;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
  background: transparent;
}

@media (min-width: 480px) {
  .site-logo img {
    height: 4.5rem;
    max-width: min(280px, 55vw);
  }
}

@media (min-width: 768px) {
  .site-logo {
    flex-shrink: 0;
  }

  .site-logo img {
    height: 6.5rem;
    max-width: 380px;
  }
}

.site-nav {
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #45464d;
  transition: color 0.25s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.3rem;
  height: 2px;
  background: #006a61;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #006a61;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-header__cta {
  flex-shrink: 0;
}

.site-nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 0.75rem;
  border: 1px solid rgba(198, 198, 205, 0.7);
  background: #fff;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-nav-toggle:hover {
  border-color: #006a61;
  background: #f2f4f6;
}

.site-nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: #131b2e;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem max(1rem, env(safe-area-inset-right, 0px)) calc(1.25rem + env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(198, 198, 205, 0.45);
}

@media (min-width: 640px) {
  .site-mobile-nav {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.site-mobile-nav[hidden] {
  display: none !important;
}

.site-mobile-nav a:not(.btn-primary) {
  padding: 0.85rem 0.5rem;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #45464d;
  border-bottom: 1px solid rgba(198, 198, 205, 0.35);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.site-mobile-nav a:not(.btn-primary):hover,
.site-mobile-nav a.is-active {
  color: #006a61;
  padding-left: 0.75rem;
}

/* ——— Buttons ——— */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #006a61;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.7rem 1.35rem;
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 10px 24px -14px rgba(0, 106, 97, 0.8);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  background: #005049;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -14px rgba(0, 106, 97, 0.9);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0.75rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #131b2e;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0.75rem;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-ghost-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px rgba(19, 27, 46, 0.85);
  color: #fff;
}

.link-arrow {
  transition: gap 0.25s ease, color 0.25s ease;
}

.link-arrow:hover {
  gap: 0.75rem;
}

.stat-rail {
  border-left: 4px solid #006a61;
  padding-left: 1rem;
}

/* ——— Forms ——— */
.form-field {
  width: 100%;
  background: #f7f9fb;
  border: 1px solid #c6c6cd;
  border-radius: 0.75rem;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-field:focus {
  outline: none;
  border-color: #006a61;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 106, 97, 0.12);
}

.contact-link-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
}

/* ——— Cards / service hover ——— */
.service-card-hover {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -20px rgba(19, 27, 46, 0.35);
}

/* ——— Reveal ——— */
.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #0f1626 0%, #131b2e 48%, #0b1220 100%);
  color: #bec6e0;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: -10rem;
  background: radial-gradient(circle, rgba(0, 106, 97, 0.28) 0%, transparent 68%);
  pointer-events: none;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.site-footer__logo:hover {
  transform: translateY(-3px);
}

.site-footer__logo img {
  height: 4.25rem;
  width: auto;
  max-width: min(300px, 100%);
  object-fit: contain;
  background: transparent;
}

@media (min-width: 640px) {
  .site-footer__logo img {
    height: 5.25rem;
  }
}

.site-footer__brand-name {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  overflow-wrap: anywhere;
}

.site-footer__blurb {
  color: rgba(190, 198, 224, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 28rem;
  overflow-wrap: anywhere;
}

.site-footer__regs {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(190, 198, 224, 0.7);
  overflow-wrap: anywhere;
}

.site-footer__heading {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.35rem;
  letter-spacing: 0.01em;
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.site-footer__links a,
.site-footer__contact a {
  color: rgba(190, 198, 224, 0.82);
  font-family: Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: #89f5e7;
  transform: translateX(4px);
}

.site-footer__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.site-footer__icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: #bec6e0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.site-footer__icon:hover {
  background: #006a61;
  border-color: #006a61;
  color: #fff;
  transform: translateY(-3px);
}

.site-footer__bar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: rgba(190, 198, 224, 0.55);
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  .site-footer__bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer__bar-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .site-footer__bar-meta {
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
  }
}

.site-footer__bar a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__bar a:hover {
  color: #89f5e7;
}

/* ——— Floating WhatsApp ——— */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.45);
  outline-offset: 3px;
}

.whatsapp-float__icon {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
}

@media (min-width: 768px) {
  .whatsapp-float {
    right: max(1.75rem, env(safe-area-inset-right, 0px));
    bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
    width: 3.75rem;
    height: 3.75rem;
  }

  .whatsapp-float__icon {
    width: 1.9rem;
    height: 1.9rem;
  }
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: max(1rem, env(safe-area-inset-left, 0px));
}

@media (min-width: 768px) {
  html[dir="rtl"] .whatsapp-float {
    left: max(1.75rem, env(safe-area-inset-left, 0px));
  }
}

/* ——— Language switcher ——— */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: Inter, Tajawal, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lang-switch__sep {
  color: #76777d;
  opacity: 0.6;
}

.lang-switch__current {
  color: #006a61;
}

.lang-switch__link {
  color: #45464d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lang-switch__link:hover {
  color: #006a61;
}

.lang-switch--mobile {
  justify-content: center;
  padding: 0.5rem 0;
}

/* ——— RTL overrides ——— */
html[dir="rtl"] body {
  font-family: Tajawal, Inter, sans-serif;
}

html[dir="rtl"] .link-arrow .material-symbols-outlined,
html[dir="rtl"] .btn-primary .material-symbols-outlined {
  transform: scaleX(-1);
}

html[dir="rtl"] .link-arrow:hover {
  transform: translateX(-4px);
}

html[dir="rtl"] .site-mobile-nav a:not(.btn-primary):hover,
html[dir="rtl"] .site-mobile-nav a.is-active {
  padding-left: 0.5rem;
  padding-right: 0.75rem;
}

html[dir="rtl"] .lh-meta-cell,
html[dir="rtl"] .preview-frame .lh-meta-cell {
  text-align: left;
}

html[dir="rtl"] .list-disc {
  padding-right: 1.5rem;
  padding-left: 0;
}

