:root {
  --brand: #ff9f0a;
  --brand-deep: #e68a00;
  --primary: #0f172a;
  --primary-soft: #1e293b;
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --text: #0f172a;
  --text-muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --card: rgba(255, 255, 255, 0.8);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  --radius: 20px;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 159, 10, 0.08) 0%, transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(30, 41, 59, 0.05) 0%, transparent 28%),
    linear-gradient(145deg, var(--bg), #ffffff 55%, var(--bg-soft) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(21, 37, 59, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1400px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.nav-wrap.align-items-center {
  align-items: center;
}

.main-nav a.active {
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 1rem;
}

.search-box {
  display: flex;
  align-items: center;
  background: #fdfaf3;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  gap: 0.8rem;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  color: #333;
  font-family: inherit;
  width: 100px;
  font-size: 0.95rem;
}

.grid-btn {
  background: #002b49;
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.grid-btn:hover {
  background: #001a2e;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-fallback {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-deep);
  display: none;
}

.menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1rem 0;
  /* Creates hover target */
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-icon {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown:hover .dropdown-toggle {
  color: var(--brand);
}

.dropdown:hover .dropdown-toggle::after {
  width: 100%;
  background: var(--brand);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 280px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0.8rem 0;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.dropdown-menu.mega-menu {
  min-width: 680px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
  gap: 0;
  max-width: 90vw;
}

@media (max-width: 980px) {
  .dropdown-menu {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    box-shadow: none;
    border: none;
    transform: none;
    padding: 0.5rem 0 0.5rem 1rem;
    margin-top: 0.5rem;
    width: 100%;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu.mega-menu {
    min-width: 100%;
    grid-template-columns: 1fr;
    max-height: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu,
  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown:hover .dropdown-menu.mega-menu,
  .dropdown:focus-within .dropdown-menu.mega-menu,
  .dropdown.active .dropdown-menu.mega-menu {
    display: grid;
  }
}

/* Custom scrollbar for dropdown */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 10px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 0.5rem;
}

.mega-menu a {
  border-bottom: none;
  margin-bottom: 2px;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--bg-soft);
  color: var(--brand);
  padding-left: 1.5rem;
  transform: translateX(4px);
}

/* Hiding default Google Translate widgets */
iframe.skiptranslate,
.goog-te-banner-frame,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
  visibility: hidden !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

body,
html {
  top: 0px !important;
  margin-top: 0px !important;
}

.btn {
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  padding: 0.68rem 1.1rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #ffb340);
  color: #000;
  box-shadow: 0 10px 25px rgba(255, 159, 10, 0.25);
  border: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 15px 35px rgba(255, 159, 10, 0.35);
  transform: translateY(-3px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--brand);
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #000;
}

.hero-video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero-video-overlay-light {
  position: absolute;
  inset: 0;
  background: #02216e9a;
  z-index: 2;
}

.hero-decor-plane {
  position: absolute;
  top: 5%;
  left: 0;
  width: 300px;
  height: 300px;
  z-index: 5;
  opacity: 0.8;
  pointer-events: none;
}

.hero-carousel {
  width: 100%;
  position: relative;
  z-index: 10;
}

.carousel-indicators {
  position: absolute;
  left: clamp(2rem, 5vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 10;
}

.carousel-indicators button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #002b49;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.carousel-indicators button.active {
  background: transparent;
}

.carousel-indicators button.active::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid #002b49;
  border-radius: 50%;
}

.carousel-inner {
  width: 100%;
}

.carousel-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  min-height: calc(100vh - 90px);
}

.hero-slide-content {
  padding-left: clamp(2rem, 5vw, 6rem);
  animation: slideRightFade 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideRightFade {
  from {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.eyebrow-box {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-slide-content h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-slide-content h1 span {
  display: inline-block;
}

.gold-text {
  color: var(--brand);
}

.white-text {
  color: #fff;
}

.dark-text {
  color: #002b49;
  font-weight: 700;
}

.btn-gold {
  display: inline-flex;
  background: var(--brand);
  color: #fff;
  padding: 1rem 2.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 25px rgba(255, 159, 10, 0.3);
  text-decoration: none;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 159, 10, 0.4);
}

.hero-slide-image {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  animation: slideRightImage 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideRightImage {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-slide-image img {
  max-height: 90vh;
  object-fit: contain;
  margin-bottom: -5vh;
  mix-blend-mode: multiply;
  filter: contrast(1.05) brightness(1.02);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

.metrics {
  margin-top: -3rem;
  /* Pull into hero section sightly */
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .metrics {
    grid-template-columns: repeat(4, 1fr);
    margin-top: -4rem;
  }
}

.metrics article {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.metrics article:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 20px 40px rgba(255, 159, 10, 0.12);
}

.metric-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 159, 10, 0.1);
  color: var(--brand-deep);
  border-radius: 16px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.metrics article:hover .metric-icon {
  background: var(--brand);
  color: #000;
  transform: rotate(-5deg) scale(1.1);
}

.metric {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: "Sora", sans-serif;
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.saudi-banner-section {
  padding-top: 3.2rem;
  padding-bottom: 0.5rem;
}



.kingdom-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 400px;
  border: 1px solid var(--line);
  background: url("assets/bg.png") center/cover no-repeat, var(--primary);
  /* Dark base */
  box-shadow: var(--shadow);
  isolation: isolate;
  display: flex;
  align-items: center;
}

.banner-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.6;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 159, 10, 0.15) 0, transparent 30%),
    linear-gradient(110deg, rgba(255, 159, 10, 0.1), transparent 35%);
  animation: pulseGlow 8s ease-in-out infinite;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.1rem, 4vw, 2.2rem);
  max-width: 62ch;
}

.banner-content .eyebrow {
  color: var(--brand);
}

.banner-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.banner-content p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.banner-cities {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.banner-cities span {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 208, 171, 0.65);
  background: rgba(6, 34, 28, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
}

.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background:
    linear-gradient(to top, rgba(2, 20, 15, 0.7), transparent),
    repeating-linear-gradient(to right,
      rgba(223, 208, 171, 0.32) 0 18px,
      transparent 18px 28px,
      rgba(223, 208, 171, 0.24) 28px 38px,
      transparent 38px 56px);
  opacity: 0.65;
  z-index: 1;
}

.branch-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .branch-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.branch-card {
  position: relative;
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1rem;
  text-align: center;
  color: #fff;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.branch-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.branch-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: -2;
}

.branch-card:hover .card-bg {
  transform: scale(1.15);
}

.branch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.98));
  z-index: -1;
}

