﻿:root {
  color-scheme: light;
  --ink: #0e2037;
  --muted: #5d6e83;
  --paper: #f4f8fd;
  --panel: #ffffff;
  --line: rgba(14, 32, 55, 0.12);
  --blue-950: #061d3f;
  --blue-850: #082f69;
  --blue-700: #0759bd;
  --blue-500: #1687ee;
  --cyan: #19bed6;
  --gold: #d9a028;
  --green: #159767;
  --danger: #d84d40;
  --shadow: 0 22px 55px rgba(6, 29, 63, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
  --hero-speed: 54s;
  --ticker-speed: 24s;
  --visual-speed: 28s;
  --photo-speed: 18s;
  --hero-bg-one: url("https://unsplash.com/photos/tvEDhFhBhXM/download?force=true&w=1600");
  --hero-bg-two: url("https://unsplash.com/photos/qgpqinXjtbY/download?force=true&w=1600");
  --hero-bg-three: url("https://unsplash.com/photos/MoonoldXeqs/download?force=true&w=1600");
  --hero-bg-four: url("https://unsplash.com/photos/1fjiX6PxVK4/download?force=true&w=1600");
  --hero-bg-five: url("https://unsplash.com/photos/xrLejyt9BCo/download?force=true&w=1600");
  --hero-bg-six: url("https://unsplash.com/photos/eI6gfHVJLts/download?force=true&w=1600");
  --hero-bg-seven: url("https://unsplash.com/photos/pU-TZ3rRVoM/download?force=true&w=1600");
  --hero-bg-eight: url("https://unsplash.com/photos/9om7Wwizt1E/download?force=true&w=1600");
  --hero-bg-nine: url("https://unsplash.com/photos/sj7NbWUqWio/download?force=true&w=1600");
  --visual-strip-bg: url("https://unsplash.com/photos/sj7NbWUqWio/download?force=true&w=1400");
  --experience-bg: url("https://unsplash.com/photos/pU-TZ3rRVoM/download?force=true&w=1400");
}

body[data-motion="soft"] {
  --hero-speed: 66s;
  --ticker-speed: 34s;
  --visual-speed: 38s;
  --photo-speed: 26s;
}

body[data-motion="cinematic"] {
  --hero-speed: 54s;
  --ticker-speed: 19s;
  --visual-speed: 22s;
  --photo-speed: 14s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Tajawal", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(25, 190, 214, 0.12), transparent 26%),
    radial-gradient(circle at 88% 52%, rgba(7, 89, 189, 0.09), transparent 28%),
    var(--paper);
  line-height: 1.7;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body[data-lang="fr"] {
  direction: ltr;
}

body.is-intro-running {
  overflow: hidden;
}

body.is-intro-running .site-header,
body.is-intro-running .ad-ticker,
body.is-intro-running .hero-text,
body.is-intro-running .hero-highlights,
body.is-intro-running .hero-showcase,
body.is-intro-running .hero-offer-card,
body.is-intro-running .hero-brand-marquee {
  opacity: 0;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at center, #071324 0%, #02060d 100%);
  transition: opacity 1000ms ease-in-out, visibility 1000ms ease-in-out;
}

.site-intro::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background-image:
    radial-gradient(circle at 40% 40%, rgba(0, 150, 199, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(72, 149, 239, 0.15) 0%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.28), transparent 2px);
  background-size: cover, cover, 40px 40px;
  opacity: 0.78;
  animation: introGalaxyShift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.site-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(2, 6, 13, 0.45) 72%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 50%, transparent 58%);
  opacity: 0.8;
  pointer-events: none;
}

.site-intro.is-leaving,
.site-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-galaxy {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.34;
}

.intro-galaxy-one {
  width: min(520px, 72vw);
  aspect-ratio: 1;
  top: 18%;
  right: 13%;
  background: rgba(25, 190, 214, 0.36);
  animation: introNebulaFloat 8s ease-in-out infinite alternate;
}

.intro-galaxy-two {
  width: min(420px, 64vw);
  aspect-ratio: 1;
  left: 12%;
  bottom: 16%;
  background: rgba(72, 149, 239, 0.28);
  animation: introNebulaFloat 10s 400ms ease-in-out infinite alternate-reverse;
}

.intro-brand-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-family: "Tajawal", "Helvetica Neue", Arial, sans-serif;
}

.intro-brand-name {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 8.2vw, 5.7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: clamp(7px, 1.35vw, 14px);
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: introVideoText 4.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.intro-sub-title {
  margin-top: 15px;
  padding-left: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.72rem, 1.8vw, 1rem);
  font-weight: 400;
  letter-spacing: clamp(5px, 1.3vw, 11px);
  text-transform: uppercase;
  opacity: 0;
  animation: introVideoSubtitle 4.4s 300ms cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes introGalaxyShift {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(-5%, -5%) scale(1.1) rotate(5deg);
  }
}

@keyframes introNebulaFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(28px, -24px, 0) scale(1.08);
  }
}

@keyframes introVideoText {
  0% {
    opacity: 0;
    transform: scale(0.92);
    filter: blur(4px);
  }
  20% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  80% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
    filter: blur(2px);
  }
}

@keyframes introVideoSubtitle {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(1px);
  }
}

.intro-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(380px, 78vw);
  gap: 26px;
  z-index: 6;
  transform-style: preserve-3d;
  animation:
    introStageIn 960ms cubic-bezier(0.2, 0.9, 0.22, 1) both,
    introStageBreathe 1.4s 960ms ease-in-out infinite alternate;
}

.site-intro.is-leaving .intro-stage {
  animation: introStageOut 460ms cubic-bezier(0.7, 0, 0.3, 1) both;
}

.intro-light {
  position: absolute;
  width: min(420px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(25, 190, 214, 0.22), transparent 58%),
    conic-gradient(from 90deg, transparent, rgba(217, 160, 40, 0.42), transparent, rgba(25, 190, 214, 0.36), transparent);
  filter: blur(0.2px);
  opacity: 0.82;
  animation: introHalo 1.8s ease-in-out forwards;
}

.intro-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  width: min(286px, 64vw);
  min-height: 176px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transform: translateZ(70px);
}

.intro-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.35) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: introCardSweep 1.35s 0.32s ease-in-out forwards;
}

.intro-logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 230px;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.28));
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation: introLogoReveal 780ms 240ms cubic-bezier(0.2, 0.9, 0.22, 1) forwards;
}

