:root {
  color-scheme: light;
  --bg: #edf0ff;
  --bg-soft: #f7f8ff;
  --text: #1b1b2a;
  --muted: #60647a;
  --primary: #6d5dfc;
  --primary-dark: #5644f0;
  --secondary: #2fb7ff;
  --accent: #ff7ab3;
  --glass: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(20, 23, 44, 0.08);
  --shadow: 0 20px 50px rgba(34, 36, 59, 0.12);
  --radius: 24px;
  --container: 1160px;
}

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

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, #e4e8ff 55%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.bg-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.orb-a {
  background: #c7beff;
  top: -120px;
  left: -120px;
}

.orb-b {
  background: #b3ecff;
  top: 20%;
  right: -160px;
  animation-delay: 1.5s;
}

.orb-c {
  background: #ffc3e4;
  bottom: -140px;
  left: 30%;
  animation-delay: 3s;
}

.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(247, 248, 255, 0.92);
  border-bottom: 1px solid rgba(20, 23, 44, 0.1);
  z-index: 10;
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 18px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

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

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.brand__text span {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
}

.nav--center {
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  font-size: 0.9rem;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #2d2f4f;
}

.brand-mark--muted {
  color: var(--muted);
}

.btn--compact {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.nav a {
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: var(--shadow);
}

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

.btn--dark {
  background: #111424;
  color: white;
  border: 1px solid rgba(20, 23, 44, 0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(20, 23, 44, 0.2);
}

.btn--soft {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border-color: rgba(20, 23, 44, 0.08);
}

.hero {
  padding: 120px 0 60px;
}

.hero--cover {
  padding: 0 0 32px;
  position: relative;
}

.hero--rtl {
  direction: rtl;
}

.hero--rtl .hero__actions {
  justify-content: center;
}

.hero__media--cover {
  position: relative;
  width: 100%;
  height: min(64vh, 500px);
  overflow: hidden;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 9, 22, 0.82) 0%,
    rgba(7, 9, 22, 0.48) 55%,
    rgba(7, 9, 22, 0.22) 100%
  );
  color: white;
  display: grid;
  align-items: center;
  padding: 16px 0;
  z-index: 1;
}

.hero__banner {
  display: grid;
  gap: 12px;
  padding: 12px 0 8px;
  text-align: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__banner--split {
  grid-template-columns: minmax(260px, 0.6fr) minmax(280px, 1fr);
  grid-template-areas: "form copy";
  align-items: center;
  text-align: center;
  justify-items: stretch;
  gap: 24px;
  max-width: 1100px;
}

.hero__copy-block {
  grid-area: copy;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.hero__kicker {
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 22px rgba(5, 8, 20, 0.65);
  margin-top: 2px;
}

.hero__arabic--tight {
  margin-top: 0;
}

.text-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 18px rgba(5, 8, 20, 0.35);
  backdrop-filter: blur(6px);
}

.hero__cta {
  margin-top: 10px;
  padding-inline: 36px;
}

.hero__meta {
  display: grid;
  gap: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-shadow: 0 8px 18px rgba(5, 8, 20, 0.65);
}

.hero__title {
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  line-height: 1.05;
  text-shadow: 0 14px 32px rgba(5, 8, 20, 0.7);
  margin-top: 6px;
}

.hero__subtitle {
  max-width: 720px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 12px 26px rgba(5, 8, 20, 0.6);
  margin-top: 6px;
  white-space: nowrap;
  font-weight: 700;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 6px;
  width: min(760px, 100%);
}

.hero__fact {
  background: rgba(72, 120, 156, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 12px 14px;
  text-align: center;
  color: white;
  backdrop-filter: blur(8px);
}

.hero__fact span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.hero__fact strong {
  font-size: 1rem;
}

.hero__lead-form {
  grid-area: form;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  width: min(720px, 100%);
  background: #ffffff;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(20, 23, 44, 0.12);
  z-index: 2;
  animation: floatForm 4.5s ease-in-out infinite;
}

.hero__banner--split .hero__lead-form {
  width: 100%;
  max-width: 360px;
  grid-template-columns: 1fr;
}

.hero__lead-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 23, 44, 0.12);
  background: #ffffff;
  color: #1b1b2a;
  font-family: inherit;
  text-align: right;
}

.hero__quick-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 14px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  direction: rtl;
  max-width: 620px;
  width: 100%;
}

.hero__quick-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(15, 18, 38, 0.55);
  color: white;
  font-family: inherit;
  text-align: right;
}

.hero__info-bar {
  margin-top: -12px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 18px 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: center;
  text-align: center;
}

