/* ==========================================================================
   GCCAPP - nano trip | Main Stylesheet
   Modern, High-Fidelity, Responsive RTL Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo:wght@400;600;700;800;900&display=swap');

:root {
  /* Brand Color Palette - Luxury Royal Navy & Sapphire */
  --primary: #1d4ed8;
  --primary-dark: #0a1936;
  --primary-light: #3b82f6;
  --accent: #38bdf8;
  --accent-glow: rgba(56, 189, 248, 0.35);
  --secondary: #6366f1;
  --purple-brand: #4f469c;
  
  /* Status & Accents */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gold: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.35);
  
  /* Luxury Navy Base Palette */
  --bg-main: #060d1f;          /* Deepest Imperial Navy */
  --bg-section-alt: #08142c;  /* Section Alternate Navy */
  --bg-surface: #0c1c3c;      /* Surface Navy */
  --bg-card: rgba(14, 29, 60, 0.85); /* Card Navy */
  --bg-card-hover: rgba(20, 42, 85, 0.95);
  --text-dark: #f8fafc;       /* Bright Crisp White-Ice for main headings */
  --text-body: #cbd5e1;       /* Clean Soft Silver-Slate for readable text */
  --text-muted: #94a3b8;      /* Secondary text */
  --text-light: #64748b;
  --border-color: rgba(96, 165, 250, 0.16);  /* Subtle Sapphire Frost Border */
  --border-card: rgba(96, 165, 250, 0.22);
  --border-card-hover: rgba(96, 165, 250, 0.55);
  
  /* Luxury Gradients */
  --gradient-primary: linear-gradient(135deg, #07122a 0%, #173269 50%, #1d4ed8 100%);
  --gradient-accent: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  --gradient-btn: linear-gradient(135deg, #2563eb 0%, #1d4ed8 60%, #1e40af 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --gradient-dark: linear-gradient(135deg, #050b18 0%, #0c1b3d 100%);
  --gradient-soft-blue: linear-gradient(180deg, #08142c 0%, #060d1f 100%);
  --gradient-card: linear-gradient(150deg, rgba(16, 34, 70, 0.8) 0%, rgba(10, 22, 48, 0.9) 100%);
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(2, 6, 23, 0.5);
  --shadow-md: 0 10px 30px rgba(2, 6, 23, 0.65);
  --shadow-lg: 0 20px 50px rgba(2, 6, 23, 0.8);
  --shadow-glow: 0 10px 35px rgba(37, 99, 235, 0.35);
  --shadow-card: 0 12px 35px rgba(2, 6, 23, 0.6);
  
  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;
}

body {
  font-family: 'Almarai', 'Cairo', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: var(--transition);
}

input, select {
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', 'Almarai', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-dark);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.16);
  color: #60a5fa;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
}

.section-badge.gold {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.55);
  border-color: #93c5fd;
}

.btn-outline {
  border: 1.5px solid rgba(96, 165, 250, 0.35);
  color: #f8fafc;
  background: rgba(14, 29, 60, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--primary-light);
  color: #ffffff;
  background: rgba(29, 78, 216, 0.3);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 13, 31, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(96, 165, 250, 0.14);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.7);
  background: rgba(6, 13, 31, 0.96);
  border-bottom-color: rgba(96, 165, 250, 0.22);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.6);
  border: 2px solid rgba(96, 165, 250, 0.4);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Cairo', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #60a5fa;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-menu-cta {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 90px;
  background: radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.22) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
              linear-gradient(180deg, #071228 0%, #0a1936 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(96, 165, 250, 0.15);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.18rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Hero Lead Form Card */
.lead-form-card {
  background: rgba(14, 29, 60, 0.75);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(96, 165, 250, 0.25);
  position: relative;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-btn);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

.form-header {
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
}

.input-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid rgba(96, 165, 250, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(8, 20, 44, 0.8);
  font-size: 0.95rem;
  color: #f8fafc;
}

.input-control:focus {
  border-color: var(--primary-light);
  background: rgba(14, 29, 60, 0.95);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
}

.phone-input-group {
  display: flex;
  direction: ltr;
  border: 1.5px solid rgba(96, 165, 250, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(8, 20, 44, 0.8);
  overflow: hidden;
  transition: var(--transition);
}

.phone-input-group:focus-within {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  background: rgba(14, 29, 60, 0.95);
}

.country-select {
  border: none;
  background: rgba(14, 29, 60, 0.9);
  padding: 0 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #f8fafc;
  cursor: pointer;
  border-right: 1px solid rgba(96, 165, 250, 0.25);
}

.phone-control {
  flex: 1;
  border: none;
  height: 48px;
  padding: 0 14px;
  font-size: 1rem;
  background: transparent;
  color: #ffffff;
  direction: ltr;
  text-align: left;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
  margin-top: 4px;
}

.form-disclaimer a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Hero Visual Box */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
  animation: hero-img-float 4.5s ease-in-out infinite;
  will-change: transform, box-shadow;
  transition: transform 0.5s ease;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(12, 26, 54, 0.94);
  backdrop-filter: blur(14px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.65);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.floating-badge.badge-1 {
  top: 12%;
  right: -20px;
  animation-delay: 0s;
}

.floating-badge.badge-2 {
  bottom: 14%;
  left: -20px;
  animation-delay: 2s;
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
}

.badge-icon.gold-bg {
  background: var(--gradient-gold);
}

.badge-icon.blue-bg {
  background: var(--gradient-btn);
}

.badge-info h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
}

.badge-info p {
  font-size: 0.8rem;
  color: #94a3b8;
}

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

@keyframes hero-img-float {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.5);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
  }
}