.intro-progress {
  position: relative;
  display: block;
  width: min(286px, 64vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.intro-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform-origin: right center;
  animation: introProgress 1.55s cubic-bezier(0.2, 0.9, 0.22, 1) forwards;
}

@keyframes introStageIn {
  0% {
    opacity: 0;
    transform: rotateX(10deg) translateY(34px) translateZ(-70px) scale(0.94);
  }
  65% {
    opacity: 1;
    transform: rotateX(0) translateY(0) translateZ(12px) scale(1.018);
  }
  100% {
    opacity: 1;
    transform: rotateX(0) translateY(0) translateZ(0) scale(1);
  }
}

@keyframes introStageBreathe {
  from {
    transform: translateY(0) translateZ(0) scale(1);
  }
  to {
    transform: translateY(-5px) translateZ(18px) scale(1.012);
  }
}

@keyframes introStageOut {
  to {
    opacity: 0;
    transform: rotateX(-8deg) translateY(-28px) translateZ(60px) scale(1.04);
    filter: blur(6px);
  }
}

@keyframes introPanelTopIn {
  from {
    transform: translateY(-34%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes introPanelBottomIn {
  from {
    transform: translateY(34%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes introPanelTopOut {
  to {
    transform: translateY(-110%) skewY(-4deg);
  }
}

@keyframes introPanelBottomOut {
  to {
    transform: translateY(110%) skewY(-4deg);
  }
}

@keyframes introSweep {
  to {
    transform: translateX(30%);
  }
}

@keyframes introHalo {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(44deg);
    opacity: 0.82;
  }
}

@keyframes introCardSweep {
  to {
    transform: translateX(120%);
  }
}

@keyframes introLogoReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

bdi,
.phone-number {
  direction: ltr;
  unicode-bidi: isolate;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 12px max(20px, calc((100vw - 1160px) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 32px rgba(6, 29, 63, 0.08);
  backdrop-filter: blur(18px);
}

body.is-intro-running .site-header,
body.is-intro-running .ad-ticker,
body.is-intro-running .hero-text,
body.is-intro-running .hero-highlights,
body.is-intro-running .hero-showcase,
body.is-intro-running .hero-offer-card,
body.is-intro-running .hero-brand-marquee {
  opacity: 0;
}

body.is-site-ready .site-header {
  animation: pageHeaderIn 720ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

body.is-site-ready .ad-ticker {
  animation: introSurfaceIn 760ms 120ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

body.is-site-ready .hero-brand-marquee {
  animation: heroMarqueeReveal 900ms 500ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

body.is-site-ready .hero .eyebrow {
  animation: introTextIn 620ms 220ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

body.is-site-ready .hero h1 {
  animation: introTitleIn 920ms 290ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

body.is-site-ready .hero-copy {
  animation: introTextIn 720ms 420ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

body.is-site-ready .hero-actions {
  animation: introTextIn 720ms 540ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

body.is-site-ready .hero-offer-card {
  animation:
    heroEnter3d 900ms 480ms cubic-bezier(0.2, 0.9, 0.22, 1) both,
    offerFloat 6.4s 1.35s ease-in-out infinite;
}

body.is-site-ready .hero-slider {
  animation: heroBackdropIn 1.35s cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

@keyframes pageHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introSurfaceIn {
  from {
    opacity: 0;
    transform: perspective(900px) rotateX(10deg) translateY(26px) translateZ(-36px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateX(0) translateY(0) translateZ(0);
    filter: blur(0);
  }
}

@keyframes introTitleIn {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes introTextIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroBackdropIn {
  from {
    opacity: 0.72;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 88px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--blue-950);
  font-weight: 800;
  font-size: 0.94rem;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-700);
  background: rgba(7, 89, 189, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: auto;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-icons a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  box-shadow: 0 10px 20px rgba(7, 89, 189, 0.18);
  font-weight: 900;
  font-size: 0.82rem;
  animation: socialDance 3s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  transform: translateY(-4px) scale(1.08) rotate(-6deg);
  box-shadow: 0 16px 28px rgba(7, 89, 189, 0.26);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-icons .facebook {
  background: #1877f2;
  animation-delay: 0.18s;
}

.social-icons .facebook svg,
.social-icons .tiktok svg {
  fill: currentColor;
  stroke: none;
}

.social-icons .instagram {
  background:
    radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 42%, transparent 43%),
    linear-gradient(135deg, #405de6, #833ab4 42%, #e1306c 72%, #f77737);
}

.social-icons .tiktok {
  background: linear-gradient(135deg, #111827, #19bed6);
  animation-delay: 0.36s;
}

@keyframes socialDance {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(-3px) rotate(3deg);
  }
  60% {
    transform: translateY(1px) rotate(-2deg);
  }
}

.flag-badge {
  width: 42px;
  height: 28px;
  object-fit: cover;
  border: 2px solid #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(6, 29, 63, 0.16);
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.language-switch button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--blue-950);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-950);
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 91svh;
  max-width: 100%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 38%;
  padding: 128px 0 84px;
  overflow: hidden;
  contain: paint;
  color: #ffffff;
  background: var(--blue-950);
}

.hero-slider,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  inset: -2%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: heroFade var(--hero-speed) infinite;
  transform: scale(1.06);
}

.hero-bg-one {
  background-image: var(--hero-bg-one);
}

.hero-bg-two {
  background-image: var(--hero-bg-two);
  animation-delay: 6s;
}

.hero-bg-three {
  background-image: var(--hero-bg-three);
  animation-delay: 12s;
}

.hero-bg-four {
  background-image: var(--hero-bg-four);
  animation-delay: 18s;
}

.hero-bg-five {
  background-image: var(--hero-bg-five);
  animation-delay: 24s;
}

.hero-bg-six {
  background-image: var(--hero-bg-six);
  animation-delay: 30s;
}

.hero-bg-seven {
  background-image: var(--hero-bg-seven);
  animation-delay: 36s;
}

.hero-bg-eight {
  background-image: var(--hero-bg-eight);
  animation-delay: 42s;
}

.hero-bg-nine {
  background-image: var(--hero-bg-nine);
  animation-delay: 48s;
}

.hero-shade {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(25, 190, 214, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(6, 29, 63, 0.95) 0%, rgba(7, 47, 105, 0.86) 43%, rgba(22, 135, 238, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 29, 63, 0.18), rgba(6, 29, 63, 0.92));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(244, 248, 253, 0), var(--paper));
  pointer-events: none;
}

@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.08) translateX(0);
  }
  5%,
  18% {
    opacity: 1;
  }
  26% {
    opacity: 0;
    transform: scale(1.14) translateX(-18px);
  }
}

.ad-ticker {
  position: relative;
  z-index: 3;
  width: var(--container);
  max-width: calc(100vw - 40px);
  margin: 0 auto 28px;
  overflow: hidden;
  contain: layout paint;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  animation: heroEnter3d 900ms 140ms both;
}

.ad-ticker div {
  display: flex;
  gap: 42px;
  width: max-content;
  min-width: 100%;
  padding: 10px 18px;
  animation: tickerMove var(--ticker-speed) linear infinite;
  will-change: transform;
}

.ad-ticker span {
  white-space: nowrap;
  font-weight: 900;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

body[data-lang="fr"] .ad-ticker div {
  animation-name: tickerMoveFr;
}

@keyframes tickerMoveFr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-brand-marquee {
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100svh - clamp(90px, 12vw, 142px));
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.hero-brand-marquee div {
  display: flex;
  align-items: flex-end;
  gap: clamp(42px, 6vw, 86px);
  width: max-content;
  min-width: 200%;
  animation: heroBrandMarquee 34s linear infinite;
  will-change: transform;
}

.hero-brand-marquee span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(5.8rem, 14vw, 14rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 24px 54px rgba(3, 8, 13, 0.18);
}

@keyframes heroBrandMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes heroMarqueeReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 0.72;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
}

.hero-text {
  animation: heroEnter3d 960ms 260ms both;
}

.hero-text,
.hero-offer-card,
.umrah-visuals {
  transform-style: preserve-3d;
}

@keyframes heroEnter3d {
  from {
    opacity: 0;
    transform: perspective(900px) rotateX(12deg) translateY(34px) translateZ(-40px);
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateX(0) translateY(0) translateZ(0);
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.55rem, 6.5vw, 5.15rem);
  line-height: 1.07;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover,
.btn:focus-visible {
  transform: perspective(700px) translateY(-4px) rotateX(5deg);
}

.btn:active {
  transform: perspective(700px) translateY(1px) rotateX(0deg) scale(0.98);
}

.btn-3d {
  box-shadow: 0 16px 32px rgba(7, 89, 189, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-glyph {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: translateZ(22px);
}

.btn-glyph::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  clip-path: polygon(0 42%, 58% 42%, 58% 16%, 100% 50%, 58% 84%, 58% 58%, 0 58%);
  animation: glyphNudge 1.6s ease-in-out infinite;
}

body[dir="ltr"] .btn-glyph::before,
html[dir="ltr"] .btn-glyph::before {
  transform: scaleX(-1);
}

@keyframes glyphNudge {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: -3px 0;
  }
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  box-shadow: 0 16px 32px rgba(7, 89, 189, 0.28);
  animation: buttonPulse 2.8s ease-in-out infinite;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 34px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(18deg);
  animation: buttonShine 3.4s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 16px 32px rgba(7, 89, 189, 0.28);
  }
  50% {
    box-shadow: 0 20px 45px rgba(25, 190, 214, 0.38);
  }
}

@keyframes buttonShine {
  0% {
    transform: translateX(-80px) rotate(18deg);
  }
  52%,
  100% {
    transform: translateX(240px) rotate(18deg);
  }
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

.hero-offer-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: heroEnter3d 1000ms 420ms both, offerFloat 6.4s 1.1s ease-in-out infinite;
}

@keyframes offerFloat {
  0%,
  100% {
    transform: perspective(980px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0) translateZ(22px);
  }
  50% {
    transform: perspective(980px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-9px) translateZ(34px);
  }
}

.hero-offer-card img {
  height: 340px;
  object-fit: cover;
  object-position: top center;
}

.hero-offer-card div {
  padding: 18px;
}

.hero-offer-card p,
.hero-offer-card h2,
.hero-offer-card span,
.hero-offer-card strong {
  display: block;
  margin: 0;
}

.hero-offer-card p {
  color: var(--gold);
  font-weight: 900;
}

.hero-offer-card h2 {
  margin-top: 4px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.hero-offer-card span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-offer-card strong {
  margin-top: 12px;
  color: #ffffff;
  font-size: 1.3rem;
}

.hero-offer-card .hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 1.08rem;
}

.hero-offer-card .hero-price bdi {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-offer-card .hero-price span {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero {
  min-height: 100svh;
  --parallax-x: 0px;
  --parallax-y: 0px;
  padding: 132px 0 64px;
  isolation: isolate;
}

.hero-slider {
  transform: translate3d(calc(var(--parallax-x) * -0.28), calc(var(--parallax-y) * -0.22), 0) scale(1.012);
  transition: transform 220ms ease-out;
}

.hero-shade {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(110, 205, 250, 0.3), transparent 30%),
    linear-gradient(90deg, rgba(3, 8, 13, 0.94) 0%, rgba(4, 25, 48, 0.86) 45%, rgba(21, 91, 213, 0.32) 100%),
    linear-gradient(180deg, rgba(3, 8, 13, 0.08), rgba(3, 8, 13, 0.92));
}

.hero-cinematic,
.hero-cinematic span {
  position: absolute;
  pointer-events: none;
}

.hero-cinematic {
  inset: 0;
  z-index: 1;
  overflow: hidden;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 220ms ease-out;
}

.cinematic-grid {
  inset: 13% 5% 15%;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 62% 42%, #000 0 36%, transparent 68%);
  animation: cinematicGridDrift 18s linear infinite;
}

.cinematic-beam {
  width: 48vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 205, 250, 0.72), transparent);
  filter: drop-shadow(0 0 12px rgba(110, 205, 250, 0.34));
  transform-origin: center;
  animation: cinematicBeam 7s ease-in-out infinite;
}

.cinematic-beam-one {
  top: 31%;
  left: 44%;
  rotate: -18deg;
}

.cinematic-beam-two {
  right: 50%;
  bottom: 25%;
  rotate: 22deg;
  animation-delay: -3.5s;
}

.cinematic-orbit {
  width: 34vw;
  min-width: 280px;
  max-width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 34px rgba(110, 205, 250, 0.08);
  animation: cinematicOrbit 16s linear infinite;
}

.cinematic-orbit-one {
  top: 15%;
  right: 7%;
}

.cinematic-orbit-two {
  right: 28%;
  bottom: -18%;
  opacity: 0.45;
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes cinematicGridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 144px 72px;
  }
}

@keyframes cinematicBeam {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-28px) scaleX(0.7);
  }
  48% {
    opacity: 0.82;
    transform: translateX(36px) scaleX(1);
  }
}

@keyframes cinematicOrbit {
  to {
    rotate: 360deg;
  }
}

.hero-content {
  z-index: 4;
  grid-template-columns: minmax(430px, 0.82fr) minmax(540px, 610px);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
  min-height: calc(100svh - 250px);
  perspective: 1200px;
}

.hero-text {
  position: relative;
  max-width: 520px;
  padding-top: 18px;
  padding-bottom: 12px;
}

.hero h1 {
  max-width: 500px;
  font-size: clamp(2.05rem, 3.65vw, 3.65rem);
  line-height: 1.12;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.hero-copy {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.85;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 500px;
  margin-top: 20px;
}

.hero-highlights span {
  display: grid;
  gap: 2px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-highlights strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.1;
}

.hero-highlights small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-showcase {
  position: relative;
  display: grid;
  align-items: center;
  align-content: center;
  gap: 18px;
  min-height: 560px;
  direction: ltr;
  transform-style: preserve-3d;
  isolation: isolate;
  --carousel-bg: #0a424c;
}

.hero-carousel-window {
  position: relative;
  width: min(100%, 660px);
  min-height: 470px;
  margin-inline: auto;
  overflow: hidden;
  direction: ltr;
  perspective: 1200px;
  border-radius: calc(var(--radius) + 2px);
}

.hero-carousel-window::before {
  content: "";
  position: absolute;
  inset: 28px 24px 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--carousel-bg) 86%, #ffffff), var(--carousel-bg));
  opacity: 0.42;
  filter: blur(26px);
  transition: background 700ms ease, opacity 700ms ease;
  pointer-events: none;
}

.hero-carousel-window::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 9;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(3, 8, 13, 0.22);
  pointer-events: none;
  animation: carouselLoader 5s cubic-bezier(0.2, 0.9, 0.22, 1) infinite;
}

.hero-carousel-track {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 470px;
  padding: 16px 0;
  transition: transform 680ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-carousel-card {
  position: relative;
  flex: 0 0 350px;
  height: 432px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(var(--radius) + 2px);
  color: #ffffff;
  background: #071d2f;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  opacity: 0.58;
  transform: scale(0.82) translateY(8px);
  transform-origin: center;
  cursor: pointer;
  transition:
    transform 680ms cubic-bezier(0.25, 1, 0.5, 1),
    opacity 680ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.hero-carousel-card.is-active {
  z-index: 6;
  opacity: 1;
  transform: scale(1.04) translateY(0);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.hero-carousel-card:hover,
.hero-carousel-card:focus-visible {
  opacity: 1;
  border-color: rgba(25, 190, 214, 0.72);
  outline: none;
}

.hero-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) saturate(1.04);
  transition: transform 680ms cubic-bezier(0.25, 1, 0.5, 1), filter 240ms ease;
}

.hero-carousel-card.is-active img,
.hero-carousel-card:hover img,
.hero-carousel-card:focus-visible img {
  filter: brightness(0.9) saturate(1.12);
  transform: scale(1.035);
}

.hero-carousel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 13, 0.1) 0%, rgba(3, 8, 13, 0.12) 42%, rgba(3, 8, 13, 0.86) 100%),
    linear-gradient(90deg, rgba(25, 190, 214, 0.22), transparent 46%);
  pointer-events: none;
}

.hero-carousel-tag {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  background: #ff3b30;
}

.hero-carousel-tag-umrah,
.hero-carousel-tag-trips {
  background: #ff9500;
}

.hero-carousel-tag-tickets {
  background: #19bed6;
}

.hero-carousel-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 26px;
  direction: rtl;
  text-align: right;
}

body[data-lang="fr"] .hero-carousel-content {
  direction: ltr;
  text-align: left;
}

.hero-carousel-content strong {
  max-width: 280px;
  font-size: 1.48rem;
  line-height: 1.16;
}

.hero-carousel-content small {
  max-width: 285px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.5;
}

.hero-carousel-price {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-carousel-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-carousel-more::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 52%, currentColor 0 60%, transparent 0) center / 9px 9px no-repeat;
}

.hero-showcase.is-rolling .hero-carousel-card {
  animation: none;
}

@keyframes carouselCardIn {
  from {
    opacity: 0.64;
  }
  to {
    opacity: 1;
  }
}

@keyframes carouselLoader {
  0%,
  100% {
    opacity: 0;
    transform: translate(-74px, -50%) scale(0.72);
  }
  18%,
  58% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
  }
  82% {
    opacity: 0.38;
    transform: translate(58px, -50%) scale(0.72);
  }
}

.hero-offer-card {
  position: relative;
  z-index: 5;
  width: min(100%, 430px);
  margin-inline-start: 0;
  direction: rtl;
  text-align: right;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(3, 8, 13, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  transform-origin: center;
}

body[data-lang="fr"] .hero-offer-card,
body[data-lang="fr"] .offer-preview-card {
  direction: ltr;
  text-align: left;
}

.offer-preview-stack {
  position: absolute;
  top: 22px;
  right: auto;
  bottom: auto;
  left: clamp(270px, 47%, 310px);
  z-index: 6;
  width: min(470px, calc(100% - 300px));
  height: 380px;
  pointer-events: none;
}

.offer-preview-stack::after {
  content: "";
  position: absolute;
  top: 66px;
  left: 104px;
  z-index: 8;
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(3, 8, 13, 0.22);
  opacity: 0.92;
  pointer-events: none;
  animation: carouselRing 5s cubic-bezier(0.2, 0.9, 0.22, 1) infinite;
}

.offer-preview-card {
  position: absolute;
  top: var(--preview-top, 0);
  left: var(--preview-left, 0);
  right: auto;
  z-index: var(--preview-layer, 1);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  width: min(var(--deck-card-width), calc(100% - var(--preview-left, 0px)));
  min-height: 292px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
  direction: rtl;
  text-align: right;
  background:
    linear-gradient(180deg, rgba(3, 8, 13, 0.06), rgba(3, 8, 13, 0.78)),
    var(--preview-bg),
    linear-gradient(135deg, rgba(6, 29, 63, 0.84), rgba(22, 135, 238, 0.32));
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(25, 190, 214, 0.14);
  backdrop-filter: blur(12px);
  opacity: var(--preview-opacity, 0.42);
  transform: translate3d(0, 0, var(--preview-z, 0)) rotate(var(--preview-rotate, 0deg))
    scale(var(--preview-scale, 1));
  transform-origin: bottom center;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, filter 220ms ease, opacity 220ms ease;
}

.offer-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 190, 214, 0.18), transparent 38%),
    linear-gradient(180deg, transparent 22%, rgba(3, 8, 13, 0.86));
  pointer-events: none;
}

.offer-preview-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: calc(var(--radius) - 2px);
  opacity: 0.58;
  pointer-events: none;
}

.offer-preview-card:hover,
.offer-preview-card:focus-visible {
  border-color: rgba(25, 190, 214, 0.62);
  filter: saturate(1.14) brightness(1.06);
  opacity: 1;
  transform: translate3d(0, -8px, var(--preview-z, 0)) rotate(calc(var(--preview-rotate, 0deg) * 0.55))
    scale(calc(var(--preview-scale, 1) + 0.025));
  outline: none;
}

.offer-preview-card > * {
  position: relative;
  z-index: 1;
}

.offer-preview-media {
  display: block;
  width: 46px;
  height: 46px;
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    var(--preview-bg);
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.offer-preview-content {
  display: grid;
  gap: 5px;
  align-self: end;
}

.offer-preview-kicker {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
}

.offer-preview-card strong {
  max-width: 138px;
  line-height: 1.18;
  font-size: 0.92rem;
}

.offer-preview-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
}

.offer-preview-cue {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.offer-preview-cue::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translate(-62%, -50%) rotate(45deg);
}

.offer-preview-card-one {
  --preview-layer: 1;
  --preview-left: 0px;
  --preview-top: 48px;
  --preview-opacity: 0.74;
  --preview-scale: 0.84;
  --preview-rotate: -2deg;
}

.offer-preview-card-two {
  --preview-layer: 2;
  --preview-left: var(--deck-gap);
  --preview-top: 18px;
  --preview-opacity: 0.9;
  --preview-scale: 0.93;
  --preview-rotate: -0.8deg;
}

.offer-preview-card-three {
  --preview-layer: 3;
  --preview-left: calc(var(--deck-gap) * 2);
  --preview-top: 0px;
  --preview-opacity: 0.98;
  --preview-scale: 1;
  --preview-rotate: 0.8deg;
}

