/* ============ Fonts ============ */
@font-face {
  font-family: 'DG Agnadeen';
  src: url('assets/fonts/DGAgnadeen-Thin.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: 'DG Agnadeen';
  src: url('assets/fonts/DGAgnadeen-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'DG Agnadeen';
  src: url('assets/fonts/DGAgnadeen-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'DG Agnadeen';
  src: url('assets/fonts/DGAgnadeen-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* ============ Design tokens ============ */
:root {
  --navy: #2d2f6d;
  --navy-dark: #1e2050;
  --teal: #43a8a7;
  --teal-light: #00ae9f;
  --purple: #a17eb9;
  --gray: #d1d3d4;
  --gray-light: #f4f4f6;
  --white: #ffffff;
  --ink: #22243f;
  --gradient-brand: linear-gradient(120deg, var(--teal-light) 0%, var(--teal) 35%, var(--purple) 100%);
  --shadow-soft: 0 12px 40px rgba(45, 47, 109, 0.12);
  --radius: 16px;
  --font-ar: 'DG Agnadeen', 'Tahoma', sans-serif;
  --font-en: 'Poppins', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.section-eye::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background-image: url('assets/icons/section-mark.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  color: #62647f;
  font-size: 17px;
  max-width: 640px;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .section-sub { margin: 0 auto; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
}
.btn:hover::after { left: 130%; }
.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(45,47,109,.22); }

.btn--whatsapp {
  background: var(--gradient-brand);
  color: var(--white);
}
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(67,168,167,.35); }

.btn--ghost {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); }

.btn--full { width: 100%; justify-content: center; }

/* ============ Nav ============ */
/* Default state sits transparent over the dark hero, so logo/links/burger
   must read white; .is-scrolled flips everything to navy-on-white. */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(45,47,109,.1);
  padding: 12px 32px;
  border-bottom: 1px solid rgba(45,47,109,.06);
}
.nav__logo img {
  height: 42px;
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}
.nav.is-scrolled .nav__logo img { filter: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
  transition: color .3s ease;
}
.nav.is-scrolled .nav__links { color: var(--navy); }
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  right: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gradient-brand);
  transition: width .25s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a.nav__cta {
  background: var(--white);
  color: var(--navy) !important;
  padding: 11px 32px;
  border-radius: 999px;
  font-weight: 300;
  font-size: 13px;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  transition: background .3s ease, color .3s ease, transform .25s ease;
}
.nav__cta:hover { transform: translateY(-2px); }
.nav.is-scrolled .nav__cta { background: var(--gradient-brand); color: var(--white) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}
.nav__burger span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .3s ease;
}
.nav.is-scrolled .nav__burger span { background: var(--navy); }

/* ============ Hero ============ */
/* Tall scroll track; JS sets the exact height once the video's duration is known
   so that scrolling through it scrubs the video frame-by-frame. */
.hero {
  position: relative;
  height: 100vh;
}
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(30,32,80,.78) 0%, rgba(45,47,109,.32) 45%, rgba(19,20,48,.85) 100%),
    linear-gradient(120deg, rgba(0,174,159,.22), rgba(161,126,185,.22));
}
.hero__orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  animation: orb-float ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero__orb--1 { width: 340px; height: 340px; background: var(--teal-light); top: -100px; right: -60px; animation-duration: 15s; }
.hero__orb--2 { width: 280px; height: 280px; background: var(--purple); bottom: -80px; left: -50px; animation-duration: 18s; animation-delay: -4s; }
.hero__orb--3 { width: 200px; height: 200px; background: var(--teal); top: 38%; left: 6%; animation-duration: 12s; animation-delay: -2s; }
@keyframes orb-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(24px,-32px) scale(1.1); }
}
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 0 24px;
  will-change: transform, opacity;
}
.hero__logo,
.hero__badge,
.hero__title,
.hero__desc,
.hero__actions {
  opacity: 0;
  animation: hero-fade-up .9s cubic-bezier(.22,1,.36,1) forwards;
}
.hero__logo { animation-delay: .1s; }
.hero__badge { animation-delay: .28s; }
.hero__title { animation-delay: .44s; }
.hero__desc { animation-delay: .6s; }
.hero__actions { animation-delay: .76s; }
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__logo {
  height: 84px;
  margin: 0 auto 28px;
  filter: brightness(0) invert(1);
}
.hero__eyebrow {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.hero__title {
  color: var(--white);
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero__title span {
  display: block;
  font-size: .48em;
  font-weight: 600;
  margin-top: 10px;
  background: linear-gradient(120deg, #fff 0%, var(--gray) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__pattern {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30px;
  z-index: 3;
  opacity: .55;
}
.hero__desc {
  color: rgba(255,255,255,.88);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.hero__scroll {
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  letter-spacing: .5px;
  transition: opacity .3s ease;
}
.hero__scroll-line {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, var(--teal-light));
  animation: scroll-line-move 1.8s ease-in-out infinite;
}
@keyframes scroll-line-move {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============ Stats ============ */
.stats {
  background: var(--navy);
  position: relative;
  z-index: 3;
  padding: 90px 0 70px;
}
/* soft fade so the video's dark bottom edge blends into the solid navy below,
   instead of a hard cut between sections */
.stats__blend {
  position: absolute;
  top: -120px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(30,32,80,0) 0%, var(--navy) 100%);
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 1px; height: 46px;
  background: rgba(255,255,255,.15);
}
.stats__icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats__icon svg { width: 22px; height: 22px; }
.stats__num {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stats__label { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 6px; }

/* ============ About / Details ============ */
.about { padding: 140px 0 100px; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__visual {
  background: var(--white);
  border-radius: var(--radius);
  min-height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 3px;
}
.about__visual-img {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.about__visual-img:hover { transform: scale(1.08); }
.about__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,47,109,0) 55%, rgba(45,47,109,.55) 100%),
              linear-gradient(120deg, rgba(0,174,159,.18), rgba(161,126,185,.18));
  pointer-events: none;
}
.about__text p { color: #55577a; margin-bottom: 16px; font-size: 16.5px; }

/* ============ Details (full-width navy strip) ============ */
.details {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.details::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: .16;
  pointer-events: none;
}
.detail-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.detail-card {
  --mx: 50%;
  --my: 50%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.detail-card::before {
  /* glassy glow that follows the cursor */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(255,255,255,.28), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.detail-card::after {
  /* diagonal shine sweep */
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .75s ease;
  pointer-events: none;
}
.detail-card:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.32);
  transform: translateY(-4px);
}
.detail-card:hover::before { opacity: 1; }
.detail-card:hover::after { left: 130%; }
.detail-card__icon {
  width: 40px; height: 40px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.detail-card__icon svg { width: 19px; height: 19px; }
.detail-card__label { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 4px; position: relative; }
.detail-card__value { font-size: 19px; font-weight: 700; color: var(--white); position: relative; }

/* ============ Features ============ */
.features {
  padding: 100px 0;
  background:
    radial-gradient(circle, rgba(45,47,109,.06) 1.4px, transparent 1.4px) 0 0/22px 22px,
    var(--gray-light);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(45,47,109,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(45,47,109,.12); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
}
.feature-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #7a7c98; }

/* ============ Infrastructure ============ */
.infrastructure {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.infrastructure::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: .14;
  pointer-events: none;
}
.infrastructure__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.infrastructure__text .section-eye { color: var(--gray); }
.infrastructure__text .section-title { color: var(--white); }
.infrastructure__body {
  color: rgba(255,255,255,.75);
  font-size: 16.5px;
  margin-bottom: 28px;
}
.infrastructure__roads {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.infrastructure__road-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.infrastructure__road-item span {
  flex-shrink: 0;
  min-width: 74px;
  text-align: center;
  background: var(--gradient-brand);
  color: var(--white);
  font-weight: 700;
  font-size: 12.5px;
  padding: 5px 10px;
  border-radius: 999px;
}
.infrastructure__visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
.infrastructure__visual-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.infrastructure__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 12px;
}
.infra-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.infra-icon__circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}
.infra-icon__circle svg { width: 20px; height: 20px; }
.infra-icon:hover .infra-icon__circle {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.32);
  transform: translateY(-4px);
}

/* ============ Facilities (photo cards) ============ */
.facilities { padding: 100px 0; background: var(--white); }
.facility-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.facility-card {
  position: relative;
  aspect-ratio: 3 / 4.3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45,47,109,.1);
}
.facility-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.facility-card:hover .facility-card__img { transform: scale(1.12); }
.facility-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--navy) 0%, rgba(45,47,109,.75) 35%, rgba(45,47,109,.05) 75%, transparent 100%);
  pointer-events: none;
}
.facility-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.facility-card__icon {
  width: 38px; height: 38px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.facility-card__icon svg { width: 18px; height: 18px; }
.facility-card__count {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.facility-card__label {
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  white-space: nowrap;
}

/* ============ Location ============ */
.location { padding: 100px 0; }
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 420px;
}
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.landmarks { margin-top: 32px; text-align: center; }
.landmarks__title { font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.landmarks__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.landmarks__tags span {
  background: var(--gray-light);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

/* ============ Team ============ */
.team { padding: 100px 0; background: var(--gray-light); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team__grid--marketers {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(45,47,109,.06);
  position: relative;
}
.team-card__logo {
  position: absolute;
  top: 24px;
  left: 24px;
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}
.team-card__logo--sm {
  height: 28px;
  max-width: 100px;
}
.team-card__role {
  display: inline-block;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.team-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.team-card p { font-size: 14px; color: #62647f; }

.team-card--dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.team-card--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: .14;
  pointer-events: none;
}
.team-card--dark .team-card__role { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); position: relative; }
.team-card--dark h3 { color: var(--white); position: relative; }
.team-card--dark p { color: rgba(255,255,255,.72); position: relative; }

/* ============ Contact ============ */
.contact { padding: 100px 0; }
.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  background: var(--navy);
  border-radius: 24px;
  padding: 56px;
  color: var(--white);
}
.contact__text .section-eye { color: var(--gray); }
.contact__text .section-title { color: var(--white); }
.contact__text p { color: rgba(255,255,255,.75); margin-bottom: 24px; }
.contact__action {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}
.contact__action-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
}
.contact__action-icon svg { width: 28px; height: 28px; }
.contact__action-label { display: block; margin-bottom: 5px; color: rgba(255,255,255,.6); font-size: 13px; }
.contact__action strong { display: block; font-size: 18px; }
.contact__whatsapp {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #25d366;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
}
.contact__whatsapp:hover { color: var(--white); background: #20bd5a; transform: translateY(-2px); }

/* ============ Footer ============ */
.footer { padding: 48px 0 28px; background: var(--navy-dark); color: rgba(255,255,255,.7); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo img { height: 40px; filter: brightness(0) invert(1); }
.footer__links { display: flex; gap: 24px; font-size: 14px; }
.footer__links a:hover { color: var(--teal-light); }
.footer__bottom {
  padding-top: 20px;
  font-size: 13px;
  text-align: center;
  color: rgba(255,255,255,.5);
}

/* ============ Floating WhatsApp ============ */
.wa-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(67,168,167,.45);
  animation: wa-pulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(67,168,167,.5); }
  70% { box-shadow: 0 0 0 16px rgba(67,168,167,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,168,167,0); }
}

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* enters from the right edge and settles into place — used for the detail-cards panel */
.reveal--right { transform: translateX(70px); }
.reveal--right.is-visible { transform: translateX(0); }

/* .reveal's own transition shorthand would otherwise clobber the hover
   transitions declared earlier on .detail-card — restate them here so both
   the right-to-left entrance and the glass hover stay smooth. */
.detail-card {
  transition:
    background .3s ease,
    border-color .3s ease,
    transform .5s cubic-bezier(.22,1,.36,1),
    opacity .8s cubic-bezier(.22,1,.36,1);
}

/* staggered entrance for grid items */
.features__grid .reveal:nth-child(1),
.detail-cards .reveal:nth-child(1),
.team__grid .reveal:nth-child(1),
.stats__grid .reveal:nth-child(1),
.facility-grid .reveal:nth-child(1) { transition-delay: 0s; }
.features__grid .reveal:nth-child(2),
.detail-cards .reveal:nth-child(2),
.team__grid .reveal:nth-child(2),
.stats__grid .reveal:nth-child(2),
.facility-grid .reveal:nth-child(2) { transition-delay: .1s; }
.features__grid .reveal:nth-child(3),
.detail-cards .reveal:nth-child(3),
.team__grid .reveal:nth-child(3),
.stats__grid .reveal:nth-child(3),
.facility-grid .reveal:nth-child(3) { transition-delay: .2s; }
.features__grid .reveal:nth-child(4),
.detail-cards .reveal:nth-child(4),
.team__grid .reveal:nth-child(4),
.stats__grid .reveal:nth-child(4),
.facility-grid .reveal:nth-child(4) { transition-delay: .3s; }
.facility-grid .reveal:nth-child(5) { transition-delay: .4s; }
.facility-grid .reveal:nth-child(6) { transition-delay: .5s; }
.facility-grid .reveal:nth-child(7) { transition-delay: .6s; }
.infrastructure__icons .reveal:nth-child(1) { transition-delay: 0s; }
.infrastructure__icons .reveal:nth-child(2) { transition-delay: .08s; }
.infrastructure__icons .reveal:nth-child(3) { transition-delay: .16s; }
.infrastructure__icons .reveal:nth-child(4) { transition-delay: .24s; }
.infrastructure__icons .reveal:nth-child(5) { transition-delay: .32s; }
.infrastructure__icons .reveal:nth-child(6) { transition-delay: .4s; }
.infrastructure__icons .reveal:nth-child(7) { transition-delay: .48s; }
.infrastructure__icons .reveal:nth-child(8) { transition-delay: .56s; }

/* ============ Scroll progress bar ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-brand);
  z-index: 300;
  transition: width .1s linear;
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; padding: 36px 24px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .team__grid { grid-template-columns: 1fr; }
  .detail-cards { grid-template-columns: repeat(2, 1fr); }
  .facility-grid { grid-template-columns: repeat(4, 1fr); }
  .infrastructure__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .infrastructure__icons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 260px;
    background: var(--white);
    color: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    padding: 40px;
    box-shadow: -8px 0 32px rgba(45,47,109,.12);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav__links.is-open { display: flex; transform: translateX(0); }
  .nav__cta { background: var(--gradient-brand); color: var(--white) !important; }
  .nav__burger { display: flex; z-index: 101; }
  .nav.is-scrolled .nav__burger span,
  .nav__burger.is-active span { background: var(--navy); }
  .nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-active span:nth-child(2) { opacity: 0; }
  .nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .detail-cards { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .location__footer { flex-direction: column; align-items: flex-start; }
}
@media (min-width: 721px) {
  .nav__links { display: flex !important; }
}
