/* =============================================================================
 * International Payment Solutions (IPS) - Elite Bilingual FinTech Theme
 * Dual Language: Arabic (RTL) & English (LTR)
 * Strict Arabic-UI compliance (No العرنجية, pure Arabic copy, logical CSS)
 * ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --cyan: #06B6D4;
  --cyan-deep: #0891B2;
  --violet: #7C3AED;
  
  --bg-page: #FAFBFD;
  --bg-white: #FFFFFF;
  --bg-surface: #F1F5F9;
  --bg-dark: #090E1A;
  --bg-dark-card: #111827;
  
  --text-main: #0B132B;
  --text-muted: #5A6A85;
  --text-sub: #8492A6;
  --text-white: #FFFFFF;
  
  --border-subtle: rgba(226, 232, 240, 0.8);
  --border-dark: rgba(255, 255, 255, 0.08);
  
  --grad-official: linear-gradient(135deg, #2563EB 0%, #06B6D4 50%, #7C3AED 100%);
  --shadow-float: 0 24px 48px -12px rgba(15, 23, 42, 0.12);
  --shadow-phone: 0 35px 70px -15px rgba(11, 19, 43, 0.22);
  --shadow-btn: 0 10px 24px -4px rgba(37, 99, 235, 0.35);
  
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-full: 9999px;
  
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Base Typography - RTL (Arabic) */
html[dir="rtl"] body {
  font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
  direction: rtl;
  text-align: right;
}

/* Base Typography - LTR (English) */
html[dir="ltr"] body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  direction: ltr;
  text-align: left;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* English Digits Everywhere */
.num, .en-num, input[type="number"], .font-jakarta, .step-counter, .bill-amount-num, .anaverse-metric-num {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-feature-settings: "tnum" 1;
  direction: ltr;
  display: inline-block;
  unicode-bidi: isolate;
}

h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text-main);
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-main);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 700;
  line-height: 1.35;
}

p {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s var(--ease);
}

.gradient-text {
  background: var(--grad-official);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -------------------------------------------------------------
 * Buttons & Badges (Logical CSS)
 * ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  outline: none;
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--grad-official);
  color: var(--text-white);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -4px rgba(37, 99, 235, 0.45);
  color: var(--text-white);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.pill-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.16);
  margin-bottom: 24px;
}

.pill-status i {
  color: var(--cyan);
}

/* Language Switcher Button */
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.lang-toggle-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #F8FAFC;
}

/* -------------------------------------------------------------
 * 1. Global Navigation Bar (RTL & LTR Logical)
 * ----------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 251, 253, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: all 0.3s var(--ease);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-brand img {
  height: 42px;
  width: auto;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-item-link {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 0;
  position: relative;
}

.nav-item-link:hover {
  color: var(--primary);
}

.nav-action-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Slide-Over Drawer */
.mobile-drawer {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

html[dir="ltr"] .mobile-nav-link i {
  transform: rotate(180deg);
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.mobile-sticky-bar .btn {
  width: 100%;
  padding: 14px;
}

/* -------------------------------------------------------------
 * 2. Hero Section (Editorial + Real Phone UI)
 * ----------------------------------------------------------- */
.hero-stage {
  padding-top: 145px;
  padding-bottom: 85px;
  position: relative;
  overflow: hidden;
  background-color: #FAFCFF;
  background-image: 
    radial-gradient(circle at 12% 20%, rgba(6, 182, 212, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(37, 99, 235, 0.09) 0%, transparent 48%),
    radial-gradient(circle at 50% 40%, rgba(124, 58, 237, 0.04) 0%, transparent 55%);
}

/* 60fps Interactive FX Canvas */
.hero-fx-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Cursor Spotlight Glow */
.hero-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  margin-top: -260px;
  margin-left: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, rgba(37, 99, 235, 0.14) 38%, rgba(124, 58, 237, 0.04) 65%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform, opacity;
}

.hero-spotlight.is-active {
  opacity: 1;
}

/* Ambient Floating Background Orbs */
.hero-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
  will-change: transform;
}

.hero-ambient-orb.orb-1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(37, 99, 235, 0.08) 60%, transparent 100%);
  top: -80px;
  inset-inline-end: -60px;
  animation: floatOrb1 20s ease-in-out infinite alternate;
}