.hero-showcase.is-stacking .offer-preview-card {
  animation: previewDeckPulse 4.6s cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

.hero-showcase.is-stacking .offer-preview-card-one {
  animation-delay: 0.08s;
}

.hero-showcase.is-stacking .offer-preview-card-two {
  animation-delay: 0.24s;
}

.hero-showcase.is-stacking .offer-preview-card-three {
  animation-delay: 0.4s;
}

@keyframes previewDeckPulse {
  0% {
    opacity: 0;
    transform: translateX(54px) rotate(calc(var(--preview-rotate, 0deg) + 3deg))
      scale(calc(var(--preview-scale) * 0.9));
    clip-path: inset(0 100% 0 0 round var(--radius));
  }
  18%,
  72% {
    opacity: var(--preview-opacity);
    transform: translateX(0) rotate(var(--preview-rotate, 0deg)) scale(var(--preview-scale));
    clip-path: inset(0 0 0 0 round var(--radius));
  }
  100% {
    opacity: calc(var(--preview-opacity) * 0.86);
    transform: translateX(-14px) rotate(var(--preview-rotate, 0deg)) scale(var(--preview-scale));
    clip-path: inset(0 0 0 0 round var(--radius));
  }
}

@keyframes carouselRing {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-32px) scale(0.74);
  }
  16%,
  58% {
    opacity: 0.92;
    transform: translateX(0) scale(1);
  }
  82% {
    opacity: 0.42;
    transform: translateX(92px) scale(0.72);
  }
}

.hero-offer-card img {
  height: 332px;
  color: transparent;
  font-size: 0;
  background:
    linear-gradient(145deg, rgba(6, 29, 63, 0.72), rgba(25, 190, 214, 0.16)),
    var(--hero-bg-one);
  background-position: center;
  background-size: cover;
  filter: saturate(1.05) contrast(1.04);
  cursor: pointer;
  transition: filter 220ms ease, transform 220ms ease;
}

.hero-offer-card img:hover,
.hero-offer-card img:focus-visible {
  filter: saturate(1.12) contrast(1.07) brightness(1.04);
  transform: scale(1.018);
  outline: 3px solid rgba(25, 190, 214, 0.72);
  outline-offset: -3px;
}

.hero-offer-card div {
  padding: 20px;
}

.hero-offer-card.is-changing {
  animation: offerSwap 360ms cubic-bezier(0.2, 0.9, 0.22, 1);
}

@keyframes offerSwap {
  0% {
    opacity: 0.72;
    transform: perspective(900px) translateY(10px) scale(0.98);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: perspective(900px) translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-offer-switcher {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  width: min(100%, 560px);
  margin-inline: auto;
}

.hero-offer-switcher button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-offer-switcher button:hover,
.hero-offer-switcher button:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.hero-offer-switcher button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  box-shadow: 0 14px 32px rgba(7, 89, 189, 0.26);
}

body.is-site-ready .hero-offer-switcher {
  animation: introTextIn 720ms 780ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

.destination-stack {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.destination-card {
  position: absolute;
  z-index: 7;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(276px, 82%);
  min-height: 94px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.destination-card img {
  width: 82px;
  height: 74px;
  border-radius: calc(var(--radius) - 2px);
  color: transparent;
  font-size: 0;
  background:
    linear-gradient(145deg, rgba(6, 29, 63, 0.42), rgba(25, 190, 214, 0.16)),
    var(--hero-bg-two);
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

.destination-card div {
  display: grid;
  gap: 3px;
}

.destination-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.destination-card strong {
  line-height: 1.15;
  font-size: 1.08rem;
}

.destination-card-one {
  top: 5%;
  right: auto;
  left: 58%;
  animation: destinationFloat 6.4s ease-in-out infinite;
}

.destination-card-two {
  top: 39%;
  left: -58px;
  animation: destinationFloat 7s -1.8s ease-in-out infinite;
}

.destination-card-three {
  right: auto;
  left: 52%;
  bottom: -12px;
  animation: destinationFloat 7.5s -3.4s ease-in-out infinite;
}

body[data-lang="fr"] .destination-card {
  direction: ltr;
}

@keyframes destinationFloat {
  0%,
  100% {
    transform: perspective(900px) translateY(0) translateZ(28px) rotateX(0);
  }
  50% {
    transform: perspective(900px) translateY(-10px) translateZ(42px) rotateX(3deg);
  }
}

body.is-site-ready .hero-highlights {
  animation: introTextIn 720ms 660ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

body.is-site-ready .destination-card {
  animation-name: destinationIn, destinationFloat;
  animation-duration: 760ms, 7s;
  animation-timing-function: cubic-bezier(0.2, 0.9, 0.22, 1), ease-in-out;
  animation-fill-mode: both, none;
  animation-iteration-count: 1, infinite;
}

body.is-site-ready .destination-card-one {
  animation-delay: 760ms, 1.55s;
}

body.is-site-ready .destination-card-two {
  animation-delay: 900ms, 1.7s;
}

body.is-site-ready .destination-card-three {
  animation-delay: 1040ms, 1.85s;
}

@keyframes destinationIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0;
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 28px -24px auto auto;
  z-index: -1;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(7, 89, 189, 0.12);
  border-radius: 50%;
  background: rgba(25, 190, 214, 0.05);
  filter: blur(0.2px);
}

.offers-section::after,
.services-section::after,
.process-section::after,
.social-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  inset: 26px calc(50% - 50vw);
  z-index: -2;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  animation: scenicDrift 18s ease-in-out infinite alternate;
}

.offers-section::after {
  background-image:
    linear-gradient(90deg, rgba(244, 248, 253, 0.98), rgba(244, 248, 253, 0.7)),
    url("https://unsplash.com/photos/sj7NbWUqWio/download?force=true&w=1400");
}

.services-section::after {
  background-image:
    linear-gradient(90deg, rgba(244, 248, 253, 0.96), rgba(229, 245, 255, 0.7)),
    url("https://unsplash.com/photos/qgpqinXjtbY/download?force=true&w=1400");
  animation-delay: -5s;
}

.process-section::after {
  background-image:
    linear-gradient(90deg, rgba(244, 248, 253, 0.97), rgba(244, 248, 253, 0.72)),
    url("https://unsplash.com/photos/xrLejyt9BCo/download?force=true&w=1400");
  animation-delay: -9s;
}

.social-section::after {
  background-image:
    linear-gradient(90deg, rgba(244, 248, 253, 0.96), rgba(229, 245, 255, 0.72)),
    url("https://unsplash.com/photos/9om7Wwizt1E/download?force=true&w=1400");
  animation-delay: -12s;
}

.contact-section::after {
  background-image:
    linear-gradient(90deg, rgba(244, 248, 253, 0.98), rgba(244, 248, 253, 0.74)),
    url("https://unsplash.com/photos/1fjiX6PxVK4/download?force=true&w=1400");
  animation-delay: -15s;
}

@keyframes scenicDrift {
  from {
    background-position: 48% 50%;
    transform: scale(1);
  }
  to {
    background-position: 55% 50%;
    transform: scale(1.035);
  }
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 660px;
}

.section-heading h2,
.process-band h2,
.contact-info h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.12rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-info p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.umrah-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 22px;
  align-items: stretch;
}

.umrah-visuals {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
  transition: transform 260ms ease;
}

.umrah-visuals:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-4px);
}

.umrah-visuals::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(7, 89, 189, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 248, 255, 0.72)),
    url("https://unsplash.com/photos/IAwnp88Fz8Y/download?force=true&w=1800");
  background-position: center;
  background-size: cover;
  opacity: 0.72;
}

.umrah-section {
  isolation: isolate;
}

.umrah-section::after {
  content: "";
  position: absolute;
  inset: 42px auto auto -80px;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 89, 189, 0.13), transparent 66%);
}

.umrah-poster,
.umrah-details,
.program-card,
.service-card,
.process-band,
.contact-form,
.contact-list li,
.social-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(6, 29, 63, 0.07);
}

.umrah-poster {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border-color: rgba(7, 89, 189, 0.16);
  box-shadow: 0 24px 58px rgba(6, 29, 63, 0.13);
}

.umrah-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 29, 63, 0) 48%, rgba(6, 29, 63, 0.38) 100%),
    linear-gradient(90deg, rgba(6, 29, 63, 0.18), rgba(25, 190, 214, 0.05));
}

.umrah-poster::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  z-index: 2;
  width: 90px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: rotate(17deg);
  animation: photoSweep 5.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes photoSweep {
  0%,
  45% {
    transform: translateX(0) rotate(17deg);
  }
  80%,
  100% {
    transform: translateX(760px) rotate(17deg);
  }
}

.umrah-poster img {
  height: 100%;
  max-height: 820px;
  object-fit: cover;
  object-position: top center;
}

.umrah-photo-slider img {
  position: absolute;
  inset: 0;
  max-height: none;
  opacity: 0;
  animation: umrahPhotoFade var(--photo-speed) ease-in-out infinite;
}

.umrah-photo-slider img:nth-child(2) {
  animation-delay: 6s;
}

.umrah-photo-slider img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes umrahPhotoFade {
  0%,
  32% {
    opacity: 1;
    transform: scale(1.03);
  }
  42%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.umrah-photo-strip {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 10px;
}

.umrah-photo-strip img {
  aspect-ratio: 1.28;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(6, 29, 63, 0.1);
  filter: saturate(1.04) contrast(1.02);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.umrah-photo-strip img:hover {
  transform: perspective(620px) translateY(-6px) rotateX(5deg);
  box-shadow: 0 20px 38px rgba(6, 29, 63, 0.16);
}

.umrah-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(25, 190, 214, 0.28), transparent 36%),
    linear-gradient(150deg, var(--blue-950), var(--blue-700));
}

.date-grid,
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.date-grid div,
.feature-list span,
.price-table div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.starting-price {
  display: grid;
  grid-template-columns: auto max-content auto;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--blue-950);
  background: linear-gradient(135deg, #ffffff, #e8f8ff);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  animation: priceGlow 3.8s ease-in-out infinite;
}

@keyframes priceGlow {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  }
  50% {
    box-shadow: 0 24px 50px rgba(25, 190, 214, 0.28);
  }
}

.starting-price span {
  color: var(--blue-700);
  font-weight: 900;
}

.starting-price strong {
  color: var(--blue-950);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.date-grid div {
  padding: 14px;
}

.date-grid span,
.date-grid strong,
.date-grid small {
  display: block;
}

.date-grid span,
.date-grid small {
  color: rgba(255, 255, 255, 0.76);
}

.date-grid strong {
  margin-top: 3px;
  font-size: 1.22rem;
}

.feature-list span {
  padding: 12px;
  font-weight: 900;
}

.price-table {
  display: grid;
  gap: 10px;
}

.price-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  transition: transform 180ms ease, background 180ms ease;
}

.price-table div:hover {
  transform: translateX(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.price-table span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.price-table strong {
  font-size: 1.22rem;
  white-space: nowrap;
}

.price-table .room-price {
  direction: ltr;
  unicode-bidi: isolate;
}

.price-table .room-price small {
  font-size: 0.78em;
  font-weight: 900;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.category-tabs button {
  min-height: 42px;
  border: 1px solid rgba(7, 89, 189, 0.18);
  border-radius: var(--radius);
  padding: 9px 14px;
  color: var(--blue-950);
  background: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.category-tabs button.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.program-card img {
  height: 250px;
  object-fit: cover;
  object-position: top center;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(6, 29, 63, 0.16);
}

.program-body {
  padding: 18px;
}

.program-body p {
  margin: 0 0 6px;
  color: var(--blue-700);
  font-weight: 900;
}

.program-body h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.35;
}

.program-body > span,
.offer-meta {
  color: var(--muted);
}

.offer-meta {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  font-size: 0.95rem;
}

.offer-price {
  display: grid;
  gap: 8px;
  width: fit-content;
  margin-top: 14px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  font-weight: 900;
}

.offer-price strong {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.offer-price strong span:last-child {
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
}

.empty-offers {
  grid-column: 1 / -1;
  padding: 26px;
  border: 1px dashed rgba(7, 89, 189, 0.28);
  border-radius: var(--radius);
  color: var(--muted);
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 218px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -48px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(25, 190, 214, 0.1);
  transition: transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(6, 29, 63, 0.14);
}

.service-card:hover::after {
  transform: scale(1.35);
}

.featured-service {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--blue-850), var(--blue-500));
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  border-radius: 50%;
  font-weight: 900;
}

.featured-service .service-icon {
  background: rgba(255, 255, 255, 0.16);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.featured-service p {
  color: rgba(255, 255, 255, 0.86);
}

.process-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 247, 255, 0.92)),
    url("https://unsplash.com/photos/sj7NbWUqWio/download?force=true&w=1800");
  background-position: center;
  background-size: cover;
}

.visual-strip {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 118px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  contain: layout paint;
  padding: 20px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 29, 63, 0.92), rgba(7, 89, 189, 0.86)),
    var(--visual-strip-bg);
  background-position: center;
  background-size: cover;
}

.visual-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 29, 63, 0.96), rgba(7, 89, 189, 0.58), rgba(25, 190, 214, 0.34)),
    var(--hero-bg-two);
  background-position: center;
  background-size: cover;
  animation: scenicDrift 16s ease-in-out infinite alternate;
}

.visual-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  width: max-content;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  animation: visualTrack 28s linear infinite;
  animation-duration: var(--visual-speed);
  will-change: transform;
}

.visual-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

@keyframes visualTrack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

body[data-lang="fr"] .visual-track {
  animation-name: visualTrackFr;
}

@keyframes visualTrackFr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.experience-section {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  contain: paint;
  padding: 96px 0;
  color: #ffffff;
  background: var(--blue-950);
}

