:root {
  --ht-navy: #002050;
  --ht-navy-deep: #001538;
  --ht-blue: #0090f0;
  --ht-blue-bright: #00a8ff;
  --ht-blue-mid: #0050a0;
  --ht-ink: #0b1b33;
  --ht-muted: #4d6280;
  --ht-line: rgba(0, 50, 110, 0.12);
  --ht-card: rgba(255, 255, 255, 0.78);
  --ht-soft: #eaf4fc;
  --ht-bg: #cde3fa;
  --ht-bg-2: #e4f1fb;
  --ht-bg-3: #f4f9fd;
  --ht-white: #ffffff;
  --ht-shadow: 0 12px 30px rgba(0, 40, 90, 0.1);
  --ht-shadow-hover: 0 20px 42px rgba(0, 40, 90, 0.16);
  --ht-radius: 22px;
  --ht-radius-sm: 14px;
  --ht-font: "Outfit", system-ui, sans-serif;
  --ht-font-ar: "Cairo", "Outfit", system-ui, sans-serif;
  --ht-container: 1120px;
  --ht-gutter: 2rem;
  --ht-header: 78px;
  --ht-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ht-body {
  margin: 0;
  color: var(--ht-ink);
  font-family: var(--ht-font);
  /* Same soft sky + diagonal light-ray look as the Instagram post */
  background-color: #cde3fa;
  background-image:
    radial-gradient(1100px 640px at 50% -8%, rgba(255, 255, 255, 0.55), transparent 60%),
    repeating-linear-gradient(
      118deg,
      rgba(255, 255, 255, 0) 0 52px,
      rgba(255, 255, 255, 0.16) 52px 98px,
      rgba(255, 255, 255, 0) 98px 160px
    ),
    url("../images/site-bg.webp"),
    url("../images/site-bg.jpg");
  background-size: auto, auto, cover, cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 900px) {
  body.ht-body {
    background-attachment: scroll;
  }
}

body.lang-ar {
  font-family: var(--ht-font-ar);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.ht-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ht-container {
  width: min(100% - (var(--ht-gutter) * 2), var(--ht-container));
  margin-inline: auto;
}

.ht-header,
.ht-main,
.ht-footer,
.ht-whatsapp {
  position: relative;
  z-index: 1;
}

/* Header — mockup style */
.ht-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(232, 243, 252, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 50, 110, 0.08);
  transition: box-shadow 0.35s var(--ht-ease), background 0.35s var(--ht-ease);
}

.ht-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 32, 80, 0.06);
}

.ht-header__inner {
  min-height: var(--ht-header);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ht-logo img {
  width: auto;
  height: 52px;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.ht-logo--footer img {
  height: 56px;
}

.ht-nav {
  display: none;
  margin-inline: auto;
  align-items: center;
  gap: 1.4rem;
}

.ht-nav__item {
  position: relative;
}

.ht-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0;
  color: var(--ht-muted);
  font-weight: 600;
  transition: color 0.25s var(--ht-ease);
}

.ht-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ht-blue);
  transform: scaleX(0);
  transition: transform 0.25s var(--ht-ease);
}

.ht-nav__link:hover,
.ht-nav__link.is-active,
.ht-nav__item--has-children.is-active > .ht-nav__link {
  color: var(--ht-navy);
}

.ht-nav__link.is-active::after,
.ht-nav__link:hover::after,
.ht-nav__item--has-children.is-active > .ht-nav__link::after,
.ht-nav__item--has-children:hover > .ht-nav__link::after,
.ht-nav__item--has-children:focus-within > .ht-nav__link::after {
  transform: scaleX(1);
}

.ht-nav__chevron {
  display: inline-grid;
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s var(--ht-ease);
}

.ht-nav__chevron svg {
  width: 100%;
  height: 100%;
}

.ht-nav__item--has-children:hover .ht-nav__chevron,
.ht-nav__item--has-children:focus-within .ht-nav__chevron,
.ht-nav__item--has-children.is-open .ht-nav__chevron {
  transform: rotate(180deg);
}

