:root {
  --bg: #08111f;
  --bg-soft: #0f1b2d;
  --surface: rgba(20, 32, 52, 0.86);
  --surface-soft: rgba(31, 46, 74, 0.82);
  --text: #f8fbff;
  --muted: #b7c4dc;
  --line: rgba(148, 163, 184, 0.18);
  --primary: #5b7cfa;
  --primary-deep: #7c3aed;
  --primary-soft: rgba(91, 124, 250, 0.14);
  --shadow: 0 18px 45px rgba(2, 8, 23, 0.32);
  --shadow-hover: 0 26px 58px rgba(2, 8, 23, 0.42);
  --radius: 22px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
          radial-gradient(circle at top left, rgba(91, 124, 250, 0.18), transparent 28%),
          radial-gradient(circle at right 18%, rgba(124, 58, 237, 0.12), transparent 24%),
          linear-gradient(180deg, #08111f 0%, #0d1728 48%, #101827 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 17, 31, 0.78);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 168px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: rgba(236, 242, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 650;
}

.menu a {
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.menu a:hover {
  color: #fff;
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(174, 188, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #dfe6ff;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.language-link:hover {
  border-color: rgba(174, 188, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 34px rgba(91, 124, 250, 0.24);
  cursor: pointer;
  transition:
          transform 160ms ease,
          box-shadow 160ms ease,
          border-color 160ms ease,
          background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(91, 124, 250, 0.3);
}

.button-small {
  min-height: 38px;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.25rem;
  background:
          radial-gradient(circle at top right, rgba(91, 124, 250, 0.2), transparent 28%),
          radial-gradient(circle at left bottom, rgba(124, 58, 237, 0.14), transparent 24%),
          linear-gradient(180deg, #08111f 0%, #0d1728 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
          linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 72%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 72%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
  gap: 1.75rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: inherit;
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
  color: var(--text);
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5.4vw, 5.4rem);
}

.section-heading h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.lead,
.section-heading p,
.contact-copy p,
.benefit-card p,
.timeline-item p,
.contact-card p {
  line-height: 1.7;
}

.lead {
  max-width: 54ch;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.95rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #aebcff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.hero-panel {
  display: grid;
  gap: 0.9rem;
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
          radial-gradient(circle at top right, rgba(91, 124, 250, 0.12), transparent 32%),
          linear-gradient(180deg, rgba(31, 46, 74, 0.86), rgba(15, 27, 45, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
}

.stat-value {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.stat-label {
  position: relative;
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Trust strip */

.trust-strip {
  padding: 1rem 0;
  background: rgba(8, 17, 31, 0.92);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(226, 236, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Sections */

.section {
  padding: 4.8rem 0;
}

.section-light {
  background:
          radial-gradient(circle at top, rgba(91, 124, 250, 0.11), transparent 24%),
          linear-gradient(180deg, #0d1728 0%, #0f1b2d 100%);
}

.section-accent {
  background:
          radial-gradient(circle at left top, rgba(124, 58, 237, 0.13), transparent 30%),
          linear-gradient(180deg, #0f1b2d 0%, #101827 100%);
}

.section-neutral {
  background: linear-gradient(180deg, #101827 0%, #0d1728 100%);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.section-heading p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.services-heading .eyebrow {
  color: #aebcff;
}

.services-heading h2 {
  color: #ffffff;
}

.services-heading p {
  color: rgba(226, 236, 255, 0.76);
}

.narrow {
  max-width: 760px;
}

.light-text h2,
.light-text p {
  color: var(--text);
}

/* Service cards */

.service-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-tile {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background:
          radial-gradient(circle at top left, rgba(91, 124, 250, 0.16), transparent 24%),
          linear-gradient(180deg, rgba(31, 46, 74, 0.86), rgba(15, 27, 45, 0.9));
  color: #fff;
  box-shadow: 0 16px 36px rgba(2, 8, 23, 0.26);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition:
          transform 180ms ease,
          box-shadow 180ms ease,
          border-color 180ms ease,
          background 180ms ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.service-tile::before {
  display: none;
}

.service-tile > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin: -1.55rem 1.35rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.32), rgba(124, 58, 237, 0.24));
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.1),
          0 14px 24px rgba(2, 8, 23, 0.22);
}

.service-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(174, 188, 255, 0.35);
  box-shadow: var(--shadow-hover);
}

.service-tile:hover > img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.08);
}

.service-tile h3 {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0 1.35rem;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 820;
  line-height: 1.24;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.tile-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.62rem;
  margin: 1rem 1.35rem 1.35rem;
  padding: 0;
  list-style: none;
  opacity: 1;
  transform: none;
}

.tile-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(226, 236, 255, 0.86);
  line-height: 1.5;
  font-size: 0.92rem;
}

.service-tile .button {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: auto 1.35rem 1.35rem;
}

.tile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #8fa2ff;
}

/* Individual service accents */

.service-tile-web {
  background:
          radial-gradient(circle at top left, rgba(91, 124, 250, 0.2), transparent 26%),
          linear-gradient(145deg, rgba(31, 46, 74, 0.92), rgba(13, 27, 45, 0.94));
}

.service-tile-project {
  background:
          radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 26%),
          linear-gradient(145deg, rgba(28, 45, 72, 0.92), rgba(13, 27, 45, 0.94));
}

.service-tile-pc,
.service-tile-build,
.service-tile-network {
  background:
          radial-gradient(circle at top left, rgba(34, 211, 238, 0.13), transparent 26%),
          linear-gradient(145deg, rgba(21, 54, 76, 0.9), rgba(13, 27, 45, 0.94));
}

.service-tile-server {
  background:
          radial-gradient(circle at top left, rgba(124, 58, 237, 0.17), transparent 26%),
          linear-gradient(145deg, rgba(34, 48, 76, 0.92), rgba(13, 27, 45, 0.94));
}

.service-tile-dubai,
.service-tile-estate,
.service-tile-ai,
.service-tile-rental,
.service-tile-storage,
.service-tile-security {
  background:
          radial-gradient(circle at top left, rgba(99, 102, 241, 0.17), transparent 26%),
          linear-gradient(145deg, rgba(35, 44, 78, 0.92), rgba(13, 27, 45, 0.94));
}

.service-tile-web .service-icon {
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.34), rgba(124, 58, 237, 0.24));
}

.service-tile-project .service-icon {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(91, 124, 250, 0.2));
}

.service-tile-pc .service-icon,
.service-tile-build .service-icon,
.service-tile-network .service-icon {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.26), rgba(91, 124, 250, 0.2));
}