.branch-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.branch-card p {
  font-size: 0.86rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.branch-card .btn-view {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.branch-card .btn-view:hover {
  background: var(--brand);
  color: #000;
  transform: translateY(-2px);
}

.accent-text {
  color: var(--brand);
}

/* Mega Events Section */
.mega-events-section {
  position: relative;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.mega-events-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.glass-logo-card {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 150px;
  border-radius: 20px;
}

.glass-logo-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.glass-logo-card img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.glass-logo-card:hover img {
  transform: scale(1.05);
}

.opportunity-section {
  padding: 8rem 0;
  background: url("assets/bg.png") center/cover no-repeat, var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* KSA Insights Section */
.ksa-insights {
  background: var(--bg-soft);
  padding: 8rem 0;
}

.ksa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.ksa-image-stack {
  position: relative;
  padding: 2rem;
}

.ksa-main-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-deep);
  position: relative;
  z-index: 2;
}

.ksa-accent-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border: 2px solid var(--brand);
  border-radius: 30px;
  z-index: 1;
}

.ksa-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 2rem;
}

.ksa-description {
  display: grid;
  gap: 1.5rem;
}

.ksa-description p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.1rem;
}

.ksa-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pillar-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--brand);
}

.pillar-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.pillar-item:hover .pillar-icon {
  background: var(--brand);
  color: #fff;
}

.pillar-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.pillar-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.opportunity-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 159, 10, 0.08) 0%, transparent 70%);
  filter: blur(40px);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.opportunity-copy .eyebrow {
  color: var(--brand);
}

.opportunity-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.opportunity-copy p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.2rem;
  font-size: 1.1rem;
}

.opportunity-list {
  list-style: none;
  margin-top: 2rem;
  padding: 0;
}

.opportunity-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.opportunity-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

.opportunity-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  border-radius: 32px;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
}

.opportunity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.opportunity-kicker {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.coverage-items {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.coverage-items article {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.coverage-items article:hover {
  transform: translateX(10px);
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.08);
}

.coverage-items strong {
  font-size: 1.25rem;
  color: #fff;
  min-width: 80px;
}

.coverage-items p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Global Expansion Section */
.global-section {
  padding: 8rem 0;
  background: var(--bg-soft);
  margin-bottom: 0;
}

.global-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.global-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.global-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.glow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary), transparent);
  opacity: 0.4;
}