.ht-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  inset-inline-start: 0;
  min-width: 220px;
  padding: 0.55rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 50, 110, 0.1);
  box-shadow: 0 18px 40px rgba(0, 32, 80, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ht-ease), transform 0.22s var(--ht-ease), visibility 0.22s;
  z-index: 40;
}

.ht-nav__item--has-children:hover .ht-nav__dropdown,
.ht-nav__item--has-children:focus-within .ht-nav__dropdown,
.ht-nav__item--has-children.is-open .ht-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ht-nav__dropdown-link {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  color: var(--ht-ink);
  font-weight: 600;
  transition: background 0.2s var(--ht-ease), color 0.2s var(--ht-ease);
}

.ht-nav__dropdown-link:hover,
.ht-nav__dropdown-link.is-active {
  background: var(--ht-soft);
  color: var(--ht-navy);
}

.ht-nav__dropdown-link--all {
  margin-top: 0.25rem;
  border-top: 1px solid var(--ht-line);
  border-radius: 0 0 12px 12px;
  color: var(--ht-blue-mid);
}

.ht-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-inline-start: auto;
}

.ht-header__cta {
  display: none;
  border-radius: 12px !important;
  --btn-bg: var(--ht-navy) !important;
  box-shadow: none !important;
}

.ht-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(0, 32, 80, 0.14);
}

.ht-lang__sep {
  color: var(--ht-muted);
  opacity: 0.55;
  font-size: 0.85rem;
}

.ht-lang__btn {
  min-width: auto;
  padding: 0.1rem 0.15rem;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ht-muted);
  transition: color 0.25s var(--ht-ease);
}

.ht-lang__btn.is-active,
.ht-lang__btn:hover {
  background: transparent;
  color: var(--ht-navy);
}

.ht-burger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ht-line);
  border-radius: 12px;
  background: var(--ht-white);
  display: inline-grid;
  place-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.ht-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ht-navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ht-ease), opacity 0.3s var(--ht-ease);
}

.ht-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ht-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ht-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ht-mobile {
  border-top: 1px solid var(--ht-line);
  background: rgba(232, 243, 252, 0.98);
  padding: 1rem 1.25rem 1.4rem;
}

.ht-mobile[hidden] {
  display: none;
}

.ht-mobile__nav {
  display: grid;
  gap: 0.55rem;
}

.ht-mobile__nav a,
.ht-mobile__toggle {
  padding: 0.85rem 1rem;
  border-radius: var(--ht-radius-sm);
  background: var(--ht-soft);
  font-weight: 600;
  color: var(--ht-navy);
}

.ht-mobile__toggle {
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font: inherit;
  text-align: start;
}

.ht-mobile__group.is-open .ht-nav__chevron {
  transform: rotate(180deg);
}

.ht-mobile__submenu {
  display: grid;
  gap: 0.4rem;
  margin: 0.35rem 0 0.2rem;
  padding-inline-start: 0.65rem;
}

.ht-mobile__submenu[hidden] {
  display: none;
}

.ht-mobile__submenu a {
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* Buttons */
.ht-btn {
  --btn-bg: transparent;
  --btn-color: var(--ht-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s var(--ht-ease), box-shadow 0.3s var(--ht-ease), background 0.3s var(--ht-ease), border-color 0.3s var(--ht-ease);
}

.ht-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ht-ease);
}

.ht-btn:hover {
  transform: translateY(-2px);
}

html[dir="rtl"] .ht-btn:hover svg,
html[dir="rtl"] .ht-card__link:hover svg {
  transform: translateX(-3px);
}

html[dir="ltr"] .ht-btn:hover svg,
html[dir="ltr"] .ht-card__link:hover svg {
  transform: translateX(3px);
}

html[dir="rtl"] .ht-btn svg,
html[dir="rtl"] .ht-card__link svg {
  transform: scaleX(-1);
}