.service-tile-server .service-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.32), rgba(91, 124, 250, 0.22));
}

.service-tile-dubai .service-icon,
.service-tile-estate .service-icon,
.service-tile-ai .service-icon,
.service-tile-rental .service-icon,
.service-tile-storage .service-icon,
.service-tile-security .service-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(124, 58, 237, 0.22));
}

/* Benefits */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card,
.contact-card,
.timeline-item {
  border-radius: var(--radius-lg);
}

.benefit-card {
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background:
          radial-gradient(circle at top right, rgba(91, 124, 250, 0.08), transparent 28%),
          linear-gradient(180deg, rgba(31, 46, 74, 0.82), rgba(15, 27, 45, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition:
          transform 160ms ease,
          border-color 160ms ease,
          box-shadow 160ms ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(174, 188, 255, 0.28);
  box-shadow: 0 22px 48px rgba(2, 8, 23, 0.35);
}

.benefit-card h3,
.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Process */

.process-grid,
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background:
          radial-gradient(circle at top right, rgba(91, 124, 250, 0.09), transparent 26%),
          linear-gradient(180deg, rgba(31, 46, 74, 0.82), rgba(15, 27, 45, 0.88));
  box-shadow: var(--shadow);
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(91, 124, 250, 0.22);
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

/* Contact */

.contact-section {
  background:
          radial-gradient(circle at right top, rgba(91, 124, 250, 0.12), transparent 24%),
          linear-gradient(180deg, #0d1728 0%, #08111f 100%);
}

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

.contact-card {
  padding: 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
          radial-gradient(circle at top right, rgba(91, 124, 250, 0.14), transparent 28%),
          linear-gradient(180deg, rgba(31, 46, 74, 0.88), rgba(15, 27, 45, 0.92));
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--text);
}

.contact-card strong {
  color: #fff;
}

.contact-card a[href^="mailto"] {
  color: #aebcff;
  font-weight: 700;
}

.contact-card .button {
  margin-top: 0.3rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label,
.form-consent {
  color: rgba(226, 236, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 750;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: rgba(8, 17, 31, 0.72);
  color: var(--text);
  font: inherit;
  outline: none;
  appearance: none;
  transition:
          border-color 160ms ease,
          box-shadow 160ms ease,
          background 160ms ease;
}

.form-group select {
  cursor: pointer;
  background-image:
          linear-gradient(45deg, transparent 50%, rgba(226, 236, 255, 0.8) 50%),
          linear-gradient(135deg, rgba(226, 236, 255, 0.8) 50%, transparent 50%);
  background-position:
          calc(100% - 20px) 20px,
          calc(100% - 14px) 20px;
  background-size:
          6px 6px,
          6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

.form-group textarea {
  min-height: 135px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(183, 196, 220, 0.58);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(174, 188, 255, 0.58);
  background: rgba(8, 17, 31, 0.9);
  box-shadow: 0 0 0 4px rgba(91, 124, 250, 0.16);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}

.form-consent input {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.22rem;
  accent-color: var(--primary);
}

.form-consent a {
  color: #aebcff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .button {
  width: fit-content;
  min-width: 180px;
  margin-top: 0.4rem;
}

/* Dubai property page */

.dubai-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: end;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: #07101d;
}

.dubai-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
          linear-gradient(90deg, rgba(7, 15, 29, 0.94) 0%, rgba(7, 15, 29, 0.7) 48%, rgba(7, 15, 29, 0.28) 100%),
          linear-gradient(180deg, rgba(7, 15, 29, 0.18), rgba(7, 15, 29, 0.72));
}

.dubai-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dubai-hero-bg span {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: dubaiHeroFade 18s infinite;
}

.dubai-hero-bg span:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=1800&q=82");
}

.dubai-hero-bg span:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1800&q=82");
  animation-delay: 6s;
}

.dubai-hero-bg span:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1524230572899-a752b3835840?auto=format&fit=crop&w=1800&q=82");
  animation-delay: 12s;
}

