:root {
  --navy: #0f1928;
  --navy-2: #162235;
  --navy-3: #1d2b40;
  --gold: #d6b35a;
  --gold-2: #e3c977;
  --white: #ffffff;
  --muted: #cbd2dc;
  --text: #172033;
  --soft: #f6f7f9;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(15, 25, 40, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  background: linear-gradient(180deg, rgba(15, 25, 40, 0.96), rgba(15, 25, 40, 0.72));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--white);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(214, 179, 90, 0.65);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: -1px;
}

.brand strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--white);
  font-weight: 800;
}

.nav a {
  opacity: 0.92;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(214, 179, 90, 0.28);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 7vw 90px;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/0328-0215_dubai.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  opacity: 0.56;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 179, 90, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(15, 25, 40, 0.98) 0%, rgba(15, 25, 40, 0.86) 44%, rgba(15, 25, 40, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1030px;
  color: var(--white);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.99;
  letter-spacing: -0.065em;
  margin: 0 0 26px;
}

.hero-subtitle {
  max-width: 830px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: #e6ebf2;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 16px 36px rgba(214, 179, 90, 0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}

.btn-whatsapp {
  background: #25D366;
  color: #062415;
}

.full {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust span {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #e9edf3;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
}

.hero-card {
  position: absolute;
  right: 7vw;
  bottom: 72px;
  z-index: 3;
  width: min(365px, 34vw);
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-card span {
  display: block;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.hero-card p {
  color: #dce3ec;
  margin: 0;
}

.section {
  padding: 96px 7vw;
}

.intro {
  background: var(--white);
}

.intro-grid,
.trust-grid,
.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 0 0 22px;
  color: var(--text);
}

p {
  line-height: 1.7;
}

.intro p,
.section-heading p,
.enquiry p,
.trust p {
  color: #596273;
  font-size: 18px;
}

.light {
  background: var(--soft);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.cards {
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.service-card,
.process-card,
.pathway-card {
  background: var(--white);
  border: 1px solid #e4e8ee;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(15, 25, 40, 0.06);
}

.icon,
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(214, 179, 90, 0.12);
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 900;
}

.card h3,
.service-card h3,
.process-card h3,
.pathway-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.card p,
.service-card p,
.process-card p,
.pathway-card p {
  color: #5f6878;
  margin: 0;
}

.pathway-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pathway-card {
  position: relative;
  overflow: hidden;
}

.pathway-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.pathway-card.featured p,
.pathway-card.featured li {
  color: #d9e0ea;
}

.pathway-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214, 179, 90, 0.16);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 20px;
}

.pathway-card ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pathway-card li {
  color: #4f5868;
  padding-left: 26px;
  position: relative;
}

.pathway-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.visual-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 28px;
  padding: 96px 7vw;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  align-items: stretch;
}

.visual-copy {
  padding: 42px 26px;
}

.visual-copy h2 {
  color: var(--white);
}

.visual-copy p {
  color: #d4dbe5;
  font-size: 18px;
}

.visual-card {
  min-height: 520px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.13);
}

.visual-card.city {
  background-image:
    linear-gradient(rgba(15, 25, 40, 0.22), rgba(15, 25, 40, 0.22)),
    url('/best-things-to-do-visit-dubai-museum-of-future-above9-travel.jpeg');
}

.visual-card.advisory {
  background-image:
    linear-gradient(rgba(15, 25, 40, 0.20), rgba(15, 25, 40, 0.20)),
    url('/whatsapp_image_2026-01-10_at_17.21.52_(1).jpeg');
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  color: #eaf0f7;
  padding-left: 32px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.question-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.question-item {
  background: var(--white);
  border: 1px solid #e4e8ee;
  border-radius: 18px;
  padding: 22px 24px;
  font-weight: 800;
  color: #243047;
  box-shadow: 0 12px 32px rgba(15, 25, 40, 0.05);
}

.dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.dark h2,
.dark .section-heading p {
  color: var(--white);
}

.process-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.13);
  color: var(--white);
}

.process-card.featured {
  background: rgba(214, 179, 90, 0.14);
  border-color: rgba(214, 179, 90, 0.4);
}

.process-card p {
  color: #d5dde8;
}

.step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 22px;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list div {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid #e5e9ef;
  font-weight: 800;
  color: #263143;
}

.social-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(214, 179, 90, 0.13), transparent 25%),
    linear-gradient(135deg, #ffffff, #f6f7f9);
}

.social-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.social-card {
  display: block;
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e4e8ee;
  box-shadow: 0 16px 40px rgba(15, 25, 40, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.social-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.social-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--navy);
}

.social-card small {
  display: block;
  color: #596273;
  line-height: 1.6;
}

.enquiry {
  background: #fff;
}

.cta-stack {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 28px 0;
}

.contact-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
}

.contact-box a {
  color: var(--gold-2);
}

.lead-form {
  background: var(--navy);
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #b8c0cc;
}

.lead-form select option {
  color: var(--text);
}

.calendar-link {
  display: block;
  text-align: center;
  color: var(--gold-2);
  font-weight: 800;
  margin-top: 16px;
}

.form-note {
  margin: 12px 0 0;
  color: #c8d0db;
  font-size: 13px;
  text-align: center;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 46px 7vw;
  background: var(--navy);
  color: var(--white);
}

.footer p {
  color: var(--muted);
  max-width: 520px;
  margin: 8px 0 0;
}

.footer-links,
.footer-social {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--gold);
}

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

.floating-actions a {
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(0,0,0,0.25);
  text-align: center;
}

.floating-actions a:nth-child(2),
.floating-actions a:nth-child(3) {
  background: #25D366;
  color: #062415;
}

@media (max-width: 1120px) {
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 520px;
    margin-top: 42px;
  }

  .hero {
    display: block;
  }

  .hero-content {
    margin-top: 90px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding: 18px 5vw;
    gap: 18px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 110px;
  }

  .intro-grid,
  .trust-grid,
  .enquiry-grid,
  .visual-strip,
  .pathway-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 360px;
  }

  .cards.four,
  .cards.three,
  .process-grid,
  .question-grid,
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .nav-cta {
    padding: 13px 18px;
  }

  .hero {
    min-height: auto;
    padding: 145px 5vw 70px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .btn {
    width: 100%;
  }

  .section,
  .visual-strip {
    padding: 70px 5vw;
  }

  .cards.four,
  .cards.three,
  .process-grid,
  .question-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-actions a {
    padding: 12px 8px;
    font-size: 11px;
  }
}