.ht-btn--primary {
  --btn-bg: var(--ht-navy);
  --btn-color: var(--ht-white);
  box-shadow: 0 10px 24px rgba(0, 32, 80, 0.2);
}

.ht-btn--primary:hover {
  box-shadow: 0 14px 30px rgba(0, 32, 80, 0.28);
}

.ht-btn--cyan {
  --btn-bg: var(--ht-blue);
  --btn-color: var(--ht-white);
  box-shadow: 0 12px 28px rgba(0, 144, 240, 0.35);
}

.ht-btn--cyan:hover {
  --btn-bg: var(--ht-blue-bright);
  box-shadow: 0 16px 34px rgba(0, 144, 240, 0.42);
}

.ht-btn--ghost {
  border-color: rgba(0, 32, 80, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

.ht-btn--light {
  --btn-bg: var(--ht-white);
  --btn-color: var(--ht-navy);
}

.ht-btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--ht-white);
  background: rgba(255, 255, 255, 0.06);
}

.ht-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ht-btn--sm {
  min-height: 2.55rem;
  padding: 0.6rem 1.05rem;
  font-size: 0.95rem;
}

.ht-btn.is-loading .ht-btn__label {
  display: none;
}

.ht-btn .ht-btn__loading {
  display: none;
}

.ht-btn.is-loading .ht-btn__loading {
  display: inline;
}

/* Hero — dark full-bleed mockup style */
.ht-hero {
  position: relative;
  min-height: calc(100svh - var(--ht-header));
  display: grid;
  align-items: center;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}

.ht-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ht-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  transform: scale(1.04);
  animation: ht-hero-zoom 16s var(--ht-ease) infinite alternate;
}

html[dir="rtl"] .ht-hero__media img {
  object-position: 22% center;
}

/* Mockup-style left navy wash over full-bleed photo */
.ht-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(0, 16, 40, 0.92) 0%,
      rgba(0, 22, 52, 0.78) 28%,
      rgba(0, 28, 64, 0.42) 52%,
      rgba(0, 30, 70, 0.14) 72%,
      rgba(0, 20, 48, 0.04) 100%
    ),
    linear-gradient(180deg, rgba(0, 12, 32, 0.28) 0%, transparent 38%, rgba(0, 12, 32, 0.35) 100%);
}

html[dir="rtl"] .ht-hero__shade {
  background:
    linear-gradient(
      260deg,
      rgba(0, 16, 40, 0.92) 0%,
      rgba(0, 22, 52, 0.78) 28%,
      rgba(0, 28, 64, 0.42) 52%,
      rgba(0, 30, 70, 0.14) 72%,
      rgba(0, 20, 48, 0.04) 100%
    ),
    linear-gradient(180deg, rgba(0, 12, 32, 0.28) 0%, transparent 38%, rgba(0, 12, 32, 0.35) 100%);
}

.ht-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.ht-hero__brand {
  display: inline-grid;
  width: min(100%, 168px);
  margin-bottom: 1.35rem;
  padding: 0.7rem 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.ht-hero__brand img {
  width: 100%;
  height: auto;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.ht-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--ht-blue-mid);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ht-eyebrow::before,
.ht-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ht-blue), transparent);
}

.ht-hero h1 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.ht-page-hero h1 {
  margin: 0 0 1rem;
  color: var(--ht-navy);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.ht-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--ht-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.ht-hero--dark .ht-lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.ht-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

.ht-page-hero {
  padding: 3.2rem 0 1.2rem;
}

.ht-page-hero .ht-lead {
  margin-top: 0.8rem;
}

/* Sections & cards */
.ht-section {
  padding: 4.5rem 0;
  background: transparent;
}

.ht-section--services {
  padding-top: 4.8rem;
  background: transparent;
}

.ht-section--soft {
  background: transparent;
}

.ht-section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.ht-section__head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 36rem;
}