@keyframes dubaiHeroFade {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  8%,
  33% {
    opacity: 1;
    transform: scale(1);
  }

  45%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.dubai-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.dubai-hero h1 {
  margin: 0;
  max-width: 12ch;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
}

.dubai-hero p:not(.eyebrow) {
  max-width: 64ch;
  color: rgba(226, 236, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.dubai-quickbar {
  padding: 2.3rem 0;
  background:
          radial-gradient(circle at right, rgba(56, 189, 248, 0.1), transparent 28%),
          #0a1424;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.dubai-quickbar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dubai-quickbar-grid a {
  min-height: 220px;
  display: grid;
  grid-template-rows: minmax(118px, 1fr) auto;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(31, 46, 74, 0.82), rgba(15, 27, 45, 0.9));
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  transition:
          transform 160ms ease,
          border-color 160ms ease,
          box-shadow 160ms ease;
}

.dubai-quickbar-grid a img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.dubai-quickbar-grid a span {
  position: relative;
  display: block;
  padding: 1rem 1rem 1.05rem;
  color: #fff;
  background:
          linear-gradient(180deg, rgba(8, 17, 31, 0.1), rgba(8, 17, 31, 0.88) 28%, rgba(8, 17, 31, 0.96));
  font-size: 1.05rem;
}

.dubai-quickbar-grid a::before {
  content: "DXB";
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(174, 188, 255, 0.24);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.78), rgba(34, 211, 238, 0.48));
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  text-shadow: none;
}

.dubai-quickbar-grid a:nth-child(2)::before {
  content: "BAY";
}

.dubai-quickbar-grid a:nth-child(3)::before {
  content: "JVC";
}

.dubai-quickbar-grid a:nth-child(4)::before {
  content: "DWN";
}

.dubai-quickbar-grid a:nth-child(5)::before {
  content: "STH";
}

.dubai-quickbar-grid a:nth-child(6)::before {
  content: "HLS";
}

.dubai-quickbar-grid a:nth-child(7)::before {
  content: "CRK";
}

.dubai-quickbar-grid a:nth-child(8)::before {
  content: "PAL";
}

.dubai-quickbar-grid a:nth-child(9)::before {
  content: "NEW";
}

.dubai-quickbar-grid a:nth-child(10)::before {
  content: "KEY";
}

.dubai-quickbar-grid a:nth-child(11)::before {
  content: "FIN";
}

.dubai-quickbar-grid a:nth-child(12)::before {
  content: "CO";
}

.dubai-quickbar-grid a:nth-child(13)::before {
  content: "IT";
}

.dubai-quickbar-grid a:nth-child(14)::before {
  content: "3D";
}

.dubai-quickbar-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(174, 188, 255, 0.35);
  box-shadow: var(--shadow-hover);
}

.dubai-quickbar-grid a:hover img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.08);
}

.dubai-offers-section {
  background:
          linear-gradient(180deg, rgba(11, 22, 38, 0.96), rgba(11, 22, 38, 0.98)),
          url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1800&q=78") center / cover;
}

.investment-section {
  background:
          linear-gradient(90deg, rgba(13, 23, 40, 0.98), rgba(13, 23, 40, 0.92)),
          url("https://images.unsplash.com/photo-1524230572899-a752b3835840?auto=format&fit=crop&w=1800&q=78") center / cover;
}