/* ==========================================================================
   Services & Features Section
   ========================================================================== */
.features-section {
  padding: 100px 0;
  background: #071228;
  border-bottom: 1px solid rgba(96, 165, 250, 0.12);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.feature-card {
  background: linear-gradient(150deg, rgba(16, 34, 70, 0.8) 0%, rgba(10, 22, 48, 0.9) 100%);
  border: 1.5px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.5);
  backdrop-filter: blur(12px);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(150deg, rgba(23, 48, 98, 0.9) 0%, rgba(14, 30, 64, 0.95) 100%);
  border-color: #60a5fa;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.25);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
  background: rgba(12, 26, 54, 0.9);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.4);
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.icon-blue {
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
}

.icon-purple {
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
}

.icon-emerald {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.icon-amber {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* ==========================================================================
   Payment Integrations Section
   ========================================================================== */
.payments-section {
  padding: 90px 0;
  background: #08142c;
  border-top: 1px solid rgba(96, 165, 250, 0.12);
  border-bottom: 1px solid rgba(96, 165, 250, 0.12);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.payment-card {
  background: rgba(14, 29, 60, 0.75);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.4);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.payment-card:hover {
  transform: translateY(-4px);
  border-color: #60a5fa;
  background: rgba(20, 42, 85, 0.9);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.payment-badge-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
}

.payment-logo-icon {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-logo-icon svg {
  height: 32px;
  max-width: 100px;
}

/* ==========================================================================
   Mobile App & Store Showcase Section
   ========================================================================== */
.showcase-section {
  padding: 110px 0;
  background: #071228;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.showcase-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.showcase-img {
  width: 100%;
  transition: transform 0.6s ease;
}

.showcase-img-box:hover .showcase-img {
  transform: scale(1.03);
}

.showcase-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.showcase-content p {
  font-size: 1.12rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 28px;
}

.showcase-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.showcase-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e2e8f0;
}

.check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ==========================================================================
   5 Screens Showcase Section (iPhone Mockups) - Desktop Base
   ========================================================================== */
.screens-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
              #08142c;
  border-top: 1px solid rgba(96, 165, 250, 0.15);
  border-bottom: 1px solid rgba(96, 165, 250, 0.15);
  position: relative;
  overflow: hidden;
}

.mobile-swipe-hint {
  display: none;
}

.screens-carousel-wrapper {
  position: relative;
  width: 100%;
}

.screens-nav-btn {
  display: none;
}

.screens-dots-container {
  display: none;
}

.screens-slider-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
  align-items: start;
}

.screen-device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.screen-device-card:hover {
  transform: translateY(-8px);
}

.iphone-frame-wrapper {
  position: relative;
  width: 100%;
  max-width: 220px;
  border-radius: 38px;
  background: #050b18;
  padding: 9px 9px 12px;
  box-shadow: 0 25px 50px rgba(2, 6, 23, 0.8), 0 0 0 2px #1e3a8a, 0 0 0 5px #0f172a;
  border: 1px solid rgba(96, 165, 250, 0.3);
  overflow: hidden;
  margin-bottom: 18px;
  transition: box-shadow 0.3s ease;
}

.screen-device-card:hover .iphone-frame-wrapper {
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35), 0 0 0 2px #3b82f6, 0 0 0 5px #1d4ed8;
}