.hero-ambient-orb.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(124, 58, 237, 0.08) 60%, transparent 100%);
  bottom: -100px;
  inset-inline-start: -90px;
  animation: floatOrb2 24s ease-in-out infinite alternate;
}

.hero-ambient-orb.orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(6, 182, 212, 0.06) 65%, transparent 100%);
  top: 45%;
  inset-inline-start: 35%;
  animation: floatOrb3 18s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-30px, 25px, 0) scale(1.06); }
  100% { transform: translate3d(20px, 35px, 0) scale(0.96); }
}

@keyframes floatOrb2 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(35px, -25px, 0) scale(1.08); }
  100% { transform: translate3d(-20px, -20px, 0) scale(0.94); }
}

@keyframes floatOrb3 {
  0% { transform: translate3d(0, 0, 0) scale(0.95); }
  50% { transform: translate3d(-25px, -20px, 0) scale(1.1); }
  100% { transform: translate3d(25px, 15px, 0) scale(1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin-bottom: 22px;
}

.hero-copy p.lead {
  margin-bottom: 34px;
  max-width: 580px;
  font-size: 1.22rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--border-subtle);
}

.stat-block {
  display: flex;
  flex-direction: column;
}

.stat-figure {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Smartphone FinTech Mockup */
.phone-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
  z-index: 2;
}

.phone-device {
  width: 100%;
  max-width: 375px;
  background: #0B0F19;
  border-radius: 48px;
  padding: 12px;
  box-shadow: var(--shadow-phone);
  border: 4px solid #2A344A;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.phone-inner-screen {
  background: #FFFFFF;
  border-radius: 38px;
  overflow: hidden;
  padding: 24px 20px;
  font-size: 0.9rem;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 20px;
  padding: 0 4px;
}

.notch {
  width: 110px;
  height: 22px;
  background: #0B0F19;
  border-radius: 0 0 16px 16px;
  margin: -24px auto 14px auto;
}

.phone-merchant-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 16px;
}

.merchant-logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-official);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.merchant-name {
  font-weight: 700;
  font-size: 0.96rem;
  color: #0F172A;
}

.merchant-sub {
  font-size: 0.78rem;
  color: #64748B;
}

.phone-bill-amount {
  background: #F8FAFC;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  margin-bottom: 18px;
  border: 1px solid #E2E8F0;
}

.bill-amount-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.bill-amount-label {
  font-size: 0.8rem;
  color: #64748B;
}

.installment-schedule-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.installment-steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.installment-step-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: #F1F5F9;
  font-size: 0.82rem;
  font-weight: 600;
}

.installment-step-row.paid {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.phone-confirm-btn {
  width: 100%;
  padding: 14px;
  background: var(--grad-official);
  color: #fff;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatUpDown 5s ease-in-out infinite;
  transition: transform 0.2s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.hero-floating-card:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.22);
  border-color: rgba(6, 182, 212, 0.4);
}

.h-card-left {
  top: 40px;
  inset-inline-start: -20px;
}

.h-card-right {
  bottom: 50px;
  inset-inline-end: -20px;
  animation-delay: 2.5s;
}

.h-card-pill {
  top: -14px;
  inset-inline-end: 18px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(6, 182, 212, 0.35);
  box-shadow: 0 10px 28px -6px rgba(6, 182, 212, 0.22);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatUpDown 5.5s ease-in-out infinite;
  animation-delay: 1.2s;
  z-index: 12;
}

.pulse-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2.2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

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

/* -------------------------------------------------------------
 * Anaverse Floating 4-Metric Bar (Reference 3)
 * ----------------------------------------------------------- */
.anaverse-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 22px 28px;
  box-shadow: 0 14px 34px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.8);
  margin-top: 36px;
}

.anaverse-metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.anaverse-metric-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.anaverse-metric-info {
  display: flex;
  flex-direction: column;
}

.anaverse-metric-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
}

.anaverse-metric-label {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

/* -------------------------------------------------------------
 * Floating Booking & Installment Bar (Shanti & Travel Model)
 * ----------------------------------------------------------- */
.floating-booking-wrapper {
  margin-top: -65px;
  position: relative;
  z-index: 50;
  margin-bottom: 60px;
}

.floating-booking-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.85);
  padding: 8px 12px 24px 12px;
}