.experience-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 29, 63, 0.96), rgba(6, 29, 63, 0.68)),
    var(--experience-bg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.experience-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.experience-content h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.12rem);
  line-height: 1.18;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.experience-grid div {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.experience-grid strong,
.experience-grid span {
  display: block;
}

.experience-grid strong {
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
}

.experience-grid span {
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 900;
}

.steps-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  padding: 16px 58px 16px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 248, 253, 0.7);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.steps-list li:hover {
  transform: translateX(-6px);
  border-color: rgba(7, 89, 189, 0.26);
  background: rgba(255, 255, 255, 0.9);
}

.steps-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.steps-list strong,
.steps-list span {
  display: block;
}

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

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.social-grid .social-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--blue-950);
  background: #ffffff;
  font-weight: 900;
}

.social-grid .social-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-grid a:nth-child(2) .social-mark svg,
.social-grid a:nth-child(3) .social-mark svg {
  fill: currentColor;
  stroke: none;
}

.social-grid a {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-700));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.social-grid a:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(6, 29, 63, 0.18);
}

.social-grid span {
  color: var(--gold);
  font-weight: 900;
}

.social-grid strong {
  font-size: 1.28rem;
  direction: ltr;
  unicode-bidi: isolate;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 92px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.phone-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 18px;
}

.phone-panel a {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  box-shadow: 0 14px 28px rgba(7, 89, 189, 0.18);
  font-size: 1.1rem;
  font-weight: 900;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.phone-panel a:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(7, 89, 189, 0.24);
}

.contact-list li {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 12px;
  padding: 14px 16px;
}

.contact-list strong {
  color: var(--blue-950);
}

.contact-list a {
  color: var(--blue-700);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-section {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.54));
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(14, 32, 55, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(7, 89, 189, 0.12);
}

.form-submit {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue-700);
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .site-intro {
    display: none;
  }
}

.floating-actions {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 8px;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(21, 151, 103, 0.28);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: floatingCall 2.6s ease-in-out infinite;
}

.floating-actions a:hover {
  transform: perspective(620px) translateY(-5px) rotateX(6deg);
  box-shadow: 0 24px 48px rgba(21, 151, 103, 0.34);
}

@keyframes floatingCall {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

.floating-actions a:last-child {
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px max(20px, calc((100vw - 1160px) / 2));
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 900;
}

.site-footer > div {
  display: grid;
  gap: 10px;
}

.footer-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-phones a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: var(--radius);
  }

  .hero {
    padding-top: 116px;
  }

  .hero-content {
    min-height: auto;
    align-items: start;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-highlights {
    max-width: 100%;
  }

  .hero-showcase {
    min-height: auto;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-brand-marquee {
    top: calc(100svh - 110px);
    opacity: 0.56;
  }

  .hero-carousel-window {
    width: 100%;
    min-height: 430px;
  }

  .hero-carousel-track {
    min-height: 430px;
  }

  .hero-carousel-card {
    flex-basis: 320px;
    height: 390px;
  }

  .hero-offer-switcher {
    margin-inline: auto;
  }

  .destination-card-one {
    right: 5%;
  }

  .destination-card-two {
    left: 0;
  }

  .hero-content,
  .umrah-feature,
  .program-grid,
  .services-grid,
  .process-band,
  .experience-grid,
  .social-grid,
  .contact-section,
  .phone-panel {
    grid-template-columns: 1fr;
  }

  .hero-offer-card {
    max-width: 460px;
  }

  .umrah-poster {
    min-height: 560px;
  }

  .section {
    padding: 68px 0;
  }

  .experience-section {
    padding: 70px 0;
  }

  .experience-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 9px 14px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .brand-logo {
    width: 70px;
    height: 48px;
  }

  .brand strong {
    max-width: 148px;
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 6px;
    margin-inline-start: 0;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .language-switch button {
    min-width: 32px;
    min-height: 28px;
  }

  .flag-badge {
    width: 36px;
    height: 24px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 154px;
    padding-bottom: 56px;
  }

  .hero-cinematic {
    opacity: 0.58;
  }

  .hero h1 {
    max-width: min(288px, 100%);
    width: 100%;
    margin-inline: auto;
    font-size: clamp(1.45rem, 6.8vw, 1.75rem);
    line-height: 1.15;
    text-wrap: wrap;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .hero-content {
    gap: 28px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
    margin-top: 18px;
    max-width: min(318px, 100%);
    font-size: 0.98rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-highlights span {
    min-height: 58px;
    padding: 10px 12px;
  }

  .hero-showcase {
    display: grid;
    min-height: auto;
    gap: 10px;
    max-width: 100%;
  }

  .hero-brand-marquee {
    top: calc(100svh - 74px);
    opacity: 0.42;
  }

  .hero-brand-marquee div {
    gap: 32px;
    animation-duration: 26s;
  }

  .hero-brand-marquee span {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .hero-carousel-window {
    min-height: 362px;
    border-radius: var(--radius);
  }

  .hero-carousel-window::after {
    width: 38px;
    height: 38px;
    border-width: 4px;
  }

  .hero-carousel-track {
    gap: 16px;
    min-height: 362px;
    padding: 10px 0;
  }

  .hero-carousel-card {
    flex-basis: 250px;
    height: 326px;
    border-radius: var(--radius);
  }

  .hero-carousel-card.is-active {
    transform: scale(1.02) translateY(0);
  }

  .hero-carousel-content {
    padding: 18px;
    gap: 6px;
  }

  .hero-carousel-content strong {
    font-size: 1.08rem;
  }

  .hero-carousel-content small {
    font-size: 0.78rem;
  }

  .hero-carousel-price {
    font-size: 0.9rem;
  }

  .hero-carousel-more {
    font-size: 0.78rem;
  }

  .hero-offer-switcher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .destination-stack {
    position: relative;
    display: grid;
    gap: 8px;
    inset: auto;
  }

  .destination-card,
  .destination-card-one,
  .destination-card-two,
  .destination-card-three,
  body.is-site-ready .destination-card {
    position: relative;
    inset: auto;
    width: 100%;
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 78px;
    direction: rtl;
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .destination-card div {
    min-width: 0;
    text-align: right;
  }

  body[data-lang="fr"] .destination-card div {
    text-align: left;
  }

  .destination-card span,
  .destination-card strong {
    overflow-wrap: anywhere;
  }

  .destination-card img {
    width: 68px;
    height: 58px;
  }

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

  .hero-actions .btn,
  .floating-actions a {
    width: 100%;
  }

  .hero-offer-card img {
    height: 220px;
  }

  .umrah-poster {
    min-height: 430px;
  }

  .umrah-photo-strip {
    gap: 7px;
  }

  .starting-price {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 4px;
  }

  .date-grid,
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .price-table div,
  .contact-list li {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .floating-actions a:last-child {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 120px;
  }
}

/* Cinematic travel upgrade inspired by premium tour landing pages. */
.site-header {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(3, 9, 20, 0.72), rgba(6, 29, 63, 0.48)),
    rgba(3, 9, 20, 0.34);
  box-shadow: 0 18px 52px rgba(3, 9, 20, 0.22);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(3, 9, 20, 0.92), rgba(7, 47, 105, 0.82)),
    rgba(3, 9, 20, 0.9);
  box-shadow: 0 16px 44px rgba(3, 9, 20, 0.26);
}

.brand strong,
.brand small,
.main-nav a {
  color: #ffffff;
}

.brand small,
.main-nav a {
  color: rgba(255, 255, 255, 0.74);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 100svh;
  padding-top: 140px;
  padding-bottom: 92px;
  background: #030914;
}

.hero-bg {
  inset: -4%;
  filter: saturate(1.12) contrast(1.05);
  animation-name: heroFade, slowCinemaZoom;
  animation-duration: var(--hero-speed), 20s;
  animation-iteration-count: infinite, infinite;
  animation-timing-function: ease, ease-in-out;
}

.hero-shade {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(25, 190, 214, 0.22), transparent 30%),
    linear-gradient(270deg, rgba(3, 9, 20, 0.98) 0%, rgba(6, 29, 63, 0.8) 46%, rgba(3, 9, 20, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 9, 20, 0.16), rgba(3, 9, 20, 0.94));
}

body[data-lang="fr"] .hero-shade {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(25, 190, 214, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(3, 9, 20, 0.98) 0%, rgba(6, 29, 63, 0.78) 46%, rgba(3, 9, 20, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 9, 20, 0.16), rgba(3, 9, 20, 0.94));
}

@keyframes slowCinemaZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.16);
  }
}

.hero-content {
  grid-template-columns: minmax(380px, 0.78fr) minmax(520px, 620px);
  align-items: center;
  min-height: calc(100svh - 260px);
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(2.8rem, 5.9vw, 5.55rem);
  line-height: 1.03;
  letter-spacing: 0;
}

body[data-lang="fr"] .hero h1 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
}

.hero-copy {
  max-width: 590px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.hero-side-badge {
  position: relative;
  display: grid;
  gap: 6px;
  width: min(100%, 310px);
  margin-top: 22px;
  padding: 18px 20px;
  border-inline-start: 3px solid var(--cyan);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-side-badge span {
  color: var(--cyan);
  font-family: "Montserrat", "Tajawal", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-side-badge h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.24rem;
  line-height: 1.25;
}

.hero-side-badge p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.hero-carousel-window,
.hero-carousel-card {
  border-radius: 8px;
}

.hero-carousel-card {
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
}

.travel-showcase {
  position: relative;
  overflow: hidden;
  padding: 98px 0 88px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 12%, rgba(25, 190, 214, 0.16), transparent 34%),
    linear-gradient(180deg, #030914 0%, #061224 58%, #071a31 100%);
}

.travel-showcase-inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
}

.showcase-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.showcase-title {
  max-width: 760px;
}

.showcase-title h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

body[data-lang="fr"] .showcase-title h2 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
}

.showcase-title p:not(.eyebrow) {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

.showcase-controls {
  display: inline-flex;
  gap: 12px;
}

.showcase-controls button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.showcase-controls button:hover,
.showcase-controls button:focus-visible {
  color: #030914;
  background: #ffffff;
  transform: translateY(-3px);
  outline: none;
}

.travel-slider {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 18px 50px 58px;
  direction: ltr;
}

.travel-slider .swiper-wrapper {
  align-items: stretch;
}

.travel-slider .swiper-slide {
  display: flex;
  height: auto;
}

.travel-slider:not(.swiper-initialized) {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.travel-slider:not(.swiper-initialized)::-webkit-scrollbar {
  display: none;
}

.travel-slider:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 24px;
}

.travel-slider:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 clamp(290px, 31vw, 380px);
  scroll-snap-align: center;
}

.tour-card {
  position: relative;
  flex: 0 0 clamp(290px, 31vw, 380px);
  min-height: 520px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #ffffff;
  background: #0b1528;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition: transform 320ms cubic-bezier(0.25, 1, 0.5, 1), border-color 240ms ease, box-shadow 240ms ease;
}

.travel-slider .tour-card {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.tour-card:hover,
.tour-card:focus-visible,
.tour-card.is-active {
  border-color: rgba(25, 190, 214, 0.64);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.48);
  transform: translateY(-10px);
  outline: none;
}

.card-img-wrapper {
  height: 330px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) saturate(1.08);
  transition: transform 560ms ease, filter 240ms ease;
}

.tour-card:hover .card-img-wrapper img,
.tour-card:focus-visible .card-img-wrapper img,
.tour-card.is-active .card-img-wrapper img {
  filter: brightness(0.94) saturate(1.16);
  transform: scale(1.07);
}

.card-content {
  display: grid;
  gap: 11px;
  padding: 24px;
  direction: rtl;
  text-align: right;
}

body[data-lang="fr"] .card-content {
  direction: ltr;
  text-align: left;
}

.card-content > span {
  color: var(--cyan);
  font-family: "Montserrat", "Tajawal", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card-content h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.22;
}

