/* ===================== CSS VARIABLES ===================== */
:root {
  --primary: #1D80C3;
  --primary-dark: #1568A0;
  --primary-light: #EBF5FC;
  --primary-glow: rgba(29, 128, 195, 0.25);
  --accent: #16A34A;
  --accent-glow: rgba(22, 163, 74, 0.25);
  --gold: #D97706;
  --surface: #F8FAFB;
  --surface-2: #F0F4F8;
  --surface-3: #E8EFF5;
  --surface-card: #FFFFFF;
  --border: rgba(29, 128, 195, 0.12);
  --border-light: #E2EAF0;
  --text: #0D1B2A;
  --text-2: #3D5166;
  --text-3: #546A7D;
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Inter', sans-serif;
  --transition: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-ar);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===================== SCROLLBAR & SELECTION ===================== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
  border: 3px solid var(--surface);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

::selection {
  background: var(--primary-glow);
  color: var(--primary-dark);
}

::-moz-selection {
  background: var(--primary-glow);
  color: var(--primary-dark);
}


/* ===================== NAVBAR & MEGA MENU ===================== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(29, 128, 195, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(29, 128, 195, 0.12), inset 0 1px 0 rgba(255,255,255,1);
  top: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-glass-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(29, 128, 195, 0.08), inset 0 1px 0 rgba(255,255,255,1);
  transition: transform 0.3s ease;
}
.nav-logo:hover .logo-glass-frame {
  transform: translateY(-2px) scale(1.05);
}
.nav-logo img {
  width: 34px; 
  height: 34px; 
  border-radius: 8px;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 24px; font-weight: 800; color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}

/* Mega Menu Dropdown */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 16px;
  min-width: 280px;
  box-shadow: 0 20px 40px rgba(29, 128, 195, 0.15), inset 0 1px 0 rgba(255,255,255,1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  top: calc(100% + 12px);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 16px;
  background: transparent;
  transition: all 0.2s;
}
.dropdown-menu li a:hover {
  background: rgba(29, 128, 195, 0.05);
}
.dm-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.dm-icon-blue { background: rgba(29, 128, 195, 0.1); color: var(--primary); }
.dm-icon-green { background: rgba(22, 163, 74, 0.1); color: var(--accent); }
.dm-text-wrap { display: flex; flex-direction: column; gap: 4px; }
.dm-title { font-size: 15px; font-weight: 700; color: var(--text); }
.dm-desc { font-size: 12px; font-weight: 400; color: var(--text-3); line-height: 1.4; }
.dm-divider { height: 1px; background: var(--border-light); margin: 4px 12px; }

/* Hamburger Menu Base */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.btn-nav {
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-ar);
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-nav-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-light);
}

.btn-nav-ghost:hover {
  background: var(--surface-2);
  color: var(--text);
}

.btn-nav-primary {
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.btn-nav-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  transform: skewX(-20deg);
  animation: nav-cta-shimmer 3.5s ease-in-out infinite;
}

@keyframes nav-cta-shimmer {
  0% { transform: translateX(0) skewX(-20deg); opacity: 0; }
  10% { opacity: 1; }
  40% { transform: translateX(410%) skewX(-20deg); opacity: 1; }
  41% { transform: translateX(410%) skewX(-20deg); opacity: 0; }
  100% { transform: translateX(410%) skewX(-20deg); opacity: 0; }
}

.btn-nav-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(29, 128, 195, 0.45);
  transform: translateY(-1px);
}

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding: 180px 48px 80px;
  overflow: hidden;
  background: transparent;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}

.hero-stats {
  display: flex;
  gap: 14px;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(29, 128, 195, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 100px;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(29, 128, 195, 0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider { display: none; }
.nav-cta {
  display: flex;
}




.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(29, 128, 195, 0.18) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: 100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 128, 195, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbFloat {

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

  50% {
    transform: translateY(-40px) scale(1.05);
  }
}

@keyframes orbPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.hero-content {
  flex: 1;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #00C6FF 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-sub strong {
  color: var(--primary);
  font-weight: 700;
}

/* DOWNLOAD BUTTONS */
.download-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.download-main-wrap {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(29, 128, 195, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  gap: 6px;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  transition: all 0.3s ease;
}
.qr-box:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 128, 195, 0.16), inset 0 1px 0 rgba(255,255,255,1);
}

.qr-box img {
  width: 54px;
  height: 54px;
  border-radius: 6px;
}

.qr-text {
  font-size: 10px;
  font-weight: 800;
  color: var(--primary);
}

.download-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--primary), #0063CC);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.download-main::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  transform: skewX(-20deg);
  animation: nav-cta-shimmer 3.5s ease-in-out infinite;
}