.support-section {
  background:
          linear-gradient(180deg, rgba(16, 24, 39, 0.98), rgba(13, 23, 40, 0.95)),
          url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=78") center / cover;
}

.dubai-tour-section {
  overflow: hidden;
  background:
          radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.14), transparent 26%),
          linear-gradient(135deg, rgba(8, 16, 29, 0.98), rgba(14, 25, 45, 0.96)),
          url("https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.dubai-tour-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: center;
}

.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.tour-tags span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(174, 188, 255, 0.18);
  border-radius: 999px;
  color: #e7eeff;
  background: rgba(10, 20, 36, 0.58);
  font-size: 0.85rem;
  font-weight: 800;
}

.dubai-flyover {
  position: relative;
  min-height: 440px;
  perspective: 1100px;
}

.flyover-map {
  position: absolute;
  inset: 1rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(174, 188, 255, 0.16);
  border-radius: 18px;
  background:
          linear-gradient(180deg, rgba(5, 10, 18, 0.12), rgba(5, 10, 18, 0.62)),
          url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1400&q=82") center / 112% auto;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
  transform: rotateX(58deg) rotateZ(-8deg) translateY(6px);
  transform-origin: center bottom;
  animation: flyoverDrift 12s ease-in-out infinite alternate;
}

.flyover-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(rgba(174, 188, 255, 0.08) 1px, transparent 1px),
          linear-gradient(90deg, rgba(174, 188, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: screen;
}

.flyover-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 52%, transparent 0 18%, rgba(6, 12, 22, 0.46) 62%);
}

.flyover-route {
  position: absolute;
  left: 12%;
  top: 55%;
  width: 76%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #7dd3fc, #aebcff, transparent);
  box-shadow: 0 0 26px rgba(125, 211, 252, 0.55);
  transform: rotate(-16deg);
  z-index: 2;
  animation: routePulse 2.8s ease-in-out infinite;
}

.flyover-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 4.2rem;
  height: 2.1rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(190, 204, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 30, 54, 0.84);
  box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.42), 0 14px 30px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  animation: pinPulse 2.8s ease-in-out infinite;
}

.pin-one {
  left: 16%;
  top: 58%;
}

.pin-two {
  left: 46%;
  top: 38%;
  animation-delay: 0.45s;
}

.pin-three {
  right: 15%;
  top: 48%;
  animation-delay: 0.9s;
}

.flyover-panel {
  position: absolute;
  right: 2rem;
  bottom: 1.3rem;
  z-index: 4;
  width: min(320px, calc(100% - 4rem));
  padding: 1.2rem;
  border: 1px solid rgba(174, 188, 255, 0.22);
  border-radius: 16px;
  background: rgba(8, 16, 29, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.flyover-panel span {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: #9fb2ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flyover-panel strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.flyover-panel small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.5;
}

@keyframes flyoverDrift {
  from {
    background-position: 42% 48%;
    transform: rotateX(58deg) rotateZ(-8deg) translateY(6px) scale(1);
  }

  to {
    background-position: 58% 52%;
    transform: rotateX(58deg) rotateZ(-5deg) translateY(-8px) scale(1.035);
  }
}

@keyframes routePulse {
  0%, 100% {
    opacity: 0.42;
  }

  50% {
    opacity: 1;
  }
}

@keyframes pinPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.36), 0 14px 30px rgba(0, 0, 0, 0.28);
  }

  50% {
    transform: translateY(-5px);
    box-shadow: 0 0 0 12px rgba(125, 211, 252, 0), 0 20px 36px rgba(0, 0, 0, 0.32);
  }
}

.investment-list {
  display: grid;
  gap: 1rem;
}

.investment-row {
  display: grid;
  grid-template-columns: 140px auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: var(--radius-lg);
  background:
          radial-gradient(circle at top left, rgba(91, 124, 250, 0.12), transparent 28%),
          rgba(10, 20, 36, 0.9);
  box-shadow: var(--shadow-soft);
}

.investment-row img {
  width: 140px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(174, 188, 255, 0.18);
}

.investment-row > span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(174, 188, 255, 0.22);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.34), rgba(34, 211, 238, 0.18));
  font-weight: 900;
}

.investment-row h3 {
  margin: 0 0 0.25rem;
  color: #fff;
}

.investment-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.property-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(10, 20, 36, 0.92);
  box-shadow: var(--shadow-soft);
}