.card-content p {
  min-height: 76px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.65;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-meta strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.card-meta small {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(25, 190, 214, 0.62);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.watermark-text {
  position: absolute;
  right: -18px;
  bottom: -50px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.tour-swiper .swiper-button-next,
.tour-swiper .swiper-button-prev {
  width: 46px;
  height: 46px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(3, 9, 20, 0.38);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  transform: scale(0.76);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.tour-swiper .swiper-button-next::after,
.tour-swiper .swiper-button-prev::after {
  font-size: 1.3rem;
  font-weight: 900;
}

.tour-swiper .swiper-button-next:hover,
.tour-swiper .swiper-button-prev:hover,
.tour-swiper .swiper-button-next:focus-visible,
.tour-swiper .swiper-button-prev:focus-visible {
  color: #030914;
  background: var(--cyan);
  transform: scale(0.84) translateY(-2px);
  outline: none;
}

.tour-swiper .swiper-pagination {
  bottom: 10px !important;
}

.tour-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.42);
  opacity: 1;
  transition: width 220ms ease, background 220ms ease, border-radius 220ms ease;
}

.tour-swiper .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 5px;
  background: var(--cyan);
}

.travel-detail-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: 96px max(5vw, calc((100vw - 1160px) / 2)) 104px;
  color: #ffffff;
  background: linear-gradient(180deg, #071a31 0%, #050d1b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 180ms ease, transform 180ms ease;
}

.travel-detail-panel.is-changing {
  animation: detailPulse 320ms ease;
}

@keyframes detailPulse {
  0% {
    opacity: 0.58;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.details-gallery {
  position: relative;
  min-height: 520px;
}

.main-detail-img {
  display: block;
  width: min(88%, 620px);
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.52);
}

.floating-info-card {
  position: absolute;
  inset-inline-start: 0;
  bottom: -24px;
  display: grid;
  gap: 12px;
  width: min(310px, 78%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(11, 21, 40, 0.94);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(16px);
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.info-row strong {
  color: #ffffff;
  text-align: end;
}

.details-text {
  display: grid;
  gap: 18px;
}

.details-text h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.08;
}

body[data-lang="fr"] .details-text h2 {
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.details-text .desc {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  line-height: 1.85;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.spec-item {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.spec-item h3 {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.spec-item p {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.5;
}

.detail-price {
  color: var(--cyan) !important;
  font-size: 1.18rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(3, 9, 20, 0.92);
  }

  .main-nav {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(3, 9, 20, 0.96);
    box-shadow: 0 18px 44px rgba(3, 9, 20, 0.28);
  }

  .hero-content,
  .travel-detail-panel {
    grid-template-columns: 1fr;
  }

  .hero-side-badge {
    margin-inline: auto;
  }

  .showcase-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .travel-detail-panel {
    padding-inline: max(24px, calc((100vw - 1160px) / 2));
  }

  .details-gallery {
    min-height: auto;
    padding-bottom: 60px;
  }

  .main-detail-img {
    width: 100%;
    height: min(540px, 62vw);
  }

  .floating-info-card {
    inset-inline-start: 22px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 160px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero-side-badge {
    width: 100%;
  }

  .travel-showcase {
    padding: 72px 0 64px;
  }

  .showcase-controls button {
    width: 44px;
    height: 44px;
  }

  .tour-card {
    flex-basis: min(82vw, 330px);
    min-height: 486px;
  }

  .travel-slider {
    padding-inline: 16px;
  }

  .card-img-wrapper {
    height: 285px;
  }

  .card-content {
    padding: 20px;
  }

  .card-content p {
    min-height: 92px;
  }

  .card-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .travel-detail-panel {
    padding-top: 70px;
    padding-bottom: 78px;
  }

  .main-detail-img {
    height: 380px;
  }

  .floating-info-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: -42px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .detail-actions .btn {
    width: 100%;
  }
}

/* Precision pass: tighter premium layout from the latest reference. */
.site-header {
  position: fixed;
  padding: 14px 5%;
  border-bottom: 1px solid rgba(0, 180, 216, 0.16);
  background:
    linear-gradient(180deg, rgba(3, 9, 20, 0.92) 0%, rgba(3, 9, 20, 0.58) 74%, rgba(3, 9, 20, 0.18) 100%);
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(3, 9, 20, 0.96), rgba(6, 29, 63, 0.9));
  border-bottom-color: rgba(0, 180, 216, 0.24);
}

.hero {
  min-height: 95svh;
  padding-top: 118px;
  padding-bottom: 56px;
}

.hero-content {
  min-height: calc(95svh - 205px);
}

.hero h1 {
  font-size: clamp(2.55rem, 5.4vw, 5rem);
}

.hero-copy {
  max-width: 620px;
}

.hero-side-badge {
  max-width: 300px;
  padding: 18px 20px;
  border-inline-start-color: var(--cyan);
  background: rgba(11, 21, 40, 0.62);
}

.travel-showcase {
  padding: 60px 0;
}

.showcase-header {
  align-items: center;
  margin-bottom: 35px;
}

.showcase-title h2 {
  font-size: clamp(2.05rem, 4vw, 3.35rem);
}

.showcase-title p:not(.eyebrow) {
  margin-top: 10px;
}

.travel-slider {
  padding: 10px 48px 50px;
}

.tour-card {
  min-height: 508px;
  border-color: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.tour-card:hover,
.tour-card:focus-visible,
.tour-card.is-active {
  border-color: rgba(0, 180, 216, 0.34);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
  transform: translateY(-8px);
}

.card-img-wrapper {
  height: 380px;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.25rem;
}

.card-content p {
  min-height: 54px;
  max-height: 58px;
  overflow: hidden;
  font-size: 0.86rem;
}

.card-meta {
  padding-top: 15px;
}

.card-meta small {
  padding: 8px 20px;
}

.watermark-text {
  bottom: -12px;
  color: rgba(0, 180, 216, 0.026);
  font-size: clamp(4.8rem, 13vw, 9rem);
}

.travel-detail-panel {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
  padding: 60px max(5vw, calc((100vw - 1160px) / 2)) 80px;
  background: #040b15;
  border-top: 1px solid rgba(0, 180, 216, 0.12);
}

.details-gallery {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 500px;
}

.main-detail-img {
  width: min(90%, 620px);
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.5);
}

.floating-info-card {
  inset-inline-start: auto;
  inset-inline-end: 5%;
  bottom: -20px;
  width: 260px;
  padding: 22px;
  border-color: rgba(0, 180, 216, 0.22);
  background: rgba(11, 21, 40, 0.95);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.details-text {
  gap: 15px;
  justify-content: center;
}

.details-text h2 {
  font-size: clamp(2.05rem, 3.4vw, 2.8rem);
  line-height: 1.2;
}

.details-text .desc {
  margin-bottom: 12px;
  font-size: 0.96rem;
}

.specs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-item {
  min-height: 108px;
  padding: 0;
  border: 0;
  background: transparent;
}

.spec-item h3 {
  margin-bottom: 6px;
  letter-spacing: 1.5px;
}

.detail-price {
  font-size: 1.4rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: 92svh;
  }

  .travel-detail-panel {
    gap: 40px;
    padding-top: 58px;
  }

  .details-gallery {
    min-height: auto;
    justify-content: stretch;
  }

  .main-detail-img {
    width: 100%;
    height: 350px;
  }

  .floating-info-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: -10px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .hero {
    min-height: 94svh;
    padding-top: 148px;
  }

  .travel-showcase {
    padding: 54px 0;
  }

  .travel-slider {
    padding-inline: 12px;
  }

  .tour-card {
    min-height: 468px;
  }

  .card-img-wrapper {
    height: 310px;
  }

  .card-content p {
    max-height: none;
    min-height: 70px;
  }
}

/* Final continuity pass: no pale break between the cinematic blocks, and equal card text rhythm. */
html {
  background-color: #030914;
}

.hero::after {
  height: 140px;
  background: linear-gradient(180deg, rgba(3, 9, 20, 0), #030914);
}

.travel-showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, #030914 0%, #050d1a 100%);
}

.travel-detail-panel {
  padding: 80px max(5vw, calc((100vw - 1160px) / 2)) 100px;
  background: #050d1a;
  border-top-color: rgba(0, 180, 216, 0.08);
}

.tour-card {
  display: flex;
  flex-direction: column;
  min-height: 545px;
}

.travel-slider .tour-card {
  height: 100%;
}

.card-img-wrapper {
  height: 350px;
}

.card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.card-content h3 {
  min-height: 2.55em;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-content p {
  min-height: 4.8em;
  max-height: 4.8em;
  margin-bottom: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.card-meta {
  margin-top: auto;
}

.details-gallery {
  width: 100%;
}

.floating-info-card {
  right: 5%;
  left: auto;
}

body[data-lang="fr"] .floating-info-card {
  right: auto;
  left: 5%;
}

@media (max-width: 980px) {
  .travel-detail-panel {
    padding: 60px max(24px, calc((100vw - 1160px) / 2));
  }

  .floating-info-card,
  body[data-lang="fr"] .floating-info-card {
    right: auto;
    left: auto;
  }
}

@media (max-width: 620px) {
  .travel-showcase {
    padding: 60px 0;
  }

  .tour-card {
    min-height: 500px;
  }

  .card-img-wrapper {
    height: 330px;
  }
}

/* Hero headline arrangement: keep the message clean above the offer images. */
.hero-content {
  grid-template-columns: 1fr;
  align-content: center;
  align-items: center;
  gap: 22px;
  min-height: calc(95svh - 190px);
}

.hero-text {
  display: grid;
  justify-items: center;
  max-width: min(100%, 1080px);
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(2.4rem, 4.35vw, 4.35rem);
  line-height: 1.08;
  white-space: nowrap;
  text-align: center;
}

.hero-copy {
  max-width: 940px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.22vw, 1.13rem);
  line-height: 1.75;
  text-align: center;
}

.hero-actions,
.hero-highlights {
  justify-content: center;
}

.hero-highlights {
  max-width: 760px;
  margin-inline: auto;
}

.hero-side-badge {
  width: min(100%, 520px);
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
  border-inline-start: 0;
  border-top: 3px solid var(--cyan);
}

.hero-showcase {
  width: min(100%, 780px);
  min-height: 430px;
  margin: 0 auto;
}

.hero-carousel-window,
.hero-carousel-track {
  min-height: 410px;
}

.hero-carousel-card {
  flex-basis: 318px;
  height: 382px;
}

@media (max-width: 980px) {
  .hero h1 {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .hero-content {
    gap: 20px;
  }

  .hero h1 {
    max-width: 330px;
    white-space: normal;
  }

  .hero-copy {
    max-width: 335px;
  }

  .hero-showcase {
    min-height: auto;
  }
}

/* Compact hero order: title, copy, then images immediately. */
.hero {
  padding-top: 108px;
  padding-bottom: 16px;
}

.ad-ticker {
  margin-bottom: 12px;
}

.hero-content {
  align-content: start;
  gap: 10px;
  min-height: auto;
}

.hero-text {
  display: contents;
}

.hero .eyebrow {
  order: 1;
  justify-self: center;
  margin-bottom: 0;
}

.hero h1 {
  order: 2;
  justify-self: center;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.hero-copy {
  order: 3;
  margin-top: 6px;
}

.hero-showcase {
  order: 4;
  min-height: 382px;
  margin-top: 0;
}

.hero-carousel-window,
.hero-carousel-track {
  min-height: 360px;
}

.hero-carousel-card {
  flex-basis: 302px;
  height: 342px;
}

.hero-offer-switcher {
  margin-top: -4px;
}

.hero-actions {
  order: 5;
  margin-top: 4px;
}

.hero-highlights {
  order: 6;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 620px);
  margin-top: 4px;
}

.hero-highlights span {
  min-height: 50px;
  padding: 8px 10px;
}

.hero-side-badge {
  order: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 620px);
  max-width: 620px;
  margin-top: 4px;
  padding: 11px 16px;
}

.hero-side-badge h2,
.hero-side-badge p {
  margin: 0;
}

.hero-side-badge p {
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .hero-text {
    display: grid;
  }

  .hero-showcase {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 140px;
  }

  .hero-content {
    gap: 12px;
  }

  .hero-actions {
    margin-top: 4px;
  }

  .hero-highlights {
    margin-top: 4px;
  }

  .hero-side-badge {
    display: grid;
    margin-top: 4px;
  }
}

/* Keep the Omra offer visible as the main hero card, separate from rotating offers. */
.hero-showcase {
  width: min(100%, 1060px);
  grid-template-columns: minmax(360px, 1.18fr) minmax(280px, 0.82fr);
  align-items: stretch;
  gap: 20px;
  min-height: 390px;
  direction: rtl;
}

.hero-umrah-feature {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 392px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: calc(var(--radius) + 4px);
  color: #ffffff;
  background: #061b2d;
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(25, 190, 214, 0.12);
  cursor: pointer;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 360ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.hero-umrah-feature:hover,
.hero-umrah-feature:focus-visible {
  border-color: rgba(25, 190, 214, 0.76);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.52), 0 0 36px rgba(25, 190, 214, 0.2);
  outline: none;
  transform: translateY(-5px) scale(1.012);
}

.hero-umrah-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 28% 22%, rgba(25, 190, 214, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(3, 8, 13, 0.04) 0%, rgba(3, 8, 13, 0.34) 42%, rgba(3, 8, 13, 0.9) 100%);
  pointer-events: none;
}

.hero-umrah-feature::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-umrah-media,
.hero-umrah-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-umrah-media {
  position: absolute;
  inset: 0;
}

.hero-umrah-media img {
  object-fit: cover;
  filter: brightness(0.88) saturate(1.12);
  transition: transform 800ms cubic-bezier(0.25, 1, 0.5, 1), filter 260ms ease;
}

.hero-umrah-feature:hover .hero-umrah-media img,
.hero-umrah-feature:focus-visible .hero-umrah-media img {
  filter: brightness(0.95) saturate(1.2);
  transform: scale(1.045);
}

.hero-umrah-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  gap: 9px;
  padding: 28px;
  direction: rtl;
  text-align: right;
}

body[data-lang="fr"] .hero-umrah-content {
  direction: ltr;
  text-align: left;
}

.hero-umrah-content .hero-carousel-tag {
  position: static;
  width: fit-content;
  margin-bottom: 6px;
}

.hero-umrah-content strong {
  max-width: 430px;
  font-size: clamp(1.7rem, 2.55vw, 2.45rem);
  line-height: 1.08;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.hero-umrah-content small {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.45;
}

.hero-umrah-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  color: #ffffff;
  font-weight: 900;
}

.hero-umrah-price bdi {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  letter-spacing: 0;
}

.hero-moving-offers {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  direction: ltr;
}

.hero-moving-offers .hero-carousel-window,
.hero-moving-offers .hero-carousel-track {
  min-height: 318px;
}

.hero-moving-offers .hero-carousel-window {
  width: 100%;
}

.hero-moving-offers .hero-carousel-window::before {
  inset: 34px 18px 22px;
}

.hero-moving-offers .hero-carousel-window::after {
  width: 42px;
  height: 42px;
  border-width: 4px;
}

.hero-moving-offers .hero-carousel-track {
  gap: 18px;
  padding-block: 10px;
}

.hero-moving-offers .hero-carousel-card {
  flex-basis: 232px;
  height: 302px;
  opacity: 0.46;
  transform: scale(0.82) translateY(10px);
}

.hero-moving-offers .hero-carousel-card.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.hero-moving-offers .hero-carousel-content {
  padding: 20px;
}

.hero-moving-offers .hero-carousel-content strong {
  font-size: 1.1rem;
}

.hero-moving-offers .hero-carousel-content small {
  font-size: 0.78rem;
}

.hero-moving-offers .hero-carousel-price,
.hero-moving-offers .hero-carousel-more {
  font-size: 0.82rem;
}

.hero-moving-offers .hero-offer-switcher {
  margin-top: 0;
}

@media (max-width: 980px) {
  .hero-showcase {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
    min-height: auto;
  }

  .hero-umrah-feature {
    min-height: 390px;
  }

  .hero-moving-offers .hero-carousel-window,
  .hero-moving-offers .hero-carousel-track {
    min-height: 300px;
  }

  .hero-moving-offers .hero-carousel-card {
    flex-basis: 230px;
    height: 280px;
  }
}

@media (max-width: 620px) {
  .hero-showcase {
    width: min(100%, 360px);
    gap: 14px;
  }

  .hero-umrah-feature {
    min-height: 360px;
  }

  .hero-umrah-content {
    padding: 22px;
  }

  .hero-umrah-content strong {
    font-size: 1.55rem;
  }

  .hero-moving-offers .hero-carousel-window,
  .hero-moving-offers .hero-carousel-track {
    min-height: 246px;
  }

  .hero-moving-offers .hero-carousel-card {
    flex-basis: 190px;
    height: 230px;
  }
}

/* Equal-size hero cards: Omra fixed card and rotating offer card share the same visual weight. */
.hero-showcase {
  width: min(100%, 1120px);
  grid-template-columns: repeat(2, minmax(360px, 1fr));
  gap: 22px;
  min-height: 390px;
}

.hero-umrah-feature,
.hero-moving-offers .hero-carousel-window {
  height: 390px;
  min-height: 390px;
}

.hero-moving-offers {
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
}

.hero-moving-offers .hero-carousel-window {
  overflow: hidden;
}

.hero-moving-offers .hero-carousel-window::before {
  inset: 30px 24px 22px;
  opacity: 0.34;
}

.hero-moving-offers .hero-carousel-window::after {
  width: 58px;
  height: 58px;
  border-width: 5px;
}

.hero-moving-offers .hero-carousel-track {
  min-height: 390px;
  gap: 22px;
  padding: 0;
  align-items: stretch;
}

.hero-moving-offers .hero-carousel-card {
  flex: 0 0 100%;
  height: 390px;
  opacity: 0.34;
  transform: scale(0.92);
}

.hero-moving-offers .hero-carousel-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-moving-offers .hero-carousel-content {
  padding: 28px;
}

.hero-moving-offers .hero-carousel-content strong {
  max-width: 430px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.12;
}

.hero-moving-offers .hero-carousel-content small {
  max-width: 420px;
  font-size: 0.95rem;
}

.hero-moving-offers .hero-carousel-price {
  font-size: 1.08rem;
}

.hero-moving-offers .hero-carousel-more {
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-showcase {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
    min-height: auto;
  }

  .hero-umrah-feature,
  .hero-moving-offers .hero-carousel-window,
  .hero-moving-offers .hero-carousel-track,
  .hero-moving-offers .hero-carousel-card {
    height: 390px;
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .hero-showcase {
    width: min(100%, 360px);
  }

  .hero-umrah-feature,
  .hero-moving-offers .hero-carousel-window,
  .hero-moving-offers .hero-carousel-track,
  .hero-moving-offers .hero-carousel-card {
    height: 350px;
    min-height: 350px;
  }

  .hero-moving-offers .hero-carousel-content {
    padding: 22px;
  }

  .hero-moving-offers .hero-carousel-content strong {
    font-size: 1.42rem;
  }
}

/* Replace the center loading rings with a subtle frame motion that keeps photos clear. */
.hero-umrah-feature::after,
.hero-carousel-window::after,
.hero-moving-offers .hero-carousel-window::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

.hero-umrah-feature,
.hero-moving-offers .hero-carousel-card.is-active {
  animation: heroCardFrameGlow 4.8s ease-in-out infinite;
}

.hero-umrah-feature:hover,
.hero-umrah-feature:focus-visible,
.hero-moving-offers .hero-carousel-card.is-active:hover,
.hero-moving-offers .hero-carousel-card.is-active:focus-visible {
  animation-play-state: paused;
}

@keyframes heroCardFrameGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 30px 84px rgba(0, 0, 0, 0.38), 0 0 0 rgba(25, 190, 214, 0);
  }

  50% {
    border-color: rgba(25, 190, 214, 0.7);
    box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42), 0 0 30px rgba(25, 190, 214, 0.18);
  }
}

/* Lighter transparent blue overlays so the travel photos stay brighter. */
.hero-umrah-feature::before {
  background:
    radial-gradient(circle at 24% 20%, rgba(125, 218, 255, 0.18), transparent 32%),
    linear-gradient(
      180deg,
      rgba(122, 218, 255, 0.04) 0%,
      rgba(43, 160, 221, 0.14) 44%,
      rgba(14, 80, 129, 0.56) 100%
    );
}

.hero-carousel-card::after {
  background:
    linear-gradient(
      180deg,
      rgba(122, 218, 255, 0.04) 0%,
      rgba(43, 160, 221, 0.12) 44%,
      rgba(14, 80, 129, 0.58) 100%
    ),
    linear-gradient(90deg, rgba(125, 218, 255, 0.16), transparent 50%);
}

.hero-shade {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(125, 218, 255, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(6, 26, 48, 0.72) 0%, rgba(12, 72, 122, 0.48) 48%, rgba(55, 172, 229, 0.2) 100%),
    linear-gradient(180deg, rgba(6, 26, 48, 0.04), rgba(6, 26, 48, 0.58));
}

/* Hajj definition block placed near Omra. */
.hajj-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(25, 190, 214, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
}

.hajj-section::before {
  content: "";
  position: absolute;
  inset: 36px 5% auto auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(25, 190, 214, 0.2);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}

.hajj-definition {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hajj-info-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(7, 89, 189, 0.14);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(6, 29, 63, 0.08);
  backdrop-filter: blur(12px);
}

.hajj-info-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  font-weight: 900;
}

.hajj-info-card h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 1.24rem;
}

.hajj-info-card p {
  margin: 0;
  color: #526b80;
  font-weight: 800;
  line-height: 1.75;
}

.hajj-offers-link {
  margin: 26px auto 0;
}

@media (max-width: 900px) {
  .hajj-definition {
    grid-template-columns: 1fr;
  }
}

/* Cleaner offers interface with structured details and room prices. */
.offers-section {
  background:
    linear-gradient(180deg, #f6fbff 0%, #eef8ff 46%, #ffffff 100%);
}

.offers-section .section-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.offers-section .section-heading h2 {
  color: var(--blue-950);
}

.category-tabs {
  justify-content: center;
  width: min(100%, 940px);
  margin: 0 auto 26px;
  padding: 8px;
  border: 1px solid rgba(25, 190, 214, 0.18);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(6, 29, 63, 0.08);
  backdrop-filter: blur(14px);
}

.category-tabs button {
  border-radius: 999px;
  padding: 9px 18px;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.category-tabs button:hover,
.category-tabs button:focus-visible {
  border-color: rgba(25, 190, 214, 0.48);
  outline: none;
  transform: translateY(-2px);
}

.program-grid {
  align-items: stretch;
  gap: 22px;
}

.offer-card-v2 {
  display: grid;
  min-height: 100%;
  border: 1px solid rgba(25, 190, 214, 0.14);
  border-radius: calc(var(--radius) + 6px);
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(6, 29, 63, 0.1);
}

.offer-card-v2.primary-program {
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  min-height: 430px;
}

.program-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #dff6ff, #0d6fb8);
}

.offer-card-v2.primary-program .program-media {
  min-height: 100%;
}

.program-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.96) saturate(1.08);
  transition: transform 700ms cubic-bezier(0.25, 1, 0.5, 1);
}