.global-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0 1.5rem;
}

.global-cards {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.global-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.global-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.flag-icon {
  font-size: 2.5rem;
  background: var(--bg-soft);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.global-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.global-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 980px) {
  .global-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.metric {
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section {
  padding: 5rem 0 1rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 4.2vw, 2.8rem);
  max-width: 17ch;
}

.services-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  position: relative;
  width: 100%;
  height: 220px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  bottom: -28px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #c5a059;
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 10;
  transition: all 0.3s ease;
}

.service-card:hover .service-badge {
  transform: translateY(-5px) scale(1.05);
  background: var(--brand);
}

.service-badge svg {
  width: 24px;
  height: 24px;
}

.service-card-content {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #11334c;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(197, 160, 89, 0.3);
}

.service-card::after {
  content: "→";
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #c5a059;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.feature-list {
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  padding-left: 1rem;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
}

.timeline {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  background: var(--card);
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(21, 37, 59, 0.2);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover {
  transform: translateX(12px);
  border-color: var(--brand);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timeline-item span {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand);
}

.timeline-item h3 {
  font-size: 1.2rem;
  color: var(--primary);
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.location-card {
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  box-shadow: var(--shadow);
  background: #fff;
}

.location-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h3 {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.location-info p {
  color: var(--text-muted);
  line-height: 1.6;
}

.location-info .btn {
  margin-top: 2rem;
}

.saudi-vision {
  margin-top: 3rem;
  background: url("assets/bg.png") center/cover no-repeat, var(--primary);
  border-radius: 32px;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.saudi-vision p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.vision-tags {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vision-tags span {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.vision-tags span:hover {
  background: var(--brand);
  color: #000;
  border-color: var(--brand);
}

.location-card iframe {
  border: 0;
  width: 100%;
  min-height: 320px;
}

.contact {
  padding-bottom: 4rem;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: url("assets/bg.png") center/cover no-repeat, var(--primary);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 20ch;
  margin: 0 auto;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer {
  background: url("assets/bg.png") center/cover no-repeat, var(--primary);
  color: #fff;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand .footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 30ch;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--brand);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand);
  transform: translateX(5px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-contact a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
}

.top-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.top-link:hover {
  text-decoration: underline;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}

.fab:hover {
  transform: scale(1.1) translateY(-5px);
}

.floating-whatsapp {
  background-color: #25d366;
  animation: pulse-green 2s infinite;
}

.floating-call {
  background-color: var(--brand);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 159, 10, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 159, 10, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 159, 10, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

@keyframes drift {

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

  50% {
    transform: translateY(-10px) scale(1.04);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .hero-slide-grid,
  .split,
  .location-card,
  .opportunity-grid,
  .ksa-grid,
  .mega-events-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ksa-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-slide-grid {
    min-height: auto;
    gap: 4rem;
    padding-bottom: 5rem;
  }

  .hero-slide-content {
    padding-left: clamp(1rem, 5vw, 2rem);
    padding-right: clamp(1rem, 5vw, 2rem);
    text-align: center;
    margin-top: 2rem;
  }

  .hero-slide-content h1 {
    white-space: normal;
  }

  .hero-slide-image {
    justify-content: center;
  }

  .hero-slide-image img {
    max-width: 100%;
    margin-bottom: 0;
  }

  .carousel-indicators {
    flex-direction: row;
    top: auto;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-ecosystem {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-right: 0;
  }

  .ecosystem-item {
    width: clamp(120px, 30vw, 150px);
    padding: 0.8rem;
  }

  .services-grid,
  .metrics,
  .trust-logos,
  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 20;
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-wrap.active .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-wrap.active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-wrap.active .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .menu-toggle {
    order: 3;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .search-box {
    display: none;
  }

  .hero-decor-plane {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6rem 2rem 3rem 2rem;
    gap: 1.5rem;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 15;
  }

  .main-nav .dropdown {
    height: auto;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .main-nav .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-wrap.active .main-nav {
    right: 0;
  }

  .main-nav a {
    font-size: 1.25rem;
  }

  .main-nav .dropdown-menu a {
    font-size: 1rem;
    padding: 0.6rem 0.5rem;
    margin: 0;
    line-height: 1.4;
  }

  .main-nav .dropdown-menu.mega-menu {
    padding-left: 1rem;
    gap: 0;
  }

  .main-nav .dropdown-menu a:hover,
  .main-nav .dropdown-menu a.active {
    padding-left: 0.8rem;
    transform: translateX(2px);
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 720px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .hero-slide-image {
    display: none;
  }

  .top-strip-wrap {
    flex-direction: column;
    text-align: center;
    padding: 0.6rem 1rem;
    gap: 0.5rem;
  }

  .top-strip-wrap p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .top-strip-links {
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.75rem;
  }

  .search-box {
    display: none;
  }

  .hero-decor-plane {
    display: none;
  }

  .services-grid,
  .trust-logos,
  .branch-grid,
  .ksa-pillars {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    /* remove negative overlap */
    padding-bottom: 1.5rem;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
    max-width: 100%;
  }

  .section-head h2,
  .banner-content h2,
  .ksa-content h2,
  .opportunity-copy h2,
  .global-content h2,
  .contact-panel h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .pillar-item,
  .opportunity-card,
  .location-info,
  .timeline-item {
    padding: 1.5rem;
  }

  .service-card-content {
    padding: 1.5rem;
  }

  /* Compact metrics cards for mobile */
  .metrics article {
    padding: 1.25rem 1rem;
    gap: 0.5rem;
  }

  .metric-icon {
    width: 44px;
    height: 44px;
  }

  .metric-icon svg {
    width: 20px;
    height: 20px;
  }

  .metric {
    font-size: 2rem;
  }

  .metric-label {
    font-size: 0.75rem;
  }

  .saudi-vision {
    padding: 2.5rem 1.5rem;
  }

  .contact-panel {
    padding: 2.5rem 1rem;
  }

  .banner-content {
    padding: 1.5rem;
  }

  .branch-card {
    min-height: 380px;
    padding: 1.5rem;
  }

  .coverage-items article,
  .global-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-video-container iframe {
    /* ensure bg video does not cause horizontal scroll */
    width: 100%;
    margin-left: 0;
  }

  .saudi-badges span {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .floating-actions {
    bottom: 1.5rem;
    right: 1.2rem;
  }

  .fab {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Animated Buttons --- */
.btn,
.btn-primary,
.btn-gold,
.btn-view,
.btn-ghost {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease !important;
}

.btn::after,
.btn-primary::after,
.btn-gold::after,
.btn-view::after,
.btn-ghost::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}

.btn:hover::after,
.btn-primary:hover::after,
.btn-gold:hover::after,
.btn-view:hover::after,
.btn-ghost:hover::after {
  left: 150%;
}

.btn:active,
.btn-primary:active,
.btn-gold:active,
.btn-view:active,
.btn-ghost:active {
  transform: scale(0.95) !important;
}

/* --- Travel SVG Animations --- */
@keyframes flyAcross {
  0% {
    transform: translateX(-10vw) rotate(15deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateX(110vw) rotate(15deg);
    opacity: 0;
  }
}

@keyframes spinMap {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.travel-svg {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  opacity: 0.8;
}

.travel-airplane {
  top: 15%;
  left: 0;
  animation: flyAcross 20s linear infinite;
  color: var(--brand);
}

.travel-car {
  bottom: 5%;
  left: 0;
  animation: flyAcross 15s linear infinite;
  color: var(--brand-deep);
}

.travel-pin {
  right: 8%;
  top: 10%;
  animation: flyAcross 25s linear infinite;
  color: var(--brand);
}

.travel-globe {
  left: 5%;
  bottom: 20%;
  animation: flyAcross 30s linear infinite, spinMap 40s linear infinite;
  color: var(--brand);
}

/* Benefit Image Cards */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  position: relative;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  isolation: isolate;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefit-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 0;
}

.benefit-card:hover .benefit-card-bg {
  transform: scale(1.1);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.benefit-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  font-family: "Sora", sans-serif;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.benefit-card p {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.6rem;
  margin-bottom: 0;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.inner-page-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--bg-soft);
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  text-align: center;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

/* Hero Form Styles */
.hero-form-container {
  width: 100%;
}

.hero-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid var(--brand);
  border-right-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 20;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
}

.hero-form:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 -8px 25px rgba(255, 159, 10, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  border-top-color: var(--brand);
  border-right-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.hero-form h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-form p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
}

.hero-form .form-group {
  width: 100%;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  /* very soft inner shadow */
}

.hero-form select option {
  background: #002b49;
  color: #fff;
}

.hero-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/200.svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 159, 10, 0.2);
}

.hero-form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.hero-form button[type="submit"] {
  margin-top: 0.5rem;
  padding: 1.1rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .hero-slide-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .hero-form-container {
    justify-content: center;
    margin-bottom: 5rem;
  }
}