/* EGYPools — design system */
:root {
  --navy: #071a33;
  --navy-2: #0c2748;
  --navy-3: #12345c;
  --blue: #1b7fea;
  --blue-2: #3b94f2;
  --blue-hover: #1468c4;
  --blue-soft: #eaf3fd;
  --text: #142033;
  --muted: #5c6d82;
  --line: #e3eaf3;
  --bg: #f5f8fc;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5a;
  --danger: #c0392b;
  --success: #1f7a4d;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 12px 40px rgba(7, 26, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 26, 51, 0.14);
  --header-h: 86px;
  --container: 1180px;
  --transition: 0.25s ease;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-ar: "Cairo", "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[dir="rtl"] {
  --font: var(--font-ar);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.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;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.section-title span {
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -6px;
  width: 64px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--blue);
  z-index: 0;
  border-radius: 4px;
}

.lead {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.02rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(27, 127, 234, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--navy-3);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--whatsapp-hover);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.icon-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.icon-link:hover svg {
  transform: translateX(3px);
}

html[dir="rtl"] .icon-link:hover svg {
  transform: translateX(-3px);
}

html[dir="rtl"] .icon-link svg,
html[dir="rtl"] .btn-arrow svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .icon-link:hover svg {
  transform: scaleX(-1) translateX(-3px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 234, 243, 0.9);
  box-shadow: 0 8px 24px rgba(7, 26, 51, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
  display: block;
  /* White wordmark on a white bar: outline via CSS, never a navy plate. */
  filter:
    drop-shadow(0.55px 0 0 rgba(7, 26, 51, 0.55))
    drop-shadow(-0.55px 0 0 rgba(7, 26, 51, 0.55))
    drop-shadow(0 0.55px 0 rgba(7, 26, 51, 0.55))
    drop-shadow(0 -0.55px 0 rgba(7, 26, 51, 0.55))
    drop-shadow(0 1px 6px rgba(7, 26, 51, 0.12));
}

.footer-logo {
  background: transparent;
  padding: 0;
}

.footer-logo .logo-img {
  height: 48px;
  max-width: 200px;
  filter: none;
}

html[dir="rtl"] .logo-img {
  object-position: right center;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-inline-start: auto;
}

.site-nav {
  margin-inline-start: 0;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 10px;
  position: relative;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.has-sub {
  position: relative;
}

.sub-label {
  display: flex;
  align-items: center;
}

.sub-toggle {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  position: relative;
  flex-shrink: 0;
  padding: 0;
}

.sub-toggle::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.2s ease;
}

.has-sub.is-open .sub-toggle::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

.sub-menu {
  display: none;
  flex-direction: column;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 248px;
  max-width: 300px;
}

.sub-menu li {
  width: 100%;
}

.sub-menu li + li {
  border-top: 1px solid var(--line);
}

.sub-menu a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  white-space: normal;
  line-height: 1.35;
  text-align: start;
}

.sub-menu a:hover,
.sub-menu a:focus-visible {
  background: var(--blue-soft);
  color: var(--blue);
}

.sub-menu a.is-active::after {
  display: none;
}

@media (min-width: 1121px) {
  .sub-toggle {
    pointer-events: none;
  }

  .sub-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% - 2px);
    inset-inline-start: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(7, 26, 51, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 60;
  }

  html[dir="rtl"] .sub-menu {
    inset-inline-start: auto;
    inset-inline-end: 0;
  }

  .has-sub:hover .sub-menu,
  .has-sub:focus-within .sub-menu,
  .has-sub.is-open .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-inline-start: 8px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  direction: ltr;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.lang-switch {
  display: inline-flex;
  background: var(--bg);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid var(--line);
}

.lang-switch button {
  border: 0;
  background: transparent;
  min-width: 38px;
  height: 30px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
}

.lang-switch button.is-active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(7, 26, 51, 0.08);
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy);
  background: var(--navy);
  border-radius: 12px;
  margin-inline-start: auto;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  z-index: 3;
  color: var(--white);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

body.nav-open .nav-toggle-bar {
  background: transparent;
}

body.nav-open .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  padding: 18px 0 28px;
}

.hero-panel {
  position: relative;
  min-height: min(78vh, 720px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.page-hero-media img.is-fountain {
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4, 14, 30, 0.88) 0%,
    rgba(4, 18, 38, 0.62) 42%,
    rgba(4, 18, 38, 0.18) 100%
  );
}