.hero__info-item span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.hero__info-item strong {
  font-size: 1rem;
}

.info-icon {
  margin-inline-end: 6px;
  font-size: 1.05rem;
}

.hero__info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero__copy h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero__arabic {
  display: block;
  font-size: 0.98rem;
  margin-top: 10px;
  font-weight: 700;
  color: #f4f2ff;
  direction: rtl;
  text-shadow: 0 10px 22px rgba(5, 8, 20, 0.7);
}

.hero__copy .lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 560px;
}

.eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  min-width: 130px;
}

.stat__value {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}

.stat__label {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero__media {
  display: grid;
  gap: 18px;
}

.media-stack {
  display: grid;
  gap: 18px;
}

.media-card {
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(140deg, #ffffff, #f0f2ff);
  border: 1px solid rgba(20, 23, 44, 0.08);
  box-shadow: var(--shadow);
}

.media-placeholder {
  background: linear-gradient(135deg, rgba(109, 93, 252, 0.18), rgba(47, 183, 255, 0.18));
  border-radius: 18px;
  height: 160px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #394076;
}

.media-placeholder--image {
  min-height: 160px;
}

.media-placeholder--video {
  height: 200px;
  padding: 8px;
}

.media-placeholder--video video {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.media-caption {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  font-weight: 600;
}

.detail-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7ff 100%);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(20, 23, 44, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.detail-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.feed-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.map-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(20, 23, 44, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.map-section {
  text-align: center;
  color: #111;
}

.map-section h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}

.map-section p {
  color: #333;
  margin-bottom: 24px;
}

.map-card--dark {
  background: #0b1228;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(6, 10, 28, 0.4);
}

.map-image {
  height: 320px;
  border-radius: 20px;
  background: #f3f1ed;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #2e314b;
  overflow: hidden;
}

.map-image iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(109, 93, 252, 0.18), rgba(47, 183, 255, 0.18));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #394076;
}

.map-details {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery-tile {
  min-height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__badge {
  margin-top: 14px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.section {
  padding: 80px 0;
}

.section--light {
  background: linear-gradient(135deg, #f1f4ff 0%, #ffffff 100%);
}

#project-details {
  color: #111;
}

#project-details .card__list {
  color: #2a2a2a;
}

.section--gradient {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.2),
    rgba(55, 215, 255, 0.2)
  );
}

.section__header {
  max-width: 620px;
  margin-bottom: 36px;
}

.section__header h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin-bottom: 10px;
}

.section__header p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--three {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--four {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card,
.plan,
.feature,
.quote,
.contact__form {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7ff 100%);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(20, 23, 44, 0.08);
  box-shadow: var(--shadow);
}

.card__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.2);
  color: var(--secondary);
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.card__list {
  margin: 18px 0;
  padding-left: 18px;
  color: var(--muted);
}

.card__list li {
  margin-bottom: 8px;
}

.plan__price {
  color: var(--secondary);
  font-weight: 600;
  margin: 10px 0 16px;
}

.plan__list {
  padding-left: 18px;
  margin-bottom: 20px;
  color: var(--muted);
}

.feature__icon {
  font-size: 2rem;
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery__tile {
  background: linear-gradient(
    135deg,
    rgba(55, 215, 255, 0.18),
    rgba(124, 92, 255, 0.12)
  );
  border-radius: 18px;
  min-height: 140px;
  box-shadow: var(--shadow);
}

.gallery__tile.tall {
  grid-row: span 2;
  min-height: 300px;
  background: linear-gradient(
    180deg,
    rgba(255, 122, 217, 0.2),
    rgba(124, 92, 255, 0.12)
  );
}

.gallery__tile.wide {
  grid-column: span 2;
  min-height: 160px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill-group span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.12);
  font-size: 0.85rem;
}

.quote p {
  font-size: 1rem;
  margin-bottom: 16px;
}

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

.contact {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact__info {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact__form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 23, 44, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-family: inherit;
}

.contact__form textarea {
  min-height: 100px;
  resize: vertical;
}

.form__note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer {
  padding: 50px 0 24px;
  background: linear-gradient(180deg, #eef1ff 0%, #ffffff 100%);
}

.footer__content {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer__cta {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer__bottom {
  text-align: center;
  color: var(--muted);
  margin-top: 22px;
  font-size: 0.85rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 999;
}

.floating-actions__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-actions__btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-actions__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.floating-actions__btn--whatsapp {
  background: #25d366;
}

.floating-actions__btn--call {
  background: #1e88e5;
}

.glass {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 23, 44, 0.08);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatForm {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 90px;
  }
}

@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar__content {
    flex-direction: column;
  }
}