.booking-tabs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 14px 10px;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 20px;
  overflow-x: auto;
}

.booking-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.booking-tab-btn:hover {
  color: var(--primary);
  background: #F8FAFC;
}

.booking-tab-btn.active {
  background: #EFF6FF;
  color: var(--primary);
  font-weight: 700;
}

.booking-inputs-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1.3fr 1.3fr auto;
  gap: 16px;
  align-items: center;
  padding: 0 12px;
}

.booking-input-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-input-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-input-item select,
.booking-input-item input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
  font-family: inherit;
  transition: all 0.2s var(--ease);
}

.booking-input-item select:focus,
.booking-input-item input:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.est-installment-display {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.est-installment-display .est-title {
  font-size: 0.74rem;
  color: #15803D;
  font-weight: 600;
}

.est-installment-display .est-val {
  font-size: 1.18rem;
  font-weight: 800;
  color: #166534;
  line-height: 1.25;
}

/* 4 Trust Badges (Travel Around The World model) */
.hero-trust-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 0 4px;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.trust-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #EFF6FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.trust-badge-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
}

/* -------------------------------------------------------------
 * Anaverse Model: About Us Section (NO Generic AI Boxes!)
 * ----------------------------------------------------------- */
.about-anaverse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-anaverse-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  border: 4px solid #FFFFFF;
}

.about-anaverse-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-anaverse-badge-overlay {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-hl-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EFF6FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-hl-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.about-hl-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -------------------------------------------------------------
 * Sector Package Showcase Cards (Shanti Travels Model)
 * ----------------------------------------------------------- */
.packages-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.package-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.package-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.package-card:hover .package-card-img-wrap img {
  transform: scale(1.06);
}

.package-card-badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  background: var(--grad-official);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.package-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-card-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.4;
}

.package-card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-card-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.package-card-bullets li i {
  color: #10B981;
  font-size: 0.85rem;
}