html[dir="rtl"] .hero-overlay {
  background: linear-gradient(
    to left,
    rgba(4, 14, 30, 0.88) 0%,
    rgba(4, 18, 38, 0.62) 42%,
    rgba(4, 18, 38, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-width: 100%;
  padding: 56px 48px 40px;
  overflow-wrap: anywhere;
}

.hero-kicker {
  display: inline-block;
  color: #9ec7f5;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.section--tight {
  padding-top: 0;
}

.form-row--spaced {
  margin-top: 20px;
}

.quote-aside-line {
  margin-top: 12px;
}

.quote-aside-btn {
  margin-top: 18px;
}

.hero-title {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 16ch;
}

html[dir="rtl"] .hero-title {
  max-width: 10ch;
}

.hero-title em {
  font-style: normal;
  color: #4da3ff;
}

.hero-copy {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 46ch;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.stat svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #7eb6f5;
}

.stat b {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
}

.stat span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 22px 22px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cfe3f8;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 18px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.service-card .icon-link {
  margin-top: 16px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* About band */
.about-band {
  background: var(--bg);
}

.about-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 32px;
  overflow: hidden;
  min-height: 460px;
}

.about-visual {
  position: relative;
  min-height: 360px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy .eyebrow {
  color: #8ec2f7;
}

.about-copy h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.3;
  margin-bottom: 14px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.about-copy .btn {
  margin-top: 24px;
  align-self: flex-start;
}

.about-points {
  background: rgba(255, 255, 255, 0.04);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.about-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-point svg {
  width: 22px;
  height: 22px;
  color: #7eb6f5;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point b {
  display: block;
  font-size: 0.98rem;
}

.about-point span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split--reverse .split-copy {
  order: -1;
}

.split-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transform: scale(1.08);
}

.split-visual.is-story {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.split-visual.is-story img {
  min-height: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: none;
}

.split-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 14px;
}

.split-copy p {
  color: var(--muted);
}

.split-copy p + p {
  margin-top: 14px;
}

.split-copy .btn {
  margin-top: 24px;
}

/* Projects carousel */
.projects {
  background: var(--bg);
  overflow: hidden;
}

.projects-wrap {
  position: relative;
}

.projects-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 4px 20px;
}

.projects-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 min(78vw, 280px);
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}

.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.projects-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.projects-nav button,
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.projects-nav button:hover,
.carousel-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.projects-nav svg,
.carousel-btn svg {
  width: 18px;
  height: 18px;
}

html[dir="rtl"] .projects-nav svg,
html[dir="rtl"] .carousel-btn svg {
  transform: scaleX(-1);
}

.projects-cta {
  text-align: center;
  margin-top: 22px;
}

/* Bottom CTA */
.cta-band {
  padding: 0 0 40px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 28px 32px;
}

.cta-panel h2 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 32px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-contact li,
.footer-nav a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.footer-copy {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), background var(--transition);
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-3px) scale(1.04);
  background: var(--whatsapp-hover);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

/* Page hero */
.page-hero {
  padding: 18px 0 10px;
}

.page-hero-panel {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4, 14, 30, 0.82),
    rgba(4, 18, 38, 0.28)
  );
}

html[dir="rtl"] .page-hero-overlay {
  background: linear-gradient(
    to left,
    rgba(4, 14, 30, 0.82),
    rgba(4, 18, 38, 0.28)
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 44px;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

/* Cards / values / contact */
.values-grid,
.contact-cards,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card,
.contact-card,
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.value-card h3,
.contact-card h3,
.why-card h3 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
}

.value-card p,
.contact-card p,
.why-card p,
.contact-card a {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-card a {
  color: var(--navy);
  font-weight: 700;
  display: block;
}

.contact-card a:hover {
  color: var(--blue);
}

.phone-ltr {
  direction: ltr;
  unicode-bidi: isolate;
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.form-card,
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 127, 234, 0.12);
  background: var(--white);
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: var(--danger);
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 6px;
}

.form-row.has-error .field-error {
  display: block;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #e9f7ef;
  color: var(--success);
  font-weight: 600;
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid a,
.gallery-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy);
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
  scroll-margin-top: 110px;
}

.service-detail-copy h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 12px;
}

.service-detail-copy p {
  color: var(--muted);
}

.form-card h2,
.map-card h2 {
  margin-bottom: 16px;
}

.form-card .lead {
  margin-bottom: 4px;
}

:focus-visible {
  outline: 3px solid rgba(27, 127, 234, 0.45);
  outline-offset: 2px;
}

.service-detail + .service-detail {
  border-top: 1px solid var(--line);
}