.download-main:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.download-main svg {
  width: 28px;
  height: 28px;
}

.download-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.download-store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.download-store:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.download-store svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.store-text small {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-3);
}

.store-text span {
  font-size: 13px;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 14px;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(29, 128, 195, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 100px;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(29, 128, 195, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  display: none;
}

/* PHONE 3D MOCKUP */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.phone-scene {
  position: relative;
  width: 340px;
  height: 680px;
  animation: phoneFloat 5s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotateY(-8deg) rotateX(3deg);
  }

  50% {
    transform: translateY(-20px) rotateY(-12deg) rotateX(5deg);
  }
}

.phone-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* 3D Phone Frame */
.phone-frame {
  position: absolute;
  inset: 0;
  border-radius: 52px;
  background: #000;
  border: 8px solid #000;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #444,
    inset 0 0 0 4px #1a1a1a,
    0 40px 80px rgba(0, 0, 0, 0.4);
}

/* Dynamic Island */
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 999px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.15);
}

.notch-cam {
  width: 14px;
  height: 14px;
  background: #0a0a0a;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.notch-sensor {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px 6px 6px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.hero-badge-icon {
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}

.notch-cam::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #9ECAE0;
  border-radius: 50%;
}

/* Phone Screen Content */
.phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  justify-content: flex-end;
  padding: 32px 24px 16px;
  color: var(--primary);
  font-size: 22px;
}

.app-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  margin: 8px 0 24px;
  letter-spacing: -0.5px;
}

.app-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 24px 24px;
  padding: 16px 20px;
  background: #FFFFFF;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  color: #94a3b8;
  font-size: 14px;
}

.app-search .search-icon {
  font-size: 16px;
}

.app-categories {
  display: flex;
  gap: 12px;
  padding: 0 24px 24px;
  overflow-x: hidden;
  /* static display for the mockup */
}

.app-cat-chip {
  padding: 12px 20px;
  background: #f8fafc;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

.app-cat-chip.active {
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-cat-chip.active i {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px;
  border-radius: 50%;
  font-size: 10px;
}

.app-skeletons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px;
}

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

.skel-img {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  border-radius: 16px;
  flex-shrink: 0;
}

.skel-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skel-line {
  height: 12px;
  background: #f1f5f9;
  border-radius: 999px;
}

.app-bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 85px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 16px 20px;
  border-top: 1px solid #f1f5f9;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
}

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

.nav-item.active .nav-icon-wrap {
  background: #eff6ff;
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-item i {
  font-size: 20px;
}

/* Phone reflections */
.phone-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  border-radius: 44px 44px 0 0;
  pointer-events: none;
}

/* Floating notification cards */
.floating-card {
  position: absolute;
  background: #FFFFFF;
  border: none;
  border-radius: 24px;
  padding: 12px 16px;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.fc-title {
  color: var(--text) !important;
}

.fc-sub {
  color: var(--text-3) !important;
}

.fc-1 {
  left: -120px;
  top: 15%;
  animation: floatCard1 6s ease-in-out infinite;
}

.fc-2 {
  right: -100px;
  top: 45%;
  animation: floatCard2 7s ease-in-out infinite 1s;
}

.fc-3 {
  left: -80px;
  bottom: 20%;
  animation: floatCard3 8s ease-in-out infinite 2s;
}

@keyframes floatCard1 {

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

  50% {
    transform: translateY(-10px) translateX(-5px);
    opacity: 0.9;
  }
}

@keyframes floatCard2 {

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

  50% {
    transform: translateY(12px);
  }
}

@keyframes floatCard3 {

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

  50% {
    transform: translateY(-8px) translateX(5px);
  }
}

.fc-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.fc-icon-green {
  background: rgba(48, 209, 88, 0.15);
}

.fc-icon-blue {
  background: rgba(10, 132, 255, 0.15);
}

.fc-icon-orange {
  background: rgba(255, 159, 10, 0.15);
}

.fc-text {
  display: flex;
  flex-direction: column;
}

.fc-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.fc-sub {
  font-size: 10px;
  color: var(--text-3);
  margin-top: 1px;
}

/* Orbit rings around phone */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 132, 255, 0.12);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 420px;
  height: 420px;
  animation: orbitSpin 20s linear infinite;
}