/* Dynamic Island */
.iphone-frame-wrapper::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 12px;
  background: #000000;
  border-radius: 20px;
  z-index: 5;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Home Indicator Bar */
.iphone-frame-wrapper::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  z-index: 5;
}

.iphone-screen-img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.screen-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px;
}

.screen-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.screen-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.screen-info p {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.5;
}

.screens-cta-wrapper {
  margin-top: 50px;
}

/* ==========================================================================
   Stats Numbers Banner
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, #050b18 0%, #0e1e40 50%, #071228 100%);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(96, 165, 250, 0.15);
  border-bottom: 1px solid rgba(96, 165, 250, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 20px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: 'Cairo', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #38bdf8;
  text-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #cbd5e1;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background: #08142c;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 54px;
}

.testimonial-card {
  background: rgba(14, 29, 60, 0.8);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.5);
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(12px);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #60a5fa;
  background: rgba(20, 42, 85, 0.95);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.25);
}

.quote-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 24px;
  font-style: normal;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(96, 165, 250, 0.15);
  padding-top: 18px;
}

.reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.6);
}

.reviewer-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.reviewer-store {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ==========================================================================
   Final Call To Action (CTA)
   ========================================================================== */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.25) 0%, transparent 70%),
              linear-gradient(135deg, #071228 0%, #0d2350 50%, #091738 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(96, 165, 250, 0.2);
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 38px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.btn-white {
  background: #f8fafc;
  color: #0a1936;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-white:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Footer - Clean Modern Centered
   ========================================================================== */
.site-footer {
  background: #040915;
  color: #94a3b8;
  padding-top: 70px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(96, 165, 250, 0.12);
}

.footer-center-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.footer-brand-link {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-brand-link .brand-name {
  color: #ffffff;
}

.footer-desc-text {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.footer-cta-box {
  margin-bottom: 36px;
}

.footer-bottom {
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  padding: 24px 0 10px;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.92rem;
}

/* ==========================================================================
   Floating Widgets
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: 20px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.85rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

.scroll-top-widget {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  right: 20px;
  z-index: 9999;
  width: 46px;
  height: 46px;
  background: #0c1c3c;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top-widget.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-widget:hover {
  background: var(--primary-light);
  color: #ffffff;
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Breakpoints - High Fidelity Mobile First Polish
   ========================================================================== */

/* --- Tablet / Medium Screens (max-width: 1080px) --- */
@media (max-width: 1080px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .payments-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .screens-slider-container {
    gap: 14px;
  }
  .screen-device-card {
    max-width: 200px;
  }
  .iphone-frame-wrapper {
    max-width: 195px;
    border-radius: 32px;
  }
  .iphone-screen-img {
    border-radius: 25px;
  }
}

/* --- Mobile Breakpoint (max-width: 868px) --- */
@media (max-width: 868px) {
  /* Global viewport protection */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }

  /* Header & Navigation */
  .navbar {
    height: 64px;
  }
  .brand-logo-img {
    width: 40px;
    height: 40px;
  }
  .brand-name {
    font-size: 1.25rem;
    line-height: 1.1;
  }
  .brand-tagline {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(14, 29, 60, 0.85);
    border: 1px solid rgba(96, 165, 250, 0.25);
    font-size: 1.35rem;
    cursor: pointer;
    color: #ffffff;
    transition: var(--transition);
  }
  .mobile-toggle:active {
    background: rgba(37, 99, 235, 0.35);
  }
  .nav-actions .btn-sm {
    display: none;
  }

  /* Mobile Full-Screen Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    bottom: 0;
    height: calc(100vh - 64px);
    background: rgba(6, 13, 31, 0.98) !important;
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 18px 40px;
    gap: 12px;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    box-shadow: 0 25px 50px rgba(2, 6, 23, 0.9);
    z-index: 99999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid rgba(96, 165, 250, 0.2);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    border-radius: 14px;
    background: rgba(14, 29, 60, 0.85);
    border: 1px solid rgba(96, 165, 250, 0.2);
    text-align: center;
    transition: var(--transition);
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(37, 99, 235, 0.35);
    border-color: #60a5fa;
    color: #38bdf8;
  }
  .nav-link::after {
    display: none;
  }
  .mobile-menu-cta {
    display: block !important;
    margin-top: 14px;
    width: 100%;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 82px;
    padding-bottom: 44px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }
  .hero-visual-wrapper {
    order: 1;
    margin: 0 auto 18px;
    width: 100%;
    max-width: 100%;
  }
  .hero-main-img {
    width: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
    animation: hero-img-float 3.8s ease-in-out infinite;
    will-change: transform, box-shadow;
  }
  .hero-content {
    order: 2;
    text-align: center;
  }
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.34;
    margin-bottom: 14px;
    font-weight: 900;
    color: #ffffff;
  }
  .hero-desc {
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #94a3b8;
  }
  .section-badge {
    font-size: 0.82rem;
    padding: 6px 14px;
    margin-bottom: 14px;
    display: inline-block;
  }
  .lead-form-card {
    padding: 22px 18px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
    background: rgba(14, 29, 60, 0.8);
    border: 1px solid rgba(96, 165, 250, 0.25);
    text-align: center;
  }
  .hero-cta-btn {
    width: 100% !important;
    font-size: 1.1rem !important;
    padding: 16px 18px !important;
    line-height: 1.4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .hero-cta-subtext {
    font-size: 0.92rem;
    color: #94a3b8;
    margin-top: 14px;
    font-weight: 600;
    line-height: 1.6;
  }
  .hero-cta-subtext a {
    color: #38bdf8;
    text-decoration: underline;
  }
  .floating-badge {
    display: none !important;
  }

  /* Features Section */
  .features-section {
    padding: 55px 0;
  }
  .section-title {
    font-size: 1.7rem;
    line-height: 1.35;
    margin-top: 8px;
    color: #ffffff;
  }
  .section-subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-top: 10px;
    color: #94a3b8;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }
  .feature-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  /* Payments Section */
  .payments-section {
    padding: 55px 0;
  }
  .payments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
  }
  .payment-card {
    padding: 12px 6px;
    border-radius: 12px;
    min-height: 84px;
  }
  .payment-badge-name {
    font-size: 0.78rem;
    font-weight: 700;
  }

  /* App Showcase Section */
  .showcase-section {
    padding: 55px 0;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .showcase-img-box {
    max-width: 280px;
    margin: 0 auto;
  }
  .showcase-img {
    border-radius: 20px;
  }
  .showcase-content {
    text-align: center;
  }
  .showcase-content h2 {
    font-size: 1.7rem;
    line-height: 1.35;
    color: #ffffff;
  }
  .showcase-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #94a3b8;
  }
  .showcase-features-list {
    text-align: right;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 28px;
  }
  .showcase-features-list li {
    font-size: 0.94rem;
    gap: 10px;
  }
  .showcase-content .btn-lg {
    width: 100%;
    padding: 15px 18px;
    font-size: 1.05rem;
    border-radius: 14px;
  }

  /* 5 Screens iPhone Showcase Section */
  .screens-section {
    padding: 55px 0;
  }
  .mobile-swipe-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.18);
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 25px;
    margin-top: 14px;
    border: 1px solid rgba(96, 165, 250, 0.3);
  }
  .screens-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 24px;
  }
  .screens-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 18px 18px;
    margin-right: -16px;
    margin-left: -16px;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
  }
  .screens-slider-container:active {
    cursor: grabbing;
  }
  .screens-slider-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  .screens-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(14, 29, 60, 0.95);
    border: 1px solid rgba(96, 165, 250, 0.35);
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
  }
  .screens-nav-btn:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #3b82f6;
  }
  .screens-nav-btn.prev-btn {
    right: 2px;
  }
  .screens-nav-btn.next-btn {
    left: 2px;
  }
  .screens-dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .screen-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .screen-dot.active {
    width: 26px;
    border-radius: 10px;
    background: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
  }
  .screen-device-card {
    flex: 0 0 74%;
    max-width: 245px;
    scroll-snap-align: center;
  }
  .iphone-frame-wrapper {
    max-width: 230px;
    border-radius: 36px;
    padding: 8px 8px 12px;
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.8), 0 0 0 2px #1e3a8a, 0 0 0 4px #0f172a;
    margin-bottom: 14px;
  }
  .iphone-screen-img {
    border-radius: 28px;
  }
  .screen-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #ffffff;
  }
  .screen-info p {
    font-size: 0.84rem;
    line-height: 1.5;
    color: #94a3b8;
  }
  .screens-cta-wrapper {
    margin-top: 36px;
  }
  .screens-cta-btn {
    width: 100% !important;
    padding: 15px 18px !important;
    font-size: 1.05rem !important;
    border-radius: 14px;
  }

  /* Statistics Section */
  .stats-section {
    padding: 48px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item {
    padding: 14px 10px;
  }
  .stat-number {
    font-size: 2.1rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 55px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }
  .testimonial-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* CTA Section */
  .cta-section {
    padding: 55px 0;
  }
  .cta-title {
    font-size: 1.8rem;
    line-height: 1.35;
  }
  .cta-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cta-actions .btn {
    width: 100%;
    padding: 15px 18px;
    font-size: 1.05rem;
    border-radius: 14px;
  }

  /* Footer Section */
  .site-footer {
    padding-top: 48px;
    padding-bottom: 24px;
  }
  .footer-desc-text {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .footer-cta-btn {
    width: 100% !important;
    padding: 15px 18px !important;
    font-size: 1.02rem !important;
    border-radius: 14px;
  }
  .footer-bottom {
    padding: 20px 0 10px;
  }
  .footer-bottom p {
    font-size: 0.86rem;
  }

  /* Floating Widgets */
  .whatsapp-widget {
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    left: 14px;
  }
  .scroll-top-widget {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 14px;
  }
}

/* --- Small Mobile Phones (max-width: 480px) --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
    line-height: 1.32;
  }
  .hero-desc {
    font-size: 0.96rem;
  }
  .section-title {
    font-size: 1.55rem;
    line-height: 1.32;
  }
  .section-subtitle {
    font-size: 0.92rem;
  }
  .hero-cta-btn {
    font-size: 1.02rem !important;
    padding: 15px 12px !important;
  }
  .payments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .payment-card {
    padding: 10px 4px;
    min-height: 76px;
  }
  .payment-badge-name {
    font-size: 0.72rem;
  }
  .screen-device-card {
    flex: 0 0 78%;
    max-width: 235px;
  }
  .iphone-frame-wrapper {
    max-width: 220px;
  }
  .stat-number {
    font-size: 1.95rem;
  }
  .cta-title {
    font-size: 1.62rem;
  }
}

/* --- Extra Small Screens (max-width: 380px) --- */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.42rem;
  }
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .screen-device-card {
    flex: 0 0 84%;
    max-width: 220px;
  }
  .hero-cta-btn {
    font-size: 0.95rem !important;
  }
  .stat-number {
    font-size: 1.7rem;
  }
  .brand-name {
    font-size: 1.15rem;
  }
}