.service-detail:nth-of-type(even) .service-detail-copy {
  order: -1;
}

.service-detail-visual {
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

#construction .service-detail-visual img {
  object-position: center 70%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}
.reveal-delay-2 {
  animation-delay: 0.16s;
}
.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 1121px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-panel,
  .footer-grid,
  .values-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-points {
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    grid-column: 1 / -1;
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 20px;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }

  body.nav-open .nav-panel {
    display: flex;
  }

  .site-nav,
  .header-actions {
    display: flex;
    position: static;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    min-height: 46px;
  }

  .has-sub {
    width: 100%;
  }

  .sub-label {
    justify-content: space-between;
  }

  .sub-toggle {
    color: var(--navy);
  }

  .sub-menu {
    display: none;
    position: static;
    padding: 0;
    min-width: 0;
    max-width: none;
    background: var(--bg);
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
  }

  html[dir="rtl"] .sub-menu {
    padding: 0;
  }

  .has-sub.is-open .sub-menu {
    display: flex;
    flex-direction: column;
    margin: 4px 0 8px;
  }

  .header-actions .btn {
    width: 100%;
  }

  .lang-switch {
    align-self: center;
  }

  .split,
  .split--reverse,
  .contact-layout,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .split--reverse .split-copy,
  .service-detail:nth-of-type(even) .service-detail-copy {
    order: 0;
  }

  .hero-stats,
  .contact-cards,
  .services-page-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content,
  .page-hero-content {
    padding: 36px 24px 28px;
  }

  .hero-panel {
    min-height: 640px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .services-grid,
  .hero-stats,
  .about-panel,
  .footer-grid,
  .values-grid,
  .why-grid,
  .contact-cards,
  .services-page-grid,
  .gallery-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    display: block;
    text-align: start;
  }

  .cta-actions {
    margin-top: 18px;
  }

  .hero-panel,
  .page-hero-panel,
  .split-visual,
  .about-panel {
    border-radius: 20px;
  }

  .hero-title {
    max-width: none;
    font-size: 2rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-content {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .header-phone {
    justify-content: center;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .hero-panel {
    min-height: 580px;
  }

  .project-card {
    flex-basis: 78vw;
  }
}

.section-head.is-left {
  text-align: start;
  margin-inline: 0;
  max-width: 720px;
}

.shot-gallery {
  columns: 3 260px;
  column-gap: 16px;
}

.shot-gallery--service {
  columns: 1;
}

.shot-gallery--fountains {
  columns: unset;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-shot {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #0c2748;
  box-shadow: 0 12px 28px rgba(7, 26, 51, 0.08);
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-shot.is-pair {
  aspect-ratio: 1 / 1;
}

.gallery-shot.is-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.gallery-shot.is-landscape {
  aspect-ratio: 4 / 3;
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-shot.is-top img {
  object-position: center top;
}

.gallery-shot.is-bottom img {
  object-position: center bottom;
}

.gallery-shot.is-wide img {
  object-position: center 58%;
}

.gallery-shot.is-jets img {
  object-position: 38% 46%;
}

.gallery-shot.is-sea img {
  object-position: center 42%;
}

.gallery-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(7, 26, 51, 0.18));
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gallery-shot:hover img,
.gallery-shot:focus-visible img {
  transform: scale(1.03);
}

.gallery-shot:hover::after,
.gallery-shot:focus-visible::after {
  opacity: 0.85;
}

.media-frame {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #0c2748;
  box-shadow: 0 12px 28px rgba(7, 26, 51, 0.08);
  cursor: zoom-in;
}

.media-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.media-frame.is-contain,
.media-frame.is-light {
  background: #f4f7fb;
}

.media-frame.is-contain img {
  object-fit: contain;
  max-height: 520px;
  margin-inline: auto;
}

.media-frame:hover img {
  transform: scale(1.03);
  filter: contrast(1.04) saturate(1.05);
}

.page-hero-media img.is-contain {
  object-fit: contain;
  background: #071a33;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.hub-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hub-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(7, 26, 51, 0.08);
  color: inherit;
}

.hub-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0c2748;
  flex: 0 0 auto;
}

.hub-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(7, 26, 51, 0.18));
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.35s ease;
}

.hub-card-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease, filter 0.45s ease;
}

.hub-card-media.is-contain {
  background: #f4f7fb;
}

.hub-card-media.is-contain::after {
  display: none;
}

.hub-card-media.is-contain img {
  object-fit: contain;
  padding: 18px;
}