.offer-card-v2:hover .program-media img {
  transform: scale(1.045);
}

.program-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(125, 218, 255, 0.04), rgba(5, 38, 72, 0.42)),
    linear-gradient(90deg, rgba(25, 190, 214, 0.2), transparent 48%);
  pointer-events: none;
}

.offer-badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(6, 29, 63, 0.18);
}

.offer-image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  opacity: 0.28;
}

.offer-card-v2 .program-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 2.15vw, 24px);
}

.offer-card-head {
  display: grid;
  gap: 8px;
}

.offer-card-head p {
  width: fit-content;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(25, 190, 214, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
}

.offer-card-head h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.42rem, 2.2vw, 2.12rem);
  line-height: 1.16;
}

.offer-card-head > span {
  display: -webkit-box;
  color: #4c6478;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.55;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.offer-card-v2 .offer-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.offer-card-v2.primary-program .offer-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-detail-chip {
  display: grid;
  gap: 3px;
  min-height: 56px;
  padding: 9px 11px;
  border: 1px solid rgba(7, 89, 189, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f2fbff);
}

.offer-detail-chip small {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
}

.offer-detail-chip strong {
  color: var(--blue-950);
  font-size: 0.9rem;
  line-height: 1.28;
}

.offer-price {
  width: 100%;
  margin-top: 0;
  padding: 12px;
  border-radius: calc(var(--radius) + 2px);
  color: var(--blue-950);
  background:
    linear-gradient(135deg, rgba(7, 89, 189, 0.08), rgba(25, 190, 214, 0.16)),
    #f7fcff;
}

.offer-price-title {
  margin-bottom: 9px;
  color: var(--blue-700);
  font-weight: 900;
}

.offer-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.offer-card-v2.primary-program .offer-price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-price-row {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 9px;
  border: 1px solid rgba(25, 190, 214, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
}

.offer-price-row span {
  color: #526b80;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.offer-price-row strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--blue-950);
  font-size: 0.96rem;
  white-space: nowrap;
}

.offer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #11a96b, #1bcf86);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(17, 169, 107, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.offer-whatsapp:hover,
.offer-whatsapp:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(17, 169, 107, 0.3);
}

.offer-card-v2.primary-program .program-media {
  align-self: start;
  height: 560px;
  min-height: 0;
}

.offer-card-v2.primary-program .program-media img {
  height: 100%;
  min-height: 0;
}

.offer-card-v2 .offer-whatsapp {
  margin-top: 2px;
}

@media (max-width: 980px) {
  .offer-card-v2.primary-program {
    grid-template-columns: 1fr;
  }

  .offer-card-v2.primary-program .program-media {
    height: 320px;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 7px;
  }

  .category-tabs button {
    flex: 0 0 auto;
  }

  .offer-card-v2 .offer-meta,
  .offer-price-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-v2.primary-program .program-media,
  .program-media img {
    min-height: 260px;
  }
}

/* Premium Omra program presentation. */
.umrah-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(25, 190, 214, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.umrah-section .section-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.umrah-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.85;
}

.umrah-feature {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 34px;
  padding: 14px;
  border: 1px solid rgba(25, 190, 214, 0.16);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 70px rgba(6, 29, 63, 0.1);
  backdrop-filter: blur(16px);
}

.umrah-visuals {
  align-content: stretch;
  gap: 14px;
}

.umrah-visuals::before {
  opacity: 0;
}

.umrah-poster {
  min-height: 560px;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(19, 127, 189, 0.72), rgba(6, 29, 63, 0.84)),
    url("https://unsplash.com/photos/tvEDhFhBhXM/download?force=true&w=1600") center / cover;
}

.umrah-poster::after {
  background:
    linear-gradient(180deg, rgba(8, 42, 77, 0.04) 0%, rgba(8, 42, 77, 0.12) 42%, rgba(6, 29, 63, 0.62) 100%),
    linear-gradient(90deg, rgba(25, 190, 214, 0.2), transparent 52%);
}

.umrah-poster img,
.umrah-photo-strip img {
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
}

.umrah-photo-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.umrah-photo-strip img {
  min-height: 118px;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(135deg, rgba(25, 190, 214, 0.18), rgba(6, 29, 63, 0.18)),
    url("https://unsplash.com/photos/IAwnp88Fz8Y/download?force=true&w=720") center / cover;
}

.umrah-details {
  justify-content: stretch;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 28px);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 16% 12%, rgba(125, 218, 255, 0.22), transparent 34%),
    linear-gradient(160deg, #082447, #0b5fa8 58%, #18afd0);
  box-shadow: 0 24px 60px rgba(6, 29, 63, 0.18);
}

.date-grid {
  gap: 12px;
}

.date-grid div {
  position: relative;
  min-height: 118px;
  padding: 16px;
  overflow: hidden;
}

.date-grid div::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), #7ddaff);
}

.date-grid span {
  font-size: 0.82rem;
  font-weight: 900;
}

.date-grid strong {
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.45rem;
}

.date-grid small {
  margin-top: 5px;
  font-weight: 900;
}

.feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-list span {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 13px 14px;
}

.feature-list small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-list strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.starting-price {
  grid-template-columns: auto 1fr auto;
  padding: 18px 20px;
  border-color: rgba(255, 255, 255, 0.34);
}

.starting-price strong {
  justify-self: center;
  font-size: clamp(2.35rem, 4vw, 3.45rem);
}