.ht-section__head h2,
.ht-service-card h2,
.ht-form-card h2 {
  margin: 0 0 0.65rem;
  color: var(--ht-navy);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.ht-section__head p {
  margin: 0;
  color: var(--ht-muted);
}

.ht-card-grid {
  display: grid;
  gap: 1.25rem;
}

.ht-card {
  position: relative;
  padding: 1.45rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.88));
  border: 1px solid rgba(0, 80, 160, 0.1);
  box-shadow: 0 14px 34px rgba(0, 40, 90, 0.1);
  overflow: hidden;
  transition: transform 0.4s var(--ht-ease), box-shadow 0.4s var(--ht-ease), border-color 0.4s var(--ht-ease);
}

.ht-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 40, 90, 0.16);
  border-color: rgba(0, 144, 240, 0.28);
}

.ht-card--compact {
  padding: 1.25rem;
}

.ht-card h3 {
  margin: 0.9rem 0 0.5rem;
  color: var(--ht-navy);
  font-size: 1.35rem;
}

.ht-card p {
  margin: 0;
  color: var(--ht-muted);
  line-height: 1.65;
}

.ht-card__panel {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(160deg, #dff2ff, #c8e7ff);
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 22px rgba(0, 70, 140, 0.1);
}

/* Mockup pastel icon plates */
.ht-card--pos .ht-card__panel {
  background: linear-gradient(155deg, #e8f5ff 0%, #cfe9ff 55%, #b9dfff 100%);
  color: #0b4f8c;
}

.ht-card--erp .ht-card__panel {
  background: linear-gradient(155deg, #e6faf4 0%, #c9f0e4 55%, #b0e6d6 100%);
  color: #0d6b5c;
}

.ht-card--web .ht-card__panel {
  background: linear-gradient(155deg, #eee8ff 0%, #ddd2ff 55%, #cdc0ff 100%);
  color: #4a3d9e;
}

.ht-card--rental .ht-card__panel {
  background: linear-gradient(155deg, #fff1e8 0%, #ffe0cc 55%, #ffd0b3 100%);
  color: #9a3412;
}

.ht-card__panel--lg {
  width: 96px;
  height: 96px;
  border-radius: 26px;
}

.ht-card--icon-only {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ht-card--icon-only:hover {
  transform: none;
  box-shadow: none;
}

.ht-page-hero--service .ht-chip {
  margin-bottom: 0.85rem;
}

.ht-page-hero--service .ht-hero__actions {
  margin-top: 1.4rem;
}

.ht-service-detail {
  display: grid;
  gap: 2.2rem;
}

.ht-service-detail__intro {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.ht-service-detail__intro h2,
.ht-service-detail__block h2 {
  margin: 0 0 0.85rem;
  color: var(--ht-navy);
}

.ht-service-detail__intro p {
  margin: 0 0 0.85rem;
  color: var(--ht-muted);
  line-height: 1.7;
}

.ht-inline-link {
  color: var(--ht-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.ht-inline-link:hover {
  color: var(--ht-blue-mid);
}

.ht-feature-list--grid {
  display: grid;
  gap: 0.75rem;
}

.ht-service-detail__split {
  display: grid;
  gap: 1.1rem;
}

.ht-cta-band--service {
  padding-top: 0.5rem;
}

.ht-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.ht-card-grid--3 {
  display: grid;
  gap: 1rem;
}

.ht-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--ht-blue);
  background: rgba(0, 144, 240, 0.1);
  border: 0;
  box-shadow: none;
}

.ht-card__icon svg {
  width: 24px;
  height: 24px;
}

.ht-card--service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 2rem 1.75rem 1.75rem;
  min-height: 100%;
  background: #ffffff;
  border: 0;
  box-shadow: 0 16px 40px rgba(0, 40, 90, 0.1);
}

.ht-card--service::after {
  content: none;
}

.ht-card--service .ht-card__panel {
  width: 108px;
  height: 108px;
  border-radius: 26px;
}

.ht-card--service h3 {
  margin: 1.35rem 0 0.65rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ht-card--service p {
  flex: 1 1 auto;
  font-size: 0.98rem;
  line-height: 1.7;
}

.ht-card--service .ht-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-top: 1.45rem;
}

.ht-card--service .ht-card__link {
  margin-top: 0;
  font-weight: 700;
}

.ht-service-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.ht-card--service .ht-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  color: inherit;
  background: transparent;
}

.ht-card--service .ht-card__icon svg {
  width: 58px;
  height: 58px;
}

.ht-card__icon--sm {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.ht-card__icon--sm svg {
  width: 22px;
  height: 22px;
}

.ht-chip {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 32, 80, 0.06);
  color: var(--ht-blue-mid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ht-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.15rem;
  color: var(--ht-blue-mid);
  font-weight: 600;
}

.ht-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ht-ease);
}

/* Trust strip — mockup row of monochrome marks */
.ht-trust {
  padding: 2.8rem 0 4.2rem;
  background: linear-gradient(180deg, #d5e7f7, #e3f0fb);
}

.ht-trust__label {
  margin: 0 0 1.8rem;
  text-align: center;
  color: var(--ht-navy);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.ht-trust__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 1.4rem;
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ht-trust__list li {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: #7b889c;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  font-size: 0.82rem;
  opacity: 1;
  background: transparent;
  text-align: center;
}

.ht-trust__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #8b98ab;
}

.ht-trust__mark svg {
  width: 30px;
  height: 30px;
}

.ht-trust__name {
  max-width: 9.5rem;
  line-height: 1.35;
}

/* Services page */
.ht-service-list {
  display: grid;
  gap: 1.25rem;
}

.ht-service-card {
  padding: 1.6rem;
  border-radius: var(--ht-radius);
  background: var(--ht-card);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--ht-shadow);
  transition: transform 0.4s var(--ht-ease), box-shadow 0.4s var(--ht-ease);
}

.ht-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ht-shadow-hover);
}

.ht-service-card__top {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.ht-service-card p {
  margin: 0.55rem 0 0;
  color: var(--ht-muted);
}

.ht-feature-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.ht-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ht-ink);
}

.ht-check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ht-blue);
  background: rgba(0, 144, 240, 0.12);
}