.orbit-2 {
  width: 560px;
  height: 560px;
  animation: orbitSpin 30s linear infinite reverse;
}

@keyframes orbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===================== PARTNERS MARQUEE ===================== */
.partners-marquee {
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  padding: 30px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF, transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF, transparent);
}

.marquee-content {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 40s linear infinite;
  padding-left: 60px;
  /* match gap */
  width: max-content;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: default;
}

.partner-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partner-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  background: var(--surface);
}

.partner-item span {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-2);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% / 4));
  }
}

@media (max-width: 768px) {
  .partners-marquee {
    padding: 20px 0;
  }

  .marquee-content {
    gap: 40px;
    padding-left: 40px;
  }

  .partner-item img {
    width: 40px;
    height: 40px;
  }

  .partner-item span {
    font-size: 14px;
  }

  .partners-marquee::before,
  .partners-marquee::after {
    width: 60px;
  }
}

/* ===================== CUISINES ===================== */
.cuisines {
  padding: 80px 48px;
  background: var(--surface-2);
}

.cuisines-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.cuisine-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  background: #000;
}

.cuisine-img {
  width: 100%;
  height: 100%;
}

.cuisine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.8;
}

.cuisine-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  transition: opacity 0.3s ease;
}

.cuisine-name {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  z-index: 2;
  transition: transform 0.3s ease;
  letter-spacing: -0.5px;
}

.cuisine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.cuisine-card:hover .cuisine-img img {
  transform: scale(1.1);
  opacity: 1;
}

.cuisine-card:hover .cuisine-name {
  transform: translateY(-4px);
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .cuisines {
    padding: 48px 16px;
  }

  .cuisines-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
  }

  .cuisines-track::-webkit-scrollbar {
    display: none;
  }

  .cuisine-card {
    min-width: 110px;
    height: 110px;
    scroll-snap-align: start;
    flex-shrink: 0;
    border-radius: 16px;
  }
  .cuisine-name {
    font-size: 13px;
    bottom: 10px;
    left: 8px;
    right: 8px;
    text-align: center;
  }
}

/* ===================== FAQ ===================== */
.faq {
  padding: 80px 48px;
  background: #FFFFFF;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.faq-q {
  padding: 24px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-q:hover {
  background: var(--surface-2);
}

.faq-q i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-2);
  line-height: 1.6;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-a {
  padding: 0 24px 24px 24px;
  max-height: 300px;
  opacity: 1;
}

@media (max-width: 768px) {
  .faq {
    padding: 48px 16px;
  }

  .faq-q {
    font-size: 16px;
    padding: 20px;
  }
}