.price-table {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-table div {
  display: grid;
  gap: 4px;
  justify-items: center;
  min-height: 78px;
  padding: 12px;
  text-align: center;
}

.price-table div:hover {
  transform: translateY(-3px);
}

.price-table span {
  font-size: 0.86rem;
}

.price-table strong {
  color: #ffffff;
  font-size: 1.12rem;
}

.umrah-details .btn {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}

@media (max-width: 1040px) {
  .umrah-feature {
    grid-template-columns: 1fr;
  }

  .umrah-poster {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .umrah-feature {
    padding: 10px;
  }

  .umrah-poster {
    min-height: 360px;
  }

  .date-grid,
  .feature-list,
  .price-table {
    grid-template-columns: 1fr;
  }
}

/* Softer professional palette pass: lighter blue, cleaner cards, calmer contrast. */
:root {
  --ink: #14283d;
  --muted: #65798b;
  --paper: #f8fbfe;
  --line: rgba(20, 40, 61, 0.1);
  --blue-950: #12304d;
  --blue-850: #1d4d73;
  --blue-700: #2f7db8;
  --blue-500: #69b8e5;
  --cyan: #8bdcf5;
  --shadow: 0 22px 56px rgba(18, 48, 77, 0.1);
  --parallax-wash-x: 0px;
  --parallax-wash-y: -54px;
  --parallax-wash-angle: 118deg;
  --parallax-wash-opacity: 0.1;
}

html {
  background-color: var(--paper);
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(139, 220, 245, 0.11), transparent 28%),
    radial-gradient(circle at 88% 52%, rgba(47, 125, 184, 0.06), transparent 30%),
    var(--paper);
}

.parallax-blue-wash {
  position: fixed;
  inset: -22vh -14vw;
  z-index: 4;
  pointer-events: none;
  opacity: var(--parallax-wash-opacity);
  background:
    linear-gradient(
      var(--parallax-wash-angle),
      transparent 0%,
      rgba(0, 88, 190, 0.03) 18%,
      rgba(0, 102, 214, 0.16) 42%,
      rgba(55, 169, 235, 0.09) 64%,
      transparent 92%
    );
  mix-blend-mode: multiply;
  transform: translate3d(var(--parallax-wash-x), var(--parallax-wash-y), 0) scale(1.08);
  transform-origin: center;
  will-change: transform, opacity;
  contain: paint;
}

.parallax-blue-wash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      155deg,
      transparent 0 35%,
      rgba(0, 88, 190, 0.07) 44%,
      rgba(139, 220, 245, 0.045) 52%,
      transparent 64% 100%
    );
  filter: blur(10px);
  transform: translate3d(calc(var(--parallax-wash-x) * -0.45), calc(var(--parallax-wash-y) * 0.34), 0);
}

body.is-intro-running .parallax-blue-wash {
  opacity: 0;
}

.site-header {
  border-bottom-color: rgba(139, 220, 245, 0.2);
  background:
    linear-gradient(180deg, rgba(18, 48, 77, 0.78) 0%, rgba(18, 48, 77, 0.48) 72%, rgba(18, 48, 77, 0.08) 100%);
  box-shadow: 0 14px 34px rgba(18, 48, 77, 0.1);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(47, 125, 184, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(18, 48, 77, 0.12);
}

.site-header.is-scrolled .brand strong,
.site-header.is-scrolled .main-nav a,
.site-header.is-scrolled .menu-toggle {
  color: var(--ink);
}

.site-header.is-scrolled .brand small {
  color: #5f7488;
}

.language-switch button.is-active,
.category-tabs button.is-active,
.btn-primary,
.offer-badge,
.hajj-info-card span,
.service-icon {
  background: linear-gradient(135deg, #2f7db8, #8bdcf5);
  box-shadow: 0 14px 30px rgba(47, 125, 184, 0.18);
}

.btn-primary {
  animation: softButtonPulse 3.2s ease-in-out infinite;
}

@keyframes softButtonPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(47, 125, 184, 0.18);
  }
  50% {
    box-shadow: 0 18px 38px rgba(139, 220, 245, 0.26);
  }
}

.hero {
  background: #12304d;
}

.hero-shade {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(139, 220, 245, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(18, 48, 77, 0.64) 0%, rgba(29, 77, 115, 0.38) 52%, rgba(105, 184, 229, 0.16) 100%),
    linear-gradient(180deg, rgba(18, 48, 77, 0.02), rgba(18, 48, 77, 0.54));
}

.hero::after {
  background: linear-gradient(180deg, rgba(18, 48, 77, 0), #eef7fc);
}

.ad-ticker,
.hero-highlights span,
.hero-side-badge,
.hero-offer-card {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 52px rgba(18, 48, 77, 0.2);
}

.hero-side-badge {
  border-inline-start-color: #8bdcf5;
}

.hero-umrah-feature::before,
.hero-carousel-card::after {
  background:
    linear-gradient(180deg, rgba(139, 220, 245, 0.02) 0%, rgba(105, 184, 229, 0.1) 44%, rgba(18, 48, 77, 0.52) 100%),
    linear-gradient(90deg, rgba(139, 220, 245, 0.12), transparent 52%);
}

.travel-showcase {
  background:
    radial-gradient(circle at 82% 10%, rgba(139, 220, 245, 0.11), transparent 32%),
    linear-gradient(180deg, #eef7fc 0%, #f8fbfe 100%);
  color: var(--ink);
}

.showcase-title p:not(.eyebrow) {
  color: #5e7488;
}

.showcase-controls button {
  color: var(--blue-850);
  border-color: rgba(47, 125, 184, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.showcase-controls button:hover,
.showcase-controls button:focus-visible {
  color: #ffffff;
  background: var(--blue-700);
}

.tour-card {
  color: #ffffff;
  border-color: rgba(47, 125, 184, 0.12);
  background: #12304d;
  box-shadow: 0 22px 48px rgba(18, 48, 77, 0.18);
}

.tour-card:hover,
.tour-card:focus-visible,
.tour-card.is-active {
  border-color: rgba(105, 184, 229, 0.45);
  box-shadow: 0 28px 62px rgba(18, 48, 77, 0.24);
}

.hajj-section,
.offers-section,
.umrah-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(139, 220, 245, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f2f9fd 100%);
}

.hajj-info-card,
.offer-card-v2,
.umrah-feature {
  border-color: rgba(47, 125, 184, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 50px rgba(18, 48, 77, 0.08);
}

.category-tabs {
  border-color: rgba(47, 125, 184, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(18, 48, 77, 0.08);
}

.category-tabs button:hover,
.category-tabs button:focus-visible {
  border-color: rgba(105, 184, 229, 0.44);
}

.program-media {
  background: linear-gradient(135deg, #edf9ff, #69b8e5);
}

.program-media::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 48, 77, 0.34)),
    linear-gradient(90deg, rgba(139, 220, 245, 0.14), transparent 50%);
}

.offer-card-head p,
.offer-price-title,
.offer-detail-chip small {
  color: var(--blue-700);
}

.offer-detail-chip,
.offer-price,
.offer-price-row {
  border-color: rgba(47, 125, 184, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 253, 0.96));
}

.umrah-poster {
  background:
    linear-gradient(135deg, rgba(29, 77, 115, 0.38), rgba(18, 48, 77, 0.54)),
    url("https://unsplash.com/photos/tvEDhFhBhXM/download?force=true&w=1600") center / cover;
}

.umrah-poster::after {
  background:
    linear-gradient(180deg, rgba(18, 48, 77, 0.02) 0%, rgba(18, 48, 77, 0.1) 44%, rgba(18, 48, 77, 0.48) 100%),
    linear-gradient(90deg, rgba(139, 220, 245, 0.12), transparent 54%);
}

.umrah-details {
  color: var(--ink);
  border: 1px solid rgba(47, 125, 184, 0.14);
  background:
    radial-gradient(circle at 14% 8%, rgba(139, 220, 245, 0.2), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(237, 248, 254, 0.96));
  box-shadow: 0 22px 56px rgba(18, 48, 77, 0.1);
}

.umrah-details .date-grid div,
.umrah-details .feature-list span,
.umrah-details .starting-price,
.umrah-details .price-table div {
  color: var(--ink);
  border: 1px solid rgba(47, 125, 184, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.umrah-details .date-grid div::after {
  background: linear-gradient(90deg, rgba(139, 220, 245, 0.3), #69b8e5);
}

.umrah-details .date-grid span,
.umrah-details .date-grid small,
.umrah-details .feature-list small,
.umrah-details .price-table span,
.umrah-details .starting-price span {
  color: #5d7488;
}

.umrah-details .date-grid strong,
.umrah-details .feature-list strong,
.umrah-details .price-table strong,
.umrah-details .starting-price strong {
  color: var(--blue-950);
}

.umrah-details .starting-price strong {
  text-shadow: none;
}

.umrah-details .btn {
  color: #ffffff;
  background: linear-gradient(135deg, #2f7db8, #8bdcf5);
}

@media (max-width: 620px) {
  .site-header {
    background: rgba(255, 255, 255, 0.94);
  }

  .site-header .brand strong,
  .site-header .menu-toggle {
    color: var(--ink);
  }

  .site-header .brand small {
    color: #5f7488;
  }
}

@media (max-width: 620px) {
  .parallax-blue-wash {
    inset: -18vh -28vw;
    opacity: 0.09;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-blue-wash,
  .parallax-blue-wash::before {
    transform: none;
  }
}

/* Full cinematic blue image backgrounds for the lower scrolling sections. */
.hajj-section,
.offers-section,
.services-section,
.process-section,
.social-section,
.contact-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 96px max(20px, calc((100vw - 1160px) / 2));
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: #12304d;
}

.hajj-section::before,
.offers-section::before,
.services-section::before,
.process-section::before,
.social-section::before,
.contact-section::before {
  display: none;
}

.hajj-section::after,
.offers-section::after,
.services-section::after,
.process-section::after,
.social-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 1;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: scenicDrift 18s ease-in-out infinite alternate;
}

.hajj-section::after {
  background-image:
    linear-gradient(90deg, rgba(10, 34, 63, 0.94), rgba(32, 68, 105, 0.8)),
    url("https://unsplash.com/photos/IAwnp88Fz8Y/download?force=true&w=1400");
}

.offers-section::after {
  background-image:
    linear-gradient(90deg, rgba(10, 34, 63, 0.93), rgba(32, 68, 105, 0.78)),
    url("https://unsplash.com/photos/sj7NbWUqWio/download?force=true&w=1400");
  animation-delay: -3s;
}

.services-section::after {
  background-image:
    linear-gradient(90deg, rgba(10, 34, 63, 0.93), rgba(32, 68, 105, 0.78)),
    url("https://unsplash.com/photos/qgpqinXjtbY/download?force=true&w=1400");
  animation-delay: -6s;
}

.process-section::after {
  background-image:
    linear-gradient(90deg, rgba(10, 34, 63, 0.94), rgba(32, 68, 105, 0.8)),
    url("https://unsplash.com/photos/xrLejyt9BCo/download?force=true&w=1400");
  animation-delay: -9s;
}

.social-section::after {
  background-image:
    linear-gradient(90deg, rgba(10, 34, 63, 0.94), rgba(32, 68, 105, 0.78)),
    url("https://unsplash.com/photos/9om7Wwizt1E/download?force=true&w=1400");
  animation-delay: -12s;
}

.contact-section::after {
  background-image:
    linear-gradient(90deg, rgba(10, 34, 63, 0.94), rgba(32, 68, 105, 0.8)),
    url("https://unsplash.com/photos/1fjiX6PxVK4/download?force=true&w=1400");
  animation-delay: -15s;
}

.hajj-section .section-heading,
.offers-section .section-heading,
.services-section .section-heading,
.social-section .section-heading {
  position: relative;
  z-index: 1;
}

.hajj-section .section-heading h2,
.offers-section .section-heading h2,
.services-section .section-heading h2,
.social-section .section-heading h2,
.process-band h2,
.contact-info h2 {
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.hajj-section .section-heading p:not(.eyebrow),
.offers-section .section-heading p:not(.eyebrow),
.services-section .section-heading p:not(.eyebrow),
.social-section .section-heading p:not(.eyebrow),
.contact-info p {
  color: rgba(255, 255, 255, 0.78);
}

.hajj-section .eyebrow,
.offers-section .eyebrow,
.services-section .eyebrow,
.process-section .eyebrow,
.social-section .eyebrow,
.contact-section .eyebrow {
  color: var(--gold);
}

.hajj-info-card,
.service-card,
.process-band,
.social-grid a,
.contact-form,
.contact-list li {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 50px rgba(2, 13, 28, 0.22);
  backdrop-filter: blur(14px);
}

.hajj-info-card h3,
.service-card h3,
.contact-list strong {
  color: #ffffff;
}

.hajj-info-card p,
.service-card p,
.steps-list span {
  color: rgba(255, 255, 255, 0.78);
}

.hajj-info-card span,
.service-icon {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.featured-service {
  background: rgba(255, 255, 255, 0.16);
}

.category-tabs {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 48px rgba(2, 13, 28, 0.2);
  backdrop-filter: blur(16px);
}

.category-tabs button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.category-tabs button.is-active {
  color: #12304d;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(2, 13, 28, 0.18);
}

.offer-card-v2 {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(2, 13, 28, 0.24);
}

.process-band {
  background: rgba(255, 255, 255, 0.12);
}

.steps-list li {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.steps-list li:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.16);
}

.social-grid .social-mark {
  color: #12304d;
}

.contact-list a {
  color: #dff8ff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 900px) {
  .hajj-section,
  .offers-section,
  .services-section,
  .process-section,
  .social-section,
  .contact-section {
    padding-block: 72px;
  }

  .hajj-section::after,
  .offers-section::after,
  .services-section::after,
  .process-section::after,
  .social-section::after,
  .contact-section::after {
    background-attachment: scroll;
  }
}

/* Deployment/mobile polish: keep the logo visible and reduce expensive motion on phones. */
.brand-logo {
  padding: 4px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(18, 48, 77, 0.12);
}

@media (max-width: 760px), (pointer: coarse) {
  :root {
    --hero-speed: 32s;
    --ticker-speed: 34s;
    --visual-speed: 40s;
  }

  .brand-logo {
    width: 78px;
    height: 52px;
    padding: 5px 7px;
  }

  .hero-bg-two,
  .hero-bg-three,
  .hero-bg-four,
  .hero-bg-five,
  .hero-bg-six,
  .hero-bg-seven,
  .hero-bg-eight,
  .hero-bg-nine {
    display: none;
  }

  .hero-bg {
    inset: -1%;
    opacity: 1;
    filter: saturate(1.02) contrast(1.01);
    animation: none;
    transform: scale(1.035);
  }

  .parallax-blue-wash,
  .hero-cinematic,
  .hero-brand-marquee {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 48, 77, 0.76), rgba(18, 48, 77, 0.34)),
      linear-gradient(180deg, rgba(18, 48, 77, 0.1), rgba(18, 48, 77, 0.58));
  }

  .hero-umrah-feature,
  .hero-moving-offers .hero-carousel-card.is-active,
  .btn-primary {
    animation: none;
  }

  .experience-bg,
  .visual-strip::before {
    background-attachment: scroll;
    animation: none;
  }

  .site-intro {
    display: none;
  }

  body.is-intro-running {
    overflow: auto;
  }

  .site-header,
  .ad-ticker,
  .hero-highlights span,
  .hero-side-badge,
  .hero-umrah-feature,
  .hero-moving-offers .hero-carousel-window,
  .hero-moving-offers .hero-carousel-card,
  .offer-card-v2,
  .service-card,
  .contact-form,
  .contact-info {
    backdrop-filter: none;
    box-shadow: 0 12px 28px rgba(18, 48, 77, 0.12);
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .social-link,
  .destination-card,
  .umrah-photo-card,
  .visual-track,
  .phone-panel a::after,
  .btn::after {
    animation: none;
  }

  .hero-umrah-feature:hover,
  .hero-umrah-feature:focus-visible,
  .hero-moving-offers .hero-carousel-card.is-active:hover,
  .hero-moving-offers .hero-carousel-card.is-active:focus-visible,
  .hajj-info-card:hover,
  .service-card:hover,
  .social-grid a:hover,
  .contact-list li:hover,
  .experience-grid div:hover {
    transform: none;
  }
}

/* Seamless scenic transitions: hide hard cuts between different background photos. */
.hajj-section,
.offers-section,
.services-section,
.experience-section,
.process-section,
.social-section,
.contact-section {
  margin-top: -1px;
  background-color: #12304d;
}

.experience-section {
  padding-block: 96px;
}

.experience-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(18, 48, 77, 0.96) 0%,
      rgba(18, 48, 77, 0.66) 12%,
      rgba(18, 48, 77, 0.16) 30%,
      rgba(18, 48, 77, 0.1) 68%,
      rgba(18, 48, 77, 0.7) 91%,
      rgba(18, 48, 77, 0.96) 100%
    ),
    linear-gradient(90deg, rgba(8, 28, 54, 0.52), rgba(47, 91, 132, 0.18));
}

.hajj-section::before,
.offers-section::before,
.services-section::before,
.process-section::before,
.social-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: -2px 0;
  z-index: -1;
  display: block;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(18, 48, 77, 0.96) 0%,
      rgba(18, 48, 77, 0.68) 11%,
      rgba(18, 48, 77, 0.18) 28%,
      rgba(18, 48, 77, 0.12) 68%,
      rgba(18, 48, 77, 0.7) 91%,
      rgba(18, 48, 77, 0.96) 100%
    ),
    linear-gradient(90deg, rgba(8, 28, 54, 0.54), rgba(47, 91, 132, 0.2));
}

.hajj-section::after,
.offers-section::after,
.services-section::after,
.process-section::after,
.social-section::after,
.contact-section::after {
  inset: -12px 0;
}

.visual-strip {
  margin-block: -1px;
}

.visual-strip.reveal,
.visual-strip.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.visual-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18, 48, 77, 0.94), transparent 28%, transparent 72%, rgba(18, 48, 77, 0.94)),
    linear-gradient(90deg, rgba(18, 48, 77, 0.4), transparent 52%);
}