.ht-check svg {
  width: 14px;
  height: 14px;
}

/* Contact */
.ht-contact-layout {
  display: grid;
  gap: 1.2rem;
}

.ht-contact-cards {
  display: grid;
  gap: 1rem;
}

.ht-contact-cards a {
  color: var(--ht-blue-mid);
  font-weight: 600;
}

.ht-form-card h2 {
  margin-bottom: 1.2rem;
}

.ht-form__grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.ht-field {
  display: grid;
  gap: 0.4rem;
}

.ht-field span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ht-navy);
}

.ht-field input,
.ht-field select,
.ht-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 32, 80, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 1rem;
  color: var(--ht-ink);
  outline: none;
  transition: border-color 0.25s var(--ht-ease), box-shadow 0.25s var(--ht-ease), transform 0.25s var(--ht-ease);
}

.ht-field input:focus,
.ht-field select:focus,
.ht-field textarea:focus {
  border-color: rgba(0, 144, 240, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 144, 240, 0.12);
}

.ht-field--full {
  grid-column: 1 / -1;
}

.ht-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.ht-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 600;
}

.ht-alert--success {
  background: rgba(16, 185, 129, 0.12);
  color: #067a52;
}

.ht-alert--error {
  background: rgba(239, 68, 68, 0.12);
  color: #b42318;
}

/* CTA band */
.ht-cta-band {
  padding: 1.2rem 0 4.5rem;
}