.package-card-footer {
  padding-top: 18px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-installment-tag {
  display: flex;
  flex-direction: column;
}

.package-installment-tag .tag-lbl {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-installment-tag .tag-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

/* -------------------------------------------------------------
 * 3. Open Canvas Story Sections (NO CLUTTER)
 * ----------------------------------------------------------- */
.editorial-sector-block {
  padding: 110px 0;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.editorial-sector-block:nth-child(even) {
  background: #FFFFFF;
}

.editorial-sector-block:nth-child(odd) {
  background: #FAFBFD;
}

.sector-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Reverse layout in RTL and LTR cleanly */
html[dir="rtl"] .sector-split-grid.reverse {
  direction: ltr;
}
html[dir="rtl"] .sector-split-grid.reverse > * {
  direction: rtl;
}

html[dir="ltr"] .sector-split-grid.reverse {
  direction: rtl;
}
html[dir="ltr"] .sector-split-grid.reverse > * {
  direction: ltr;
}

.sector-tag-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  display: block;
}

.sector-copy h2 {
  margin-bottom: 18px;
}

.sector-copy p {
  margin-bottom: 22px;
}

.sector-feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.sector-feature-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.sector-photo-container {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 4px solid #FFFFFF;
}

.sector-photo-container img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.sector-photo-container:hover img {
  transform: scale(1.03);
}

.sector-quote-badge {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  inset-inline-end: 24px;
  padding: 18px 24px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-md);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.02rem;
  font-weight: 600;
}

/* -------------------------------------------------------------
 * 4. The Live Artery (How It Works)
 * ----------------------------------------------------------- */
.section-artery {
  padding: 110px 0;
  background: var(--bg-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.artery-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 65px auto;
}

.artery-header h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.artery-header p {
  color: #94A3B8;
}

.artery-flow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.artery-step-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 34px 24px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.artery-step-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.artery-step-card.pulse-hub {
  background: linear-gradient(180deg, #162035 0%, #0F172A 100%);
  border-color: rgba(6, 182, 212, 0.4);
}

.step-counter {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: block;
}

.step-artery-title {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-artery-desc {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* -------------------------------------------------------------
 * 5. Interactive Payment Simulator
 * ----------------------------------------------------------- */
.section-simulator {
  padding: 110px 0;
  background: #FFFFFF;
}

.simulator-box {
  max-width: 980px;
  margin: 0 auto;
  background: #090E1A;
  border-radius: var(--r-xl);
  padding: 56px;
  color: #FFFFFF;
  box-shadow: var(--shadow-phone);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.sim-field {
  margin-bottom: 24px;
}

.sim-field label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #CBD5E1;
  margin-bottom: 10px;
}

.sim-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 1.1rem;
  outline: none;
  transition: all 0.25s var(--ease);
}

.sim-input:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
}

.sim-pills-row {
  display: flex;
  gap: 10px;
}

.sim-pill-btn {
  flex: 1;
  padding: 12px 0;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  touch-action: manipulation;
}

.sim-pill-btn.active {
  background: var(--grad-official);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}

.sim-result-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 38px 28px;
  text-align: center;
}

.sim-result-sub {
  font-size: 0.9rem;
  color: #94A3B8;
  margin-bottom: 8px;
}

.sim-result-figure {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.15;
  margin-bottom: 8px;
}

.sim-result-terms {
  font-size: 1.05rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 22px;
}

/* -------------------------------------------------------------
 * 6. Global Reach (Saudi to the World)
 * ----------------------------------------------------------- */
.section-manifesto {
  padding: 110px 0;
  background: #FAFBFD;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.manifesto-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 4px solid #FFFFFF;
}

.manifesto-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* -------------------------------------------------------------
 * 7. Partner Registration Form
 * ----------------------------------------------------------- */
.section-partner-form {
  padding: 110px 0;
  background: #FFFFFF;
}

.partner-form-card {
  max-width: 860px;
  margin: 0 auto;
  background: #FAFBFD;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 54px;
  box-shadow: var(--shadow-float);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-input-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border-subtle);
  background: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.25s var(--ease);
}

.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* -------------------------------------------------------------
 * 8. Footer (Executive Dark)
 * ----------------------------------------------------------- */
.footer-executive {
  background: var(--bg-dark);
  color: #94A3B8;
  padding: 85px 0 35px 0;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 55px;
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #94A3B8;
  font-size: 0.95rem;
}

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

html[dir="rtl"] .footer-nav a:hover {
  transform: translateX(-4px);
  display: inline-block;
}

html[dir="ltr"] .footer-nav a:hover {
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom-row {
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

/* =============================================================
 * 9. RESPONSIVE BREAKPOINTS (MOBILE FIRST)
 * =========================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .sector-split-grid,
  .manifesto-grid,
  .simulator-grid,
  .about-anaverse-grid,
  .packages-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .anaverse-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-inputs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-trust-badges-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .artery-flow-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links-desktop,
  .nav-action-desktop {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 74px;
  }

  .hero-stage {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .floating-booking-wrapper {
    margin-top: -30px;
    margin-bottom: 40px;
  }

  .booking-inputs-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-badges-row {
    grid-template-columns: 1fr;
  }

  .anaverse-metrics-bar {
    grid-template-columns: 1fr 1fr;
    padding: 18px 16px;
    gap: 16px;
  }

  .anaverse-metric-num {
    font-size: 1.5rem;
  }

  .about-highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-anaverse-photo img {
    height: 320px;
  }

  .hero-stats-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }

  .stat-figure {
    font-size: 1.65rem;
  }

  .hero-floating-card {
    display: none;
  }

  .sector-photo-container img,
  .manifesto-photo img {
    height: 350px;
  }

  .sector-quote-badge {
    position: static;
    margin-top: 14px;
    background: #090E1A;
  }

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

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .simulator-box,
  .partner-form-card {
    padding: 26px 18px;
    border-radius: var(--r-lg);
  }

  .sim-result-figure {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   Font Awesome 6 Free Safety Aliases & Directional Fixes
   ========================================================================== */
/* fa-shield-check is Pro-only in FA6; fallback to fa-shield-halved (\f3ed) ensures zero blank icons */
.fa-shield-check::before,
.fas.fa-shield-check::before {
  content: "\f3ed" !important;
}

/* Directional arrow flipping in LTR mode */
html[dir="ltr"] .fa-arrow-left {
  transform: scaleX(-1);
  display: inline-block;
}

/* Accessibility: Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-spotlight,
  .hero-ambient-orb,
  .hero-floating-card,
  .h-card-pill,
  .pulse-indicator,
  .phone-device {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}