/* ===================== FEATURES SECTION ===================== */
.features {
  position: relative;
  z-index: 2;
  padding: 100px 48px;
  background: linear-gradient(160deg, #F0F7FF 0%, #F8FAFB 40%, #EBF5FC 100%);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 1);
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
  box-shadow: 0 8px 32px rgba(29, 128, 195, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

.feat-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(29, 128, 195, 0.12), inset 0 1px 0 rgba(255,255,255,1);
  border-color: rgba(29, 128, 195, 0.15);
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(29, 128, 195, 0.4) 30%,
      rgba(29, 128, 195, 0.8) 50%,
      rgba(29, 128, 195, 0.4) 70%,
      transparent 100%);
  border-radius: 32px 32px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feat-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(29, 128, 195, 0.14),
    0 8px 16px rgba(29, 128, 195, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(29, 128, 195, 0.2);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-card.large {
  grid-column: span 2;
}

.feat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.fi-blue {
  background: rgba(29, 128, 195, 0.1);
}

.fi-green {
  background: rgba(22, 163, 74, 0.1);
}

.fi-gold {
  background: rgba(217, 119, 6, 0.1);
}

.fi-purple {
  background: rgba(124, 58, 237, 0.1);
}

.fi-red {
  background: rgba(220, 38, 38, 0.1);
}

.feat-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feat-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

.feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 16px;
}

.ft-blue {
  background: rgba(29, 128, 195, 0.1);
  color: var(--primary);
  border: 1px solid rgba(29, 128, 195, 0.2);
}

.ft-green {
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Speed Visualization */
.speed-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.speed-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.speed-label {
  font-size: 12px;
  color: var(--text-3);
  width: 60px;
  text-align: left;
}

.speed-track {
  flex: 1;
  height: 6px;
  background: rgba(29, 128, 195, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.speed-fill {
  height: 100%;
  border-radius: 999px;
  animation: speedFill 2s ease both;
  transform-origin: left;
}

@keyframes speedFill {
  from {
    transform: scaleX(0);
  }
}

.sf-blue {
  background: linear-gradient(90deg, var(--primary), #00C6FF);
}

.sf-green {
  background: linear-gradient(90deg, var(--accent), #00FF87);
}

.speed-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  width: 35px;
  text-align: right;
}

/* ===================== THE HADER DIFFERENCE ===================== */
.hader-difference {
  position: relative;
  z-index: 2;
  padding: 100px 48px;
  background: var(--surface);
}

@media (max-width: 768px) {
  .hader-difference {
    padding: 60px 24px;
  }
}

/* ===================== HOW IT WORKS ===================== */
.how-it-works {
  position: relative;
  z-index: 2;
  padding: 100px 48px;
  background: linear-gradient(160deg, #EBF5FC 0%, #F0F4F8 50%, #E8F4FD 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--primary), var(--border), transparent);
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 1);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(29, 128, 195, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(29, 128, 195, 0.5) 30%, rgba(29, 128, 195, 0.9) 50%, rgba(29, 128, 195, 0.5) 70%, transparent 100%);
  border-radius: 32px 32px 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(29, 128, 195, 0.15), 0 8px 16px rgba(29, 128, 195, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(29, 128, 195, 0.18);
}

.step-card:hover::after {
  opacity: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(29, 128, 195, 0.35), 0 0 0 6px rgba(29, 128, 195, 0.1);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ===================== APP SHOWCASE ===================== */
.app-showcase {
  padding: 80px 48px;
  background: var(--surface-2);
  text-align: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.screen-frame {
  width: 240px;
  height: 480px;
  background: #111;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(29, 128, 195, 0.15);
  position: relative;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.showcase-item:hover .screen-frame {
  transform: translateY(-16px);
  box-shadow: 0 30px 60px rgba(29, 128, 195, 0.25);
}

.screen-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #111;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 2;
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  background: #fff;
}

.showcase-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.showcase-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 280px;
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .screen-frame {
    width: 260px;
    height: 520px;
  }
}

@media (max-width: 768px) {
  .app-showcase {
    padding: 48px 16px;
  }
}

/* ===================== AREAS SECTION ===================== */
.areas {
  position: relative;
  z-index: 2;
  padding: 100px 48px;
  background: #FFFFFF;
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}

.map-visual {
  position: relative;
  background: var(--primary-light);
  border: 1.5px solid rgba(29, 128, 195, 0.18);
  border-radius: 32px;
  padding: 32px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(29, 128, 195, 0.08);
}

.map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(29, 128, 195, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(22, 163, 74, 0.06) 0%, transparent 40%);
}

/* Grid lines for map effect */
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 128, 195, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 128, 195, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.map-pin-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.map-pulse {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: mapPulse 2s ease-in-out infinite;
}

.mp-1 {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.mp-2 {
  width: 130px;
  height: 130px;
  animation-delay: 0.5s;
}

.mp-3 {
  width: 180px;
  height: 180px;
  animation-delay: 1s;
}

@keyframes mapPulse {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.map-pin-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #0063CC);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 30px var(--primary-glow);
  position: relative;
  z-index: 3;
}

.map-label {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.map-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}

.areas-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(29, 128, 195, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.area-item:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(6px);
  box-shadow: 0 16px 40px rgba(29, 128, 195, 0.14), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(29, 128, 195, 0.2);
}

.area-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(29, 128, 195, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.area-text {
  flex: 1;
}

.area-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.area-desc {
  font-size: 13px;
  color: var(--text-3);
}

.area-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.as-active {
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.as-soon {
  background: rgba(217, 119, 6, 0.1);
  color: var(--gold);
  border: 1px solid rgba(217, 119, 6, 0.2);
}



/* ===================== CTA SECTION ===================== */
.cta-section {
  padding: 100px 48px;
  background: var(--surface-2);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 48px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.cta-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}

.cta-title .gradient-text {
  background: linear-gradient(135deg, #fff, #e0f2fe);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.cta-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.btn-cta-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-ar);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  background: #F0F7FF;
}

.btn-cta-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-ar);
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

/* CTA Layout */
.cta-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.cta-btn-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}

.cta-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.full-width-btn {
  width: 100%;
  justify-content: center;
}

.half-width-btn {
  width: 100%;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
}

.qr-box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.qr-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
}

.qr-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

/* QR Code visual */
.cta-qr {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}

.qr-box {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.qr-box svg {
  width: 100%;
  height: 100%;
}

.qr-label {
  font-size: 11px;
  color: var(--text-3);
}

/* ===================== FOOTER ===================== */
.footer {
  position: relative;
  z-index: 2;
  padding: 60px 48px 32px;
  border-top: 1px solid var(--border-light);
  background: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.footer-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--primary-light);
  border-color: rgba(29, 128, 195, 0.3);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.9);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-card.large {
    grid-column: span 2;
  }

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

  .steps-grid::before {
    display: none;
  }

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

@media (max-width: 900px) {
  .navbar {
    padding: 16px 24px;
  }

  .hero {
    padding: 160px 24px 80px;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: center;
  }

  .hero-visual {
    display: none !important;
  }

  .phone-scene {
    display: none !important;
  }

  .fc-1,
  .fc-2,
  .fc-3 {
    display: none;
  }

  .orbit-1,
  .orbit-2 {
    display: none;
  }

  .features {
    padding: 60px 24px;
  }

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

  .feat-card.large {
    grid-column: span 1;
  }

  .how-it-works {
    padding: 60px 24px;
  }

  .areas {
    padding: 60px 24px;
  }

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

  .testimonials {
    padding: 60px 24px;
  }

  .cta-section {
    padding: 60px 24px;
  }

  .cta-card {
    padding: 48px 28px;
  }

  .footer {
    padding: 48px 24px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 12px 16px;
  }

  .hero {
    padding: 150px 16px 60px;
    gap: 32px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .download-group {
    margin-bottom: 32px;
  }

  .download-main {
    padding: 14px 20px;
    font-size: 16px;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-divider {
    display: none;
  }

  /* Global Section Adjustments */
  .features,
  .how-it-works,
  .areas,
  .testimonials,
  .cuisines,
  .faq,
  .app-showcase,
  .join-us,
  .cta-section {
    padding: 48px 16px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .feat-card {
    padding: 20px;
    border-radius: 20px;
  }

  .feat-title {
    font-size: 18px;
  }

  .feat-desc {
    font-size: 14px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .step-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .areas-content {
    margin-top: 24px;
    gap: 24px;
  }

  .map-visual {
    min-height: 240px;
    padding: 16px;
    border-radius: 20px;
  }

  .area-item {
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
  }

  .testi-grid {
    gap: 16px;
    margin-top: 24px;
  }

  .testi-card {
    padding: 20px;
    border-radius: 16px;
  }
}

/* TESTIMONIALS GLASSMORPHISM */
.testi-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 1);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(29, 128, 195, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(29, 128, 195, 0.14), 0 8px 16px rgba(29, 128, 195, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(29, 128, 195, 0.15);
}

.testi-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.testi-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testi-info p {
  font-size: 12px;
  color: var(--text-3);
}

/* ===================== LANG TOGGLE ===================== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-toggle:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ===================== TICKER BAND / PARTNERS ===================== */
.ticker-band {
  position: relative;
  z-index: 2;
  padding: 24px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 24px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--surface-3);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.partner-item:hover {
  background: var(--primary-light);
  border-color: rgba(29, 128, 195, 0.3);
  color: var(--primary);
  transform: translateY(-2px);
}

.pi-icon {
  font-size: 20px;
}

/* ===================== MOBILE OVERRIDES ===================== */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  margin-right: 15px;
  transition: color 0.2s ease;
}

.hamburger:hover {
  color: var(--primary);
}

@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(248, 250, 251, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-links > li {
    width: 100%;
    text-align: center;
  }

  .nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 12px;
    margin-top: 12px;
    display: none;
    gap: 8px;
    width: 100%;
    min-width: unset;
  }

  .dropdown-menu li a {
    padding: 10px 12px;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .dm-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .dm-title {
    font-size: 14px;
  }

  .dm-desc {
    font-size: 11px;
    white-space: normal;
  }

  .nav-dropdown.open .dropdown-menu {
    display: flex;
  }
}

/* ===================== FLOATING ACTION BUTTON ===================== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pulse-whatsapp 2s infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

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

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

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

@media (max-width: 768px) {
  .fab-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}

/* ===================== FORMS ===================== */
.form-container {
  position: relative;
  max-width: 600px;
  margin: 120px auto 60px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 20px rgba(29, 128, 195, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

@media (max-width: 600px) {
  .form-container {
    padding: 32px 20px;
    margin-top: 100px;
    border-radius: 24px;
  }
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-sub {
  font-size: 15px;
  color: var(--text-2);
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: all 0.2s;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(29, 128, 195, 0.1), inset 0 2px 4px rgba(0,0,0,0.02);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(29, 128, 195, 0.3);
  transition: all 0.2s;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 128, 195, 0.4);
}

@media (max-width: 768px) {

  /* Disable Animations on Mobile */
  .hero-visual,
  .phone-scene,
  .feat-card,
  .floating-card {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  .feat-card:hover {
    transform: none !important;
  }
}

/* ===================== 3D TILT ENHANCEMENTS ===================== */
.feat-card,
.step-card,
.area-item,
.testi-card,
.cta-card {
  transform-style: preserve-3d;
}

.feat-icon-wrap,
.step-icon,
.area-icon,
.testi-avatar,
.testi-user img {
  transform: translateZ(40px);
}

.feat-title,
.step-title,
.area-name,
.testi-text,
.cta-title {
  transform: translateZ(25px);
}

.feat-desc,
.step-desc,
.area-desc,
.testi-info,
.cta-sub {
  transform: translateZ(15px);
}

.hero-stats {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.stat-divider {
  width: 50%;
  height: 1px;
}

/* ===================== LEVEL 3 MOUSE SPOTLIGHT ===================== */
.feat-card,
.area-item,
.testi-card,
.cta-card {
  position: relative;
  overflow: hidden;
  /* Important so glow stays inside the border-radius */
}

.feat-card::before,
.area-item::before,
.testi-card::before,
.cta-card::before,
.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(800px circle at var(--mouse-x, -200px) var(--mouse-y, -200px),
      rgba(29, 128, 195, 0.08),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.feat-card:hover::before,
.area-item:hover::before,
.testi-card:hover::before,
.cta-card:hover::before,
.form-container:hover::before {
  opacity: 1;
}

/* For CTA card which is dark */
.cta-card::before {
  background: radial-gradient(800px circle at var(--mouse-x, -200px) var(--mouse-y, -200px),
      rgba(255, 255, 255, 0.15),
      transparent 40%);
}

/* Inner border glow */
.feat-card::after,
.area-item::after,
.testi-card::after,
.cta-card::after,
.form-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(400px circle at var(--mouse-x, -200px) var(--mouse-y, -200px),
      rgba(29, 128, 195, 0.5),
      transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.feat-card:hover::after,
.area-item:hover::after,
.testi-card:hover::after,
.cta-card:hover::after,
.form-container:hover::after {
  opacity: 1;
}

.cta-card::after {
  background: radial-gradient(400px circle at var(--mouse-x, -200px) var(--mouse-y, -200px),
      rgba(255, 255, 255, 0.6),
      transparent 40%);
}


/* --- MOBILE FIXES --- */
body {
  width: 100%;
  position: relative;
}
.page-wrapper {
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 900px) {

  .hero-visual,
  .phone-scene {
    display: none !important;
  }

  .qr-box {
    display: none !important;
  }

  .cta-buttons-wrapper {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .cta-btn-group {
    width: 100%;
    min-width: 100%;
  }

  .qr-box-container {
    display: none !important;
  }

  .cta-card {
    padding: 40px 24px;
    border-radius: 32px;
  }
}

/* CTA Layout Desktop */
.cta-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.cta-btn-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}

.cta-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.full-width-btn {
  width: 100%;
  justify-content: center;
}

.half-width-btn {
  width: 100%;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
}

.qr-box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.qr-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
}

.qr-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

/* --- NAVBAR MOBILE SIZING FIX --- */
@media (max-width: 991px) {
  .navbar {
    top: 16px !important;
    width: calc(100% - 32px) !important;
    left: 16px !important;
    transform: none !important;
    padding: 12px 20px !important;
  }

  .navbar.scrolled {
    top: 12px !important;
    padding: 10px 20px !important;
  }

  .nav-links {
    top: 85px !important;
    width: calc(100% - 32px) !important;
    left: 16px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(29, 128, 195, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  }
}

/* Scroll Morphing: fully transparent at top */
.navbar.nav-transparent {
  background: transparent !important;
  backdrop-filter: blur(0px) !important;
  -webkit-backdrop-filter: blur(0px) !important;
  border-color: transparent !important;
  box-shadow: none !important;
  top: 20px;
}

.navbar.nav-transparent .nav-links a {
  color: rgba(15, 23, 42, 0.8);
}

.navbar.nav-transparent .nav-links a:hover {
  color: var(--primary);
}

.navbar.nav-transparent .nav-links a::before {
  background: rgba(29, 128, 195, 0.06);
}

/* Hero Stats Glass Mobile Fix */
@media (max-width: 600px) {
  .hero-stats {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat {
    padding: 12px 18px;
    min-width: 85px;
    border-radius: 16px;
  }

  .stat-num {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }
}






/* ===== FINAL NAV + TESTI FIXES ===== */
/* Ensure nav-links dropdown is invisible on desktop */
@media (min-width: 992px) {
  .nav-links {
    display: flex !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    backdrop-filter: none !important;
    flex-direction: row !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
}

/* ===================== TESTIMONIALS SECTION FIX ===================== */
.testimonials {
  position: relative;
  z-index: 2;
  padding: 100px 48px;
  background: linear-gradient(160deg, #EBF5FC 0%, #F0F4F8 50%, #E8F4FD 100%);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Avatar fix: proper sizing with ring */
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
  border: 2px solid rgba(29, 128, 195, 0.15);
}

.testi-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(29, 128, 195, 0.15);
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Stars spacing */
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* Quote text */
.testi-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(29, 128, 195, 0.08);
}

.testi-info h4,
.testi-info>div:first-child {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testi-info p,
.testi-info>div:last-child {
  font-size: 12px;
  color: var(--text-3);
}

/* Responsive */
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 48px 16px;
  }

  .testi-grid {
    gap: 16px;
    margin-top: 24px;
  }

  .testi-card {
    padding: 20px;
    border-radius: 16px;
  }
}
/* ===================== JOIN US ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â GLASS ===================== */
.join-us {
  position: relative;
  z-index: 2;
  padding: 100px 48px;
  background: linear-gradient(160deg, #F0F7FF 0%, #F8FAFB 40%, #EBF5FC 100%);
}
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.join-card {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 1);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(29, 128, 195, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.join-card:hover {
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(29, 128, 195, 0.16), inset 0 1px 0 rgba(255,255,255,1);
  border-color: rgba(29, 128, 195, 0.2);
}
.join-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(29,128,195,0.6), rgba(29,128,195,1), rgba(29,128,195,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}
.join-card:hover::before { opacity: 1; }
.join-img {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}
.join-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.join-card:hover .join-img img { transform: scale(1.04); }
.join-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.4) 45%,
    transparent 100%
  );
}
.join-content {
  padding: 0 32px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.join-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-top: -16px;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}
.join-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.join-desc {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  flex: 1;
}
.join-content .btn-cta-primary {
  align-self: flex-start;
  gap: 12px;
}
@media (max-width: 900px) {
  .join-grid { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 600px) {
  .join-us { padding: 48px 16px; }
  .join-content { padding: 0 20px 24px 20px; }
  .join-title { font-size: 22px; }
  .join-img { height: 200px; }
}

/* ===================== AURORA BACKGROUND ===================== */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: #F8FAFB;
  pointer-events: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out alternate;
}
.aurora-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,128,195,0.4) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.aurora-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.3) 0%, transparent 70%);
  bottom: -50px; right: -50px;
  animation-delay: -5s;
}
.aurora-3 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(56,189,248,0.25) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.9); }
  100% { transform: translate(20px, 20px) scale(1.05); }
}