.hub-card-media.is-slides img {
  object-position: center 28%;
}

.hub-card-media.is-fountain img {
  object-position: center 42%;
}

.hub-card-media.is-construction img {
  object-position: center 72%;
}

.hub-card:hover .hub-card-media img {
  transform: scale(1.04);
  filter: contrast(1.04) brightness(1.03);
}

.hub-card:hover .hub-card-media::after {
  opacity: 1;
}

.hub-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 20px 22px;
}

.hub-card-body h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hub-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1 1 auto;
}

.home-cat-cta,
.hub-card-body .home-cat-cta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  font-weight: 700;
  color: var(--blue);
}

.split-service {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.split-service-copy .lead {
  margin-bottom: 16px;
}

.split-service-copy p {
  color: var(--muted);
}

.shidda-section {
  padding-top: 12px;
}

.shidda-copy {
  max-width: 820px;
  color: var(--muted);
  margin-bottom: 28px;
}

.shidda-orgs {
  display: grid;
  grid-template-columns: minmax(0, 420px);
}

.shidda-org {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.shidda-org-label {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

html[dir="rtl"] .shidda-org-label {
  letter-spacing: 0;
  text-transform: none;
}

.shidda-org h3 {
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--navy);
}

.form-dims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  pointer-events: none;
  visibility: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease, visibility 0.3s ease;
}

.form-dims.is-open {
  max-height: 280px;
  opacity: 1;
  margin-bottom: 16px;
  pointer-events: auto;
  visibility: visible;
}

.form-dims .form-row {
  margin-bottom: 0;
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fdecea;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-error.is-visible {
  display: block;
}

.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 26, 51, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.thanks-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.thanks-modal-card {
  width: min(100%, 420px);
  background: var(--white);
  border-radius: 24px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.96);
  transition: transform 0.32s ease;
}

.thanks-modal.is-open .thanks-modal-card {
  transform: scale(1);
}

.thanks-modal-card p {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 22px;
}

.thanks-modal-card .btn {
  min-width: 120px;
}

.error-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 16px 96px;
}

.error-panel h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 8px 0 14px;
}

.error-panel p {
  color: var(--muted);
  margin-bottom: 28px;
}

@media (max-width: 1100px) {
  .hub-grid,
  .hub-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-service {
    grid-template-columns: 1fr;
  }

  .shot-gallery {
    columns: 2 200px;
  }

  .shot-gallery--fountains {
    columns: unset;
    display: grid;
  }
}

@media (max-width: 720px) {
  .hub-grid,
  .hub-grid--services {
    grid-template-columns: 1fr;
  }

  .form-dims.is-open {
    grid-template-columns: 1fr;
    max-height: 480px;
    gap: 14px;
  }

  .split-visual.is-story {
    aspect-ratio: 16 / 10;
  }

  .shot-gallery--fountains {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-shot.is-wide {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .shot-gallery {
    columns: 1;
  }

  .shot-gallery--fountains {
    columns: unset;
    display: grid;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-reveal.is-in {
  opacity: 1;
  transform: none;
}

.js-stagger > .js-reveal:nth-child(1) { transition-delay: 0s; }
.js-stagger > .js-reveal:nth-child(2) { transition-delay: 0.06s; }
.js-stagger > .js-reveal:nth-child(3) { transition-delay: 0.12s; }
.js-stagger > .js-reveal:nth-child(4) { transition-delay: 0.18s; }
.js-stagger > .js-reveal:nth-child(n + 5) { transition-delay: 0.18s; }

.js-img {
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.js-img.is-loaded {
  opacity: 1;
  transform: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 14, 28, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
}

.lightbox-stage img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #071a33;
}

.lightbox-stage img.is-crop {
  width: min(92vw, 720px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lightbox-stage img.is-crop.is-top {
  object-position: center top;
}

.lightbox-stage img.is-crop.is-bottom {
  object-position: center bottom;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-close {
  top: 18px;
  inset-inline-end: 18px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  inset-inline-start: 18px;
}

.lightbox-next {
  inset-inline-end: 18px;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 720px) {
  .js-reveal {
    transform: translateY(10px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-reveal,
  .js-img,
  .gallery-shot img,
  .media-frame img,
  .hub-card-media img,
  body[data-page="home"] .hero-kicker,
  body[data-page="home"] .hero-title,
  body[data-page="home"] .hero-copy,
  body[data-page="home"] .hero-actions,
  body[data-page="home"] .hero-stats {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .form-dims,
  .thanks-modal,
  .thanks-modal-card {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