.property-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.property-body {
  padding: 1.2rem;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.property-meta span {
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(174, 188, 255, 0.2);
  border-radius: 999px;
  color: #d8e2ff;
  background: rgba(91, 124, 250, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
}

.property-body h3 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.25;
}

.property-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.property-body dl {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.property-body dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.property-body dt,
.property-body dd {
  margin: 0;
}

.property-body dt {
  color: rgba(226, 236, 255, 0.58);
}

.property-body dd {
  color: #fff;
  font-weight: 800;
  text-align: right;
}

/* Legal pages */

.legal-content {
  max-width: 920px;
  padding: 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-lg);
  background:
          radial-gradient(circle at top right, rgba(91, 124, 250, 0.1), transparent 28%),
          linear-gradient(180deg, rgba(31, 46, 74, 0.82), rgba(15, 27, 45, 0.88));
  box-shadow: var(--shadow);
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: #fff;
  letter-spacing: -0.025em;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
}

.legal-content h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content a {
  color: #aebcff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 1.25rem;
}

/* Footer */

.site-footer {
  padding: 1.35rem 0 2rem;
  background: #070f1d;
  color: rgba(214, 225, 248, 0.72);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-row p {
  margin: 0;
}

.footer-row a {
  color: #aebcff;
  font-weight: 700;
}

.footer-cookie-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #aebcff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  margin-left: 0.75rem;
  padding: 0;
}

.footer-cookie-button:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 80;
  display: none;
  pointer-events: none;
}

.cookie-banner.is-visible {
  display: block;
  pointer-events: auto;
}

.cookie-panel {
  width: min(720px, 100%);
  margin-left: auto;
  padding: 1.15rem;
  border: 1px solid rgba(174, 188, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.97);
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.48);
  color: rgba(226, 236, 255, 0.9);
}

.cookie-panel h2 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.3;
}

.cookie-panel p {
  margin: 0;
  color: rgba(226, 236, 255, 0.78);
  line-height: 1.65;
}

.cookie-panel a {
  color: #aebcff;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

/* Responsive */

@media (max-width: 1100px) {
  .service-tiles,
  .benefit-grid,
  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dubai-quickbar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .process-grid,
  .dubai-tour-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .menu {
    gap: 0.85rem;
    font-size: 0.92rem;
  }

  .hero-panel {
    max-width: 640px;
  }

  .dubai-hero {
    min-height: 68vh;
  }

  .dubai-hero h1 {
    max-width: 100%;
  }

  .dubai-flyover {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .site-header {
    position: static;
  }

  .nav,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 150px;
  }

  .menu {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
  }

  .menu a {
    font-size: 0.9rem;
  }

  .menu .button {
    width: 100%;
    margin-top: 0.25rem;
  }

  .language-link {
    min-width: 40px;
  }

  .hero {
    padding: 3.2rem 0 3.5rem;
  }

  .hero-copy h1,
  .section-heading h1,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.45rem;
    letter-spacing: -0.045em;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 3.6rem 0;
  }

  .service-tiles,
  .benefit-grid,
  .property-grid {
    grid-template-columns: 1fr;
  }

  .dubai-quickbar-grid {
    grid-template-columns: 1fr;
  }

  .dubai-quickbar-grid a {
    min-height: 210px;
  }

  .investment-row {
    grid-template-columns: 1fr;
  }

  .investment-row img {
    width: 100%;
    max-height: 220px;
  }

  .investment-row .button {
    width: 100%;
  }

  .dubai-flyover {
    min-height: 340px;
  }

  .flyover-map {
    inset: 0.5rem 0 0;
    transform: rotateX(52deg) rotateZ(-7deg) translateY(8px);
  }

  .flyover-panel {
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }

  .dubai-hero {
    padding: 5.5rem 0 3.5rem;
  }

  .dubai-hero h1 {
    font-size: 2.65rem;
  }

  .service-tile {
    min-height: auto;
    padding: 0;
  }

  .service-icon {
    width: 2.8rem;
    height: 2.8rem;
    margin: -1.4rem 1.15rem 0.85rem;
  }

  .service-tile h3 {
    margin-inline: 1.15rem;
  }

  .tile-list {
    margin: 0.9rem 1.15rem 1.15rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item span {
    width: 44px;
    height: 44px;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-form .button {
    width: 100%;
  }

  .cookie-banner {
    inset: auto 0.75rem 0.75rem 0.75rem;
  }

  .cookie-panel {
    padding: 1rem;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .legal-content {
    padding: 1.2rem;
  }
}

@media (max-width: 420px) {
  .hero-copy h1,
  .section-heading h1,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }

  .service-tile {
    padding: 0;
  }

  .benefit-card {
    padding: 1.15rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
  }
}