.ht-cta-band__inner {
  display: grid;
  gap: 1.4rem;
  padding: 2rem;
  border-radius: calc(var(--ht-radius) + 4px);
  background:
    radial-gradient(500px 220px at 85% 20%, rgba(0, 168, 255, 0.35), transparent 60%),
    linear-gradient(135deg, var(--ht-navy-deep), var(--ht-navy) 40%, var(--ht-blue-mid));
  color: var(--ht-white);
  box-shadow: 0 24px 50px rgba(0, 32, 80, 0.28);
}

.ht-cta-band h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.ht-cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
}

/* Footer */
.ht-footer {
  padding: 3rem 0 1.4rem;
  border-top: 1px solid var(--ht-line);
  background: linear-gradient(180deg, rgba(220, 236, 250, 0.55), rgba(205, 227, 250, 0.82));
}

.ht-footer__grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.ht-footer h3 {
  margin: 0 0 0.9rem;
  color: var(--ht-navy);
  font-size: 1rem;
}

.ht-footer__brand p {
  margin: 0.9rem 0 0;
  color: var(--ht-muted);
  max-width: 28rem;
}

.ht-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ht-footer__links a {
  color: var(--ht-muted);
  transition: color 0.25s var(--ht-ease);
}

/* Keep phone/email/handles readable in Arabic RTL */
.ht-ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.ht-footer__links a:hover {
  color: var(--ht-blue);
}

.ht-footer__links--contact {
  justify-items: start;
}

.ht-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
}

.ht-footer__contact-icon {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  color: var(--ht-blue-mid);
}

.ht-footer__contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ht-footer__contact .ht-ltr {
  min-width: 0;
  overflow-wrap: anywhere;
}

.ht-footer__bottom {
  padding-top: 1.1rem;
  border-top: 1px solid var(--ht-line);
  color: var(--ht-muted);
  font-size: 0.92rem;
}

.ht-footer__bottom p {
  margin: 0;
}

/* WhatsApp */
.ht-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s var(--ht-ease), box-shadow 0.35s var(--ht-ease);
  animation: ht-pulse 2.8s ease-in-out infinite;
}

html[dir="rtl"] .ht-whatsapp {
  right: auto;
  left: 1.1rem;
}

.ht-whatsapp svg {
  width: 30px;
  height: 30px;
}

.ht-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.5);
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ht-ease), transform 0.7s var(--ht-ease);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ht-hero-zoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@keyframes ht-pulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.12); }
}

@media (min-width: 720px) {
  .ht-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ht-trust__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .ht-card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ht-card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ht-feature-list--grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ht-service-detail__intro {
    grid-template-columns: auto 1fr;
    gap: 1.8rem;
    align-items: start;
  }

  .ht-service-detail__split {
    grid-template-columns: 1fr 1fr;
  }

  .ht-service-card__top {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .ht-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ht-contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .ht-cta-band__inner {
    grid-template-columns: 1.3fr auto;
    align-items: center;
    padding: 2.4rem 2.6rem;
  }

  .ht-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .ht-nav {
    display: flex;
  }

  .ht-header__cta {
    display: inline-flex;
  }

  .ht-burger,
  .ht-mobile {
    display: none !important;
  }

  .ht-header__actions {
    margin-inline-start: 0;
  }

  .ht-logo {
    min-width: 160px;
  }

  .ht-header__actions {
    min-width: 220px;
    justify-content: flex-end;
  }

  .ht-card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .ht-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .ht-contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .ht-contact-cards {
    grid-template-columns: 1fr;
  }
}

/* Wider layouts for large / 2K displays */
@media (min-width: 1400px) {
  :root {
    --ht-container: 1280px;
    --ht-gutter: 2.5rem;
  }
}

@media (min-width: 1800px) {
  :root {
    --ht-container: 1520px;
    --ht-gutter: 3rem;
  }

  .ht-hero__content {
    max-width: 860px;
  }

  .ht-section__head {
    max-width: 46rem;
  }
}

@media (min-width: 2200px) {
  :root {
    --ht-container: 1680px;
    --ht-gutter: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}