.visual-track {
  z-index: 2;
}

/* Unified lower-page background: no scenic photos below the main upper visuals. */
.hajj-section,
.offers-section,
.services-section,
.experience-section,
.process-section,
.social-section,
.contact-section,
.visual-strip {
  background:
    radial-gradient(circle at 12% 8%, rgba(86, 177, 226, 0.16), transparent 28%),
    radial-gradient(circle at 88% 46%, rgba(139, 220, 245, 0.08), transparent 30%),
    linear-gradient(180deg, #102a46 0%, #173c60 42%, #102943 100%);
  background-attachment: fixed;
}

.hajj-section::after,
.offers-section::after,
.services-section::after,
.process-section::after,
.social-section::after,
.contact-section::after {
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 24%, rgba(139, 220, 245, 0.06) 52%, transparent 78%),
    radial-gradient(circle at 18% 18%, rgba(139, 220, 245, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(6, 24, 45, 0.44), rgba(20, 57, 88, 0.16) 48%, rgba(6, 24, 45, 0.52));
  background-attachment: fixed;
  background-size: 100vw 100vh, 100vw 100vh, 100vw 100vh;
  transform: none;
  animation: unifiedBlueFlow 24s ease-in-out infinite alternate;
}

.hajj-section::before,
.offers-section::before,
.services-section::before,
.process-section::before,
.social-section::before,
.contact-section::before {
  background:
    linear-gradient(
      180deg,
      rgba(16, 42, 70, 0.88) 0%,
      rgba(16, 42, 70, 0.32) 16%,
      rgba(16, 42, 70, 0.08) 48%,
      rgba(16, 42, 70, 0.34) 86%,
      rgba(16, 42, 70, 0.9) 100%
    );
}

.experience-bg {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 24%, rgba(139, 220, 245, 0.06) 52%, transparent 78%),
    radial-gradient(circle at 82% 24%, rgba(139, 220, 245, 0.12), transparent 32%),
    linear-gradient(180deg, #102a46 0%, #173c60 46%, #102943 100%);
  background-attachment: fixed;
  background-size: 100vw 100vh, 100vw 100vh, 100vw 100vh;
  transform: none;
  animation: unifiedBlueFlow 24s ease-in-out infinite alternate;
}

.experience-bg::after {
  background:
    linear-gradient(
      180deg,
      rgba(16, 42, 70, 0.88) 0%,
      rgba(16, 42, 70, 0.26) 16%,
      rgba(16, 42, 70, 0.04) 48%,
      rgba(16, 42, 70, 0.34) 86%,
      rgba(16, 42, 70, 0.9) 100%
    );
}

.visual-strip::before {
  background:
    linear-gradient(90deg, rgba(6, 24, 45, 0.78), rgba(47, 125, 184, 0.22), rgba(139, 220, 245, 0.08)),
    linear-gradient(180deg, #102a46 0%, #173c60 100%);
  background-attachment: fixed;
  transform: none;
  animation: unifiedBlueFlow 24s ease-in-out infinite alternate;
}

.visual-strip::after {
  background:
    linear-gradient(180deg, rgba(16, 42, 70, 0.82), transparent 30%, transparent 70%, rgba(16, 42, 70, 0.82)),
    linear-gradient(90deg, rgba(16, 42, 70, 0.34), transparent 52%);
}

@keyframes unifiedBlueFlow {
  from {
    background-position: 48% 50%, 50% 45%, 50% 50%;
  }
  to {
    background-position: 54% 50%, 46% 52%, 50% 50%;
  }
}

@media (max-width: 900px) {
  .hajj-section,
  .offers-section,
  .services-section,
  .experience-section,
  .process-section,
  .social-section,
  .contact-section,
  .visual-strip,
  .hajj-section::after,
  .offers-section::after,
  .services-section::after,
  .process-section::after,
  .social-section::after,
  .contact-section::after,
  .experience-bg,
  .visual-strip::before {
    background-attachment: scroll;
  }
}

/* Livelier lower page: richer accents without returning to photo backgrounds. */
.hajj-section,
.offers-section,
.services-section,
.experience-section,
.process-section,
.social-section,
.contact-section,
.visual-strip {
  background:
    linear-gradient(118deg, rgba(240, 184, 63, 0.1) 0%, transparent 20%, rgba(139, 220, 245, 0.12) 48%, transparent 74%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #0f2946 0%, #17476a 44%, #0e2a47 100%);
  background-attachment: fixed;
}

.hajj-section::after,
.offers-section::after,
.services-section::after,
.process-section::after,
.social-section::after,
.contact-section::after {
  background:
    linear-gradient(105deg, transparent 0 14%, rgba(240, 184, 63, 0.16) 25%, transparent 38%, rgba(139, 220, 245, 0.14) 58%, transparent 76%),
    repeating-linear-gradient(112deg, transparent 0 34px, rgba(255, 255, 255, 0.055) 35px, transparent 36px),
    linear-gradient(180deg, rgba(7, 26, 49, 0.46), rgba(28, 79, 115, 0.16) 48%, rgba(7, 26, 49, 0.5));
  background-size: 145% 145%, 100% 100%, 100% 100%;
  animation: livelyBlueFlow 18s ease-in-out infinite alternate;
}

.experience-bg {
  background:
    linear-gradient(105deg, transparent 0 14%, rgba(240, 184, 63, 0.14) 25%, transparent 38%, rgba(139, 220, 245, 0.13) 58%, transparent 76%),
    repeating-linear-gradient(112deg, transparent 0 34px, rgba(255, 255, 255, 0.052) 35px, transparent 36px),
    linear-gradient(180deg, #0f2946 0%, #17476a 46%, #0e2a47 100%);
  background-attachment: fixed;
  background-size: 145% 145%, 100% 100%, 100% 100%;
  animation: livelyBlueFlow 18s ease-in-out infinite alternate;
}

.visual-strip::before {
  background:
    linear-gradient(105deg, transparent 0 14%, rgba(240, 184, 63, 0.16) 25%, transparent 38%, rgba(139, 220, 245, 0.16) 58%, transparent 76%),
    repeating-linear-gradient(112deg, transparent 0 34px, rgba(255, 255, 255, 0.055) 35px, transparent 36px),
    linear-gradient(180deg, #0f2946 0%, #17476a 100%);
  background-size: 145% 145%, 100% 100%, 100% 100%;
  animation: livelyBlueFlow 18s ease-in-out infinite alternate;
}

@keyframes livelyBlueFlow {
  from {
    background-position: 38% 50%, 0 0, 50% 50%;
  }
  to {
    background-position: 70% 50%, 26px 0, 50% 50%;
  }
}

.hajj-info-card,
.service-card,
.process-band,
.social-grid a,
.contact-form,
.contact-list li,
.experience-grid div {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09)),
    linear-gradient(90deg, rgba(139, 220, 245, 0.08), transparent);
  box-shadow: 0 24px 54px rgba(2, 13, 28, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hajj-info-card::before,
.service-card::before,
.process-band::before,
.social-grid a::before,
.contact-form::before,
.contact-list li::before,
.experience-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 36%, rgba(139, 220, 245, 0.08));
  opacity: 0.68;
}

.hajj-info-card > *,
.service-card > *,
.process-band > *,
.social-grid a > *,
.contact-form > *,
.contact-list li > *,
.experience-grid div > * {
  position: relative;
  z-index: 1;
}

.hajj-info-card:nth-child(1),
.service-card:nth-child(3n + 1),
.experience-grid div:nth-child(1) {
  --card-accent: #f0b83f;
}

.hajj-info-card:nth-child(2),
.service-card:nth-child(3n + 2),
.experience-grid div:nth-child(2) {
  --card-accent: #8bdcf5;
}

.hajj-info-card:nth-child(3),
.service-card:nth-child(3n),
.experience-grid div:nth-child(3) {
  --card-accent: #74e0b2;
}

.hajj-info-card span,
.service-icon,
.steps-list li::before,
.experience-grid strong {
  color: #102a46;
  background: linear-gradient(135deg, var(--card-accent, #f0b83f), rgba(255, 255, 255, 0.86));
  box-shadow: 0 12px 28px rgba(2, 13, 28, 0.16);
}

.service-card::after {
  inset: auto 20px 18px auto;
  width: 96px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--card-accent, #8bdcf5), transparent);
}

.service-card:hover::after {
  transform: translateX(-16px);
}

.hajj-info-card,
.service-card,
.social-grid a,
.contact-list li,
.experience-grid div {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hajj-info-card:hover,
.service-card:hover,
.social-grid a:hover,
.contact-list li:hover,
.experience-grid div:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 184, 63, 0.42);
  box-shadow: 0 30px 66px rgba(2, 13, 28, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.category-tabs {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.1)),
    linear-gradient(90deg, rgba(240, 184, 63, 0.08), rgba(139, 220, 245, 0.1));
}

.category-tabs button.is-active {
  color: #102a46;
  background: linear-gradient(135deg, #ffffff, #dff8ff);
}

.offer-card-v2 {
  border-color: rgba(139, 220, 245, 0.24);
  border-top: 4px solid #8bdcf5;
}

.offer-badge {
  color: #102a46;
  background: linear-gradient(135deg, #f0b83f, #8bdcf5);
}

.phone-panel a,
.umrah-details .btn,
.btn-primary {
  background: linear-gradient(135deg, #2f7db8 0%, #8bdcf5 48%, #f0b83f 100%);
}

.visual-track span {
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.visual-track span:nth-child(3n + 1) {
  border-color: rgba(240, 184, 63, 0.42);
}

.visual-track span:nth-child(3n + 2) {
  border-color: rgba(139, 220, 245, 0.48);
}

.visual-track span:nth-child(3n) {
  border-color: rgba(116, 224, 178, 0.38);
}

@media (max-width: 900px) {
  .hajj-section,
  .offers-section,
  .services-section,
  .experience-section,
  .process-section,
  .social-section,
  .contact-section,
  .visual-strip,
  .hajj-section::after,
  .offers-section::after,
  .services-section::after,
  .process-section::after,
  .social-section::after,
  .contact-section::after,
  .experience-bg,
  .visual-strip::before {
    background-attachment: scroll;
  }
}

