/* ============================================================
   IFADA Website - Custom CSS
   Converted from React + Motion.js to HTML/CSS/jQuery
   Compatible with Bootstrap 4 + WordPress
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --electric-blue: #2E6BFF;
  --magenta: #D63384;
  --amber: #F59E0B;
  --deep-black: #111111;
  --charcoal: #1E1E1E;
  --dark-bg: #0A0A0A;
  --text-gray: #9CA3AF;
  --text-muted: #6B7280;
  --border-subtle: rgba(255,255,255,0.1);
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

/* ---------- Base Reset & Global ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  text-decoration: none !important;
  padding: 0;
  outline: none !important;
}

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

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  direction: rtl;
  overflow-x: hidden;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ---------- Dark Mode (default) ---------- */
body,
body.dark-mode {
  background-color: var(--deep-black);
  color: #fff;
}

body.light-mode {
  background-color: #fff;
  color: var(--deep-black);
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #111111; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2E6BFF 0%, #D63384 50%, #F59E0B 100%);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2E6BFF 0%, #D63384 100%);
}
::selection { background: #2E6BFF; color: white; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: 'Tajawal', sans-serif; line-height: 1.3; }

/* ---------- Gradient Text Utility ---------- */
.gradient-text {
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue-pink {
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-pink-amber {
  background: linear-gradient(90deg, var(--magenta), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Gradient Background Utilities ---------- */
.grad-btn {
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta), var(--amber));
}
.grad-btn-blue-pink {
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta));
}

/* ---------- Glassmorphism Card ---------- */
.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}
body.light-mode .glass-card {
  background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01));
  border: 1px solid #E5E5E5;
}

/* ---------- Section Dividers ---------- */
.section-divider {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
body.light-mode .section-divider {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left {
  transform: translateX(50px);
}
.reveal.from-right {
  transform: translateX(-50px);
}
.reveal.scale-up {
  transform: scale(0.95);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* ============================================================
   STICKY NAVBAR
   ============================================================ */
#sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
#sticky-nav.visible {
  transform: translateY(0);
  opacity: 1;
}
#sticky-nav .li ,.hero-static-nav .li{
   display:none;
}
#sticky-nav .dr ,.hero-static-nav .dr{
   display:block;
}
body.light-mode #sticky-nav .li ,body.light-mode .hero-static-nav .li{
   display:block;
}
body.light-mode #sticky-nav .dr ,body.light-mode .hero-static-nav .dr{
   display:none;
}

#sticky-nav .nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta));
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  overflow: hidden;
}
#sticky-nav .nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(46,107,255,0.3);
}
/* Pulse ring effect */
.pulse-ring::before,
.pulse-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta));
  animation: pulse-ring 1.5s ease-out infinite;
}
.pulse-ring::after {
  animation-delay: 0.3s;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  line-height: 1;
  -webkit-text-fill-color: initial;
}
body.light-mode .logo-sub { color: #888; }

/* ---------- Theme Toggle ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: var(--transition-base);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
body.light-mode .theme-toggle {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  color: var(--deep-black);
}
.theme-toggle:hover {
  border-color: rgba(255,255,255,0.2);
}
.toggle-track {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
}
body.light-mode .toggle-track {
  background: rgba(0,0,0,0.1);
}
.toggle-thumb {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-blue), #1E50CC);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
body.light-mode .toggle-thumb {
  right: calc(100% - 1.375rem);
  background: linear-gradient(135deg, var(--amber), #D97706);
}
.toggle-icon { font-size: 0.6rem; line-height: 1; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
#hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--deep-black) 60%, var(--deep-black) 100%);
  transition: background 0.3s ease;
}
body.light-mode #hero .hero-bg {
  background: linear-gradient(180deg, #F7F7F7 0%, #fff 100%);
}
#hero .glow-ball {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  pointer-events: none;
}
body.light-mode #hero .glow-ball { opacity: 0.1; }
#hero .glow-blue { width: 24rem; height: 24rem; background: var(--electric-blue); top: 5rem; right: 5rem; }
#hero .glow-pink { width: 24rem; height: 24rem; background: var(--magenta); bottom: 5rem; left: 5rem; }
#hero .hero-static-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1.5rem 0;
 }
 .wpcf7 p:not(.privacy-note){
  margin-bottom: 0;
}
.wpcf7 br{display: none;}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 2rem;
}
body.light-mode .hero-badge {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  color: #444;
}
.badge-icon { font-size: 1rem; }
.hero-headline {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}
body.light-mode .hero-headline { color: var(--deep-black); }
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-gray);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
body.light-mode .hero-sub { color: #444; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(46,107,255,0.35);
  color: #fff;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.trust-badges { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 3rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
.trust-item svg { color: var(--electric-blue); }
.trust-item.gold svg { color: var(--amber); }
.trust-item img{
  max-width:30px;
  max-height: 30px;
  object-fit: contain;
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.3rem;
  animation: fadeInUp 1s ease 1s both;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-full);
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================================
   CLIENT LOGOS SECTION
   ============================================================ */
#client-logos {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}
#client-logos .section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--deep-black) 0%, var(--dark-bg) 100%);
}
body.light-mode #client-logos .section-bg {
  background: linear-gradient(180deg, #F7F7F7 0%, #fff 100%);
}
.carousel-track-wrapper {
  position: relative;
  overflow: hidden;
}
.carousel-fade-right {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 5rem;
  background: linear-gradient(270deg, var(--dark-bg), transparent);
  z-index: 10;
  pointer-events: none;
}
.carousel-fade-left {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5rem;
  background: linear-gradient(90deg, var(--dark-bg), transparent);
  z-index: 10;
  pointer-events: none;
}
body.light-mode .carousel-fade-right { background: linear-gradient(270deg, #fff, transparent); }
body.light-mode .carousel-fade-left { background: linear-gradient(90deg, #fff, transparent); }
.logos-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-card {
  flex-shrink: 0;
  width: 7rem;
  height: 7rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
body.light-mode .logo-card {
  background: linear-gradient(135deg, #F7F7F7, #fff);
  border-color: #E5E5E5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.logo-card:hover {
  border-color: rgba(46,107,255,0.3);
}
.logo-card:hover .logo-initial { color: #fff; }
body.light-mode .logo-card:hover .logo-initial { color: var(--electric-blue); }
.logo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,107,255,0), rgba(214,51,132,0));
  transition: var(--transition-base);
}
.logo-card:hover::after {
  background: linear-gradient(135deg, rgba(46,107,255,0.1), rgba(214,51,132,0.1));
}
.logo-initial {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-base);
  position: relative;
  z-index: 1;
}
.logo-card img{
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
body.light-mode .logo-initial { color: rgba(17,17,17,0.7); }
.stats-pills { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  color: var(--text-gray);
}
body.light-mode .stat-pill {
  background: #fff;
  border-color: #E5E5E5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.stat-pill .stat-num { font-weight: 700; font-size: 1.1rem; }
.stat-pill:nth-of-type(1) .stat-num { color: var(--electric-blue); }
.stat-pill:nth-of-type(2) .stat-num{ color: var(--magenta); }
.stat-pill:nth-of-type(3) .stat-num{ color: var(--amber); }

/* ============================================================
   SECTION HEADERS (Shared)
   ============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
.badge-blue { background: rgba(46,107,255,0.1); border: 1px solid rgba(46,107,255,0.2); color: var(--electric-blue); }
.badge-pink { background: rgba(214,51,132,0.1); border: 1px solid rgba(214,51,132,0.2); color: var(--magenta); }
.badge-amber { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); color: var(--amber); }
.badge-red { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #EF4444; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
body.light-mode .section-title { color: var(--deep-black); }
.section-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}
body.light-mode .section-desc { color: #444; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
#problem {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
#problem .section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--deep-black) 0%, #1A1A1A 50%, var(--deep-black) 100%);
}
body.light-mode #problem .section-bg {
  background: linear-gradient(180deg, #fff 0%, #F7F7F7 50%, #fff 100%);
}
.problem-card {
  position: relative;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  border: 1px solid rgba(255,255,255,0.1);
  height: 100%;
  transition: var(--transition-base);
  overflow: hidden;
  cursor: default;
}
body.light-mode .problem-card {
  background: rgba(255,255,255,0.8);
  border-color: #E5E5E5;
}
.problem-card:hover { border-color: rgba(239,68,68,0.3); }
.problem-icon-box {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(249,115,22,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: var(--transition-base);
  color: #F87171;
  font-size: 1rem;
}
.problem-card:hover .problem-icon-box { transform: scale(1.1); }
.problem-icon-box img{
  max-width:27px;
  max-height: 27px;
  object-fit: contain;
}
.problem-card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.375rem; }
.problem-card p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
body.light-mode .problem-card p { color: #666; }
.bottom-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #D1D5DB;
  text-align: center;
  margin-top: 2rem;
}
body.light-mode .bottom-cta-text { color: #444; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
#solution {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
#solution .section-bg {
  position: absolute;
  inset: 0;
  background: var(--deep-black);
}
body.light-mode #solution .section-bg { background: #fff; }
#solution .glow-left {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  background: var(--electric-blue);
  pointer-events: none;
}
#solution .glow-right {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  top: 50%;
  right: 25%;
  transform: translateY(-50%);
  background: var(--magenta);
  pointer-events: none;
}
.solution-timeline {
  position: relative;
  display: none;
}
@media (min-width: 768px) { .solution-timeline { display: block; } }
.timeline-line {
  position: absolute;
  top: 2.5rem;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(270deg, var(--electric-blue), var(--magenta), var(--amber));
  opacity: 0.2;
}
.solution-step {
  position: relative;
  text-align: center;
}
.step-node {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: var(--transition-base);
  position: relative;
  z-index: 1;
}
.solution-timeline .col-3:nth-of-type(1)
.step-node:hover { transform: scale(1.1); }
.solution-timeline .col-3:nth-of-type(1) .step-node ,.solution-mobile-track .solution-mobile-card:nth-of-type(1) .step-node{ background: linear-gradient(135deg, var(--electric-blue), #1E50CC); }
.solution-timeline .col-3:nth-of-type(2) .step-node ,.solution-mobile-track .solution-mobile-card:nth-of-type(2) .step-node{ background: linear-gradient(135deg, var(--magenta), #A02866); }
.solution-timeline .col-3:nth-of-type(3) .step-node ,.solution-mobile-track .solution-mobile-card:nth-of-type(3) .step-node{ background: linear-gradient(135deg, var(--amber), #D97706); }
.solution-timeline .col-3:nth-of-type(4) .step-node ,.solution-mobile-track .solution-mobile-card:nth-of-type(4) .step-node{ background: linear-gradient(135deg, var(--electric-blue), var(--magenta)); }
.step-number {
  position: absolute;
  top: -0.75rem;
  right: 50%;
  transform: translateX(50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--deep-black);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  z-index: 20;
}
.solution-timeline .col-3:nth-of-type(4) .process-arrow{
    display:none ;
}
.solution-timeline .solution-step .process-arrow{
        top: 24px;
}
body.light-mode .step-number { background: #fff; border-color: #E5E5E5; }
.step-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
body.light-mode .step-desc { color: #666; }
/* Mobile cards */
.solution-mobile { display: block; overflow-x: auto; }
@media (min-width: 768px) { .solution-mobile { display: none; } }
.solution-mobile-track {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1rem;
  width: max-content;
  scrollbar-width: none;
}
.solution-mobile-track::-webkit-scrollbar { display: none; }
.solution-mobile-card {
  width: 10rem;
  flex-shrink: 0;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
}
.note-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2rem;
}
body.light-mode .note-pill {
  background: rgba(0,0,0,0.03);
  border-color: #E5E5E5;
  color: #666;
}
.pulse-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--amber);
  animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

/* ============================================================
   CASE STUDIES SECTION
   ============================================================ */
#case-studies {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
#case-studies .section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-black) 50%, var(--dark-bg) 100%);
}
body.light-mode #case-studies .section-bg {
  background: linear-gradient(180deg, #F7F7F7 0%, #fff 50%, #F7F7F7 100%);
}
.case-study-item { display: flex; flex-direction: column; gap: 2rem; align-items: center; margin-bottom: 5rem; }
@media (min-width: 992px) {
  .case-study-item { flex-direction: row; gap: 3rem; }
  .case-study-item.reversed { flex-direction: row-reverse; }
}
.case-image-wrap {
  width: 100%;
  flex: 1;
}
@media (min-width: 992px) { .case-image-wrap { width: 50%; } }
.case-img-inner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.5s ease;
  aspect-ratio: 16/10;
}
body.light-mode .case-img-inner { background: #F7F7F7; border-color: #E5E5E5; }
.case-img-inner:hover { border-color: rgba(255,255,255,0.2); }
.case-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.case-img-inner:hover img { transform: scale(1.05); }
.case-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,17,17,0.8) 0%, transparent 60%);
}
.case-icon-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.case-icon-badge img{
  width:32px;
  height:32px;
}
.case-details { flex: 1; }
@media (min-width: 992px) { .case-details { width: 50%; } }
.case-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.case-tag {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}
.case-study-item .case-tags .case-tag:not(:nth-of-type(1)){
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #D1D5DB;
  font-weight: 400;
}
.case-tag.industry {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #D1D5DB;
  font-weight: 400;
}
body.light-mode .case-tags .case-tag:not(:nth-of-type(1)){
  background: rgba(0,0,0,0.05); border-color: #E5E5E5; color: #444;
}
body.light-mode .case-tag.industry { background: rgba(0,0,0,0.05); border-color: #E5E5E5; color: #444; }
.case-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; color: #fff; }
body.light-mode .case-title { color: var(--deep-black); }
.case-desc { font-size: 1rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 1.25rem; }
body.light-mode .case-desc { color: #444; }
.case-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
body.light-mode .case-result-badge { background: rgba(0,0,0,0.05); border-color: #E5E5E5; color: var(--deep-black); }
.metrics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.metric-card {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  border: 1px solid rgba(255,255,255,0.05);
}
body.light-mode .metric-card { background: rgba(0,0,0,0.03); border-color: #E5E5E5; }
.metric-value { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.metric-label { font-size: 0.7rem; color: var(--text-muted); }
body.light-mode .metric-label { color: #888; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-base);
}
body.light-mode .btn-ghost {
  background: rgba(0,0,0,0.03);
  border-color: #E5E5E5;
  color: var(--deep-black);
}
.btn-ghost:hover {
  transform: scale(1.05);
  border-color: rgba(255,255,255,0.2);
}
.case-stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2rem; }
@media (min-width: 768px) { .case-stats-grid { grid-template-columns: repeat(4,1fr); } }
body.light-mode .case-stats-grid { border-top-color: #E5E5E5; }
.case-stat-item { text-align: center; }
.case-stat-value { font-size: 2rem; font-weight: 800; }
.case-stat-label { font-size: 0.875rem; color: var(--text-muted); }
body.light-mode .case-stat-label { color: #888; }
.case-study-item.new1 .case-icon-badge{
  background:linear-gradient(135deg,#2E6BFF,#1E50CC);
}
.case-study-item.new1 .case-tags .case-tag:nth-of-type(1){
  background:linear-gradient(90deg,#2E6BFF,#1E50CC);color:#fff;
}
.case-study-item.new1 .metric-value{
  background:linear-gradient(90deg,#2E6BFF,#1E50CC);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.case-study-item.new2{
  flex-direction: row-reverse;
}
.case-study-item.new2 .case-icon-badge{
  background:linear-gradient(135deg,#D63384,#A02866);
}
.case-study-item.new2 .case-tags .case-tag:nth-of-type(1){
  background:linear-gradient(90deg,#D63384,#A02866);color:#fff;
}
.case-study-item.new2 .metric-value{
  background:linear-gradient(90deg,#D63384,#A02866);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

.case-study-item.new3 .case-icon-badge{
  background:linear-gradient(135deg,#F59E0B,#D97706);
}
.case-study-item.new3 .case-tags .case-tag:nth-of-type(1){
  background:linear-gradient(90deg,#F59E0B,#D97706);color:#fff;
}
.case-study-item.new3 .metric-value{
  background:linear-gradient(90deg,#F59E0B,#D97706);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
/* ============================================================
   CASE STUDY PANEL (Side Drawer)
   ============================================================ */
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.panel-overlay.active { opacity: 1; visibility: visible; }
.case-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 700px;
  z-index: 2001;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  background: linear-gradient(135deg, #1E1E1E, var(--deep-black));
  border-right: 1px solid rgba(255,255,255,0.1);
  box-shadow: 4px 0 40px rgba(0,0,0,0.5);
}
body.light-mode .case-panel {
  background: linear-gradient(135deg, #fff, #F7F7F7);
  border-right-color: #E5E5E5;
}
.case-panel.open { transform: translateX(0); }
.panel-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem;
  background: linear-gradient(180deg, var(--deep-black) 60%, transparent);
}
body.light-mode .panel-header { background: linear-gradient(180deg, #fff 60%, transparent); }
.panel-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}
body.light-mode .panel-close { background: rgba(0,0,0,0.05); border-color: #E5E5E5; color: var(--deep-black); }
.panel-close:hover { background: rgba(255,255,255,0.1); }
.panel-body { padding: 0 2rem 3rem; }
.panel-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.panel-step-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.news1 .case-tags .case-tag:nth-of-type(1) ,.news1 .result-icon{
  background: linear-gradient(90deg, rgb(46, 107, 255), rgb(30, 80, 204));
}
.news2 .case-tags .case-tag:nth-of-type(1) ,.news2 .result-icon{
  background: linear-gradient(90deg, rgb(214, 51, 132), rgb(160, 40, 102));
}
.news3 .case-tags .case-tag:nth-of-type(1) ,.news3 .result-icon{
  background: linear-gradient(90deg, rgb(245, 158, 11), rgb(217, 119, 6));
}
.news1 .result-value{
  background: linear-gradient(90deg, #2E6BFF, #1E50CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.news2 .result-value{
  background: linear-gradient(90deg, #D63384, #A02866);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.news3 .result-value{
  background: linear-gradient(90deg, #F59E0B, #D97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-panel  .case-tags .case-tag:not(:nth-of-type(1)){
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #D1D5DB;
  font-weight: 400;
}

.panel-solutions .solution-item:nth-of-type(4n+1) .solution-item-title {color:#2e6bff; }
.panel-solutions .solution-item:nth-of-type(4n+2) .solution-item-title { color:#d63384 }
.panel-solutions .solution-item:nth-of-type(3n+3) .solution-item-title {     color: #f59e0b;}
.panel-solutions .solution-item:nth-of-type(4n+4) .solution-item-title {    color: #2e6bff; }
.step-pink { background: linear-gradient(135deg, var(--magenta), #A02866); }
.step-blue { background: linear-gradient(135deg, var(--electric-blue), #1E50CC); }
.step-amber { background: linear-gradient(135deg, var(--amber), #D97706); }
.step-grad { background: linear-gradient(135deg, var(--electric-blue), var(--magenta), var(--amber)); }
.panel-step h3 { font-size: 1.1rem; font-weight: 700; color: #fff; }
body.light-mode .panel-step h3 { color: var(--deep-black); }
.panel-text { color: var(--text-gray); line-height: 1.7; font-size: 0.9rem; padding-right: 2.75rem; }
body.light-mode .panel-text { color: #444; }
.solution-item {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0.75rem;
}
body.light-mode .solution-item { background: rgba(0,0,0,0.03); border-color: #E5E5E5; }
.solution-item-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.solution-item-desc { font-size: 0.875rem; color: var(--text-muted); }
body.light-mode .solution-item-desc { color: #888; }
.result-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}
body.light-mode .result-card { background: linear-gradient(135deg, #F7F7F7, #fff); border-color: #E5E5E5; }
.result-card:hover { border-color: rgba(46,107,255,0.3); }
.result-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.result-value { font-size: 1.75rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.result-label { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
body.light-mode .result-label { color: var(--deep-black); }
.result-desc { font-size: 0.75rem; color: var(--text-muted); }
.preview-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.preview-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
body.light-mode .preview-img-wrap { background: #fff; border-color: #E5E5E5; }
.preview-img-wrap img { width: 100%; object-fit: cover; display: block; }
.panel-cta-box {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  overflow: hidden;
}
body.light-mode .panel-cta-box { background: linear-gradient(135deg, #F7F7F7, #fff); border-color: #E5E5E5; }
.panel-cta-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,107,255,0.15), rgba(214,51,132,0.15), rgba(245,158,11,0.15));
  opacity: 0.3;
  filter: blur(2rem);
}
body.light-mode .panel-cta-glow { opacity: 0.1; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
#testimonials {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
#testimonials .section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--deep-black) 0%, var(--dark-bg) 50%, var(--deep-black) 100%);
}
body.light-mode #testimonials .section-bg {
  background: linear-gradient(180deg, #fff 0%, #F7F7F7 50%, #fff 100%);
}
.testimonial-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3rem;
}
.testimonial-bg-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,107,255,0.1), rgba(214,51,132,0.1), rgba(245,158,11,0.1));
  opacity: 0.5;
}
.testimonial-quote-icon {
  font-size: 4rem;
  color: rgba(46,107,255,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  z-index: 1;
}
body.light-mode .testimonial-text { color: var(--deep-black); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 1; }
.author-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--electric-blue), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.author-name { font-size: 1.1rem; font-weight: 700; color: #fff; }
body.light-mode .author-name { color: var(--deep-black); }
.author-role { font-size: 0.875rem; color: var(--text-muted); }
.stars-wrap { display: flex; gap: 0.2rem; margin-bottom: 0.5rem; }
.star-icon { color: var(--amber); font-size: 1.1rem;     transform: scalex(-1) !important;}
.cat-pill {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  color: #D1D5DB;
}
body.light-mode .cat-pill { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); color: #444; }
.sparkle-deco {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 2rem;
  opacity: 0.2;
}
/* Carousel Controls */
.carousel-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  color: #fff;
  font-size: 1.1rem;
}
body.light-mode .carousel-btn { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); color: var(--deep-black); }
.carousel-btn:hover { transform: scale(1.1); border-color: rgba(255,255,255,0.4); }
.testimonials-carousel-outer {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}
@media (min-width: 992px) {
  .testimonial-nav-left {
    position: absolute;
    left: auto;
    right: calc(100% + 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    color: #fff;
    font-size: 1.25rem;
    z-index: 5;
  }
  .testimonial-nav-right {
    position: absolute;
    right: auto;
    left: calc(100% + 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    color: #fff;
    font-size: 1.25rem;
    z-index: 5;
  }
  body.light-mode .testimonial-nav-left,
  body.light-mode .testimonial-nav-right {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: var(--deep-black);
  }
  .testimonial-nav-left:hover,
  .testimonial-nav-right:hover { transform: translateY(-50%) scale(1.1); }
  
}
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.t-dot {
  height: 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.5s ease;
  width: 0.5rem;
  border: none;
  padding: 0;
}
.t-dot.active {
  width: 3rem;
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta), var(--amber));
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
body.light-mode .trust-row { border-top-color: #E5E5E5; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: #D1D5DB;
}
body.light-mode .trust-badge { background: rgba(0,0,0,0.03); border-color: #E5E5E5; color: #444; }
.soft-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   TECH STACK SECTION
   ============================================================ */
#tech-stack {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
#tech-stack .section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-black) 50%, var(--dark-bg) 100%);
}
body.light-mode #tech-stack .section-bg {
  background: linear-gradient(180deg, #fff 0%, #F7F7F7 50%, #fff 100%);
}
.tech-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 13px;
  transition: border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: 100%;
}
body.light-mode .tech-card {
  background: linear-gradient(135deg, #F7F7F7, #fff);
  border-color: #E5E5E5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.tech-card:hover { border-color: rgba(255,255,255,0.2); }
body.light-mode .tech-card:hover { border-color: rgba(46,107,255,0.3); }
.tech-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  transition: opacity 0.3s ease;
}
.tech-card:hover .tech-card-glow { opacity: 0.1; }
body.light-mode .tech-card:hover .tech-card-glow { opacity: 0.2; }
.tech-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.tech-icon-box img{
  max-width:30px;
  max-height: 30px;
  object-fit: contain;
}
.tech-card:hover .tech-icon-box { transform: scale(1.1); }
.tech-title-line { padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 0.75rem; }
body.light-mode .tech-title-line { border-bottom-color: #E5E5E5; }
.tech-title { font-size: 0.875rem; font-weight: 700; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.tech-pill {
  display: inline-flex;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.65rem;
  font-weight: 500;
  color: #D1D5DB;
  transition: all 0.2s ease;
  cursor: default;
}
body.light-mode .tech-pill { background: rgba(0,0,0,0.05); border-color: #E5E5E5; color: #444; }
.tech-pill:hover { transform: scale(1.05); }
.tech-count { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.05); }
body.light-mode .tech-count { color: #888; border-top-color: #E5E5E5; }
.tech-count strong { font-weight: 700; }
.tech-1 .tech-card-glow{
  background:linear-gradient(135deg,#2E6BFF,#1E50CC);
}
.tech-1 .tech-icon-box{
  background:linear-gradient(135deg,#2E6BFF,#1E50CC);
}
.tech-1 .tech-title span ,.tech-1 .tech-count strong{
  background:linear-gradient(90deg,#2E6BFF,#1E50CC);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.tech-2 .tech-card-glow{
  background:linear-gradient(135deg,#D63384,#A02866);
}
.tech-2 .tech-icon-box{
  background:linear-gradient(135deg,#D63384,#A02866);
}
.tech-2 .tech-title span ,.tech-2 .tech-count strong{
  background:linear-gradient(90deg,#D63384,#A02866);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.tech-3 .tech-card-glow{
  background:linear-gradient(135deg,#F59E0B,#D97706);
}
.tech-3 .tech-icon-box{
  background:linear-gradient(135deg,#F59E0B,#D97706);
}
.tech-3 .tech-title span ,.tech-3 .tech-count strong{
  background:linear-gradient(90deg,#F59E0B,#D97706);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.tech-4 .tech-card-glow{
  background:linear-gradient(135deg,#2E6BFF,#D63384);
}
.tech-4 .tech-icon-box{
  background:linear-gradient(135deg,#2E6BFF,#D63384);
}
.tech-4 .tech-title span ,.tech-4 .tech-count strong{
  background:linear-gradient(90deg,#2E6BFF,#D63384);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.tech-5 .tech-card-glow{
  background:linear-gradient(135deg,#D63384,#F59E0B);
}
.tech-5 .tech-icon-box{
  background:linear-gradient(135deg,#D63384,#F59E0B);
}
.tech-5 .tech-title span ,.tech-5 .tech-count strong{
  background:linear-gradient(90deg,#D63384,#F59E0B);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
#why-us {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
#why-us .section-bg {
  position: absolute;
  inset: 0;
  background: var(--deep-black);
}
body.light-mode #why-us .section-bg { background: #F7F7F7; }
#why-us .glow-bottom {
  position: absolute;
  bottom: 0;
  right: 33%;
  width: 37.5rem;
  height: 37.5rem;
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.15;
  background: var(--electric-blue);
  pointer-events: none;
}
.why-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
body.light-mode .why-card { background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.5)); border-color: #E5E5E5; }
.why-card:hover { border-color: rgba(46,107,255,0.5); }
.why-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,107,255,0), rgba(214,51,132,0), rgba(245,158,11,0));
  transition: background 0.5s ease;
}
.why-card:hover .why-card-glow {
  background: linear-gradient(135deg, rgba(46,107,255,0.05), rgba(214,51,132,0.05), rgba(245,158,11,0.05));
}
.why-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--electric-blue), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, rotate 0.3s ease;
}
.why-icon img{
  width: 32px;
  height: 32px;
  max-width:80%;
  max-height:80%;
  object-fit: contain;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(3deg); }
.why-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; position: relative; z-index: 1; }
.why-desc { color: var(--text-gray); line-height: 1.7; position: relative; z-index: 1; }
body.light-mode .why-desc { color: #444; }
.why-highlight {
  display: inline-block;
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(46,107,255,0.1), rgba(214,51,132,0.1), rgba(245,158,11,0.1));
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 3rem;
}
body.light-mode .why-highlight { border-color: #E5E5E5; }
.why-highlight p:first-child { font-size: 1.5rem; font-weight: 700; }
.why-highlight p:last-child { color: var(--text-gray); margin-top: 0.5rem; }
body.light-mode .why-highlight p:last-child { color: #444; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
#process {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
#process .section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1A1A1A 0%, var(--deep-black) 50%, var(--deep-black) 100%);
}
body.light-mode #process .section-bg {
  background: linear-gradient(180deg, #fff 0%, #F7F7F7 50%, #fff 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) {
  .process-grid { grid-template-columns: repeat(4,1fr); }
  .process-connect-line {
    display: block;
    position: absolute;
    top: 8rem;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(270deg, var(--electric-blue), var(--magenta), var(--amber));
    opacity: 0.2;
  }

}
.process-connect-line { display: none; }
.process-step { position: relative; text-align: center; }
.process-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.process-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.process-icon img{
  width:48px;
  height:48px;
  object-fit: contain;
}
.process-1 .process-icon{
  background:linear-gradient(135deg,#2E6BFF,#1E50CC);
}

.process-2 .process-icon{
  background:linear-gradient(135deg,#D63384,#A02866);
}

.process-3 .process-icon{
  background:linear-gradient(135deg,#F59E0B,#D97706);
}

.process-4 .process-icon{
  background:linear-gradient(135deg,#2E6BFF,#D63384,#F59E0B);
}
.process-4 .process-arrow{
  display: none;
}
.process-num {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--deep-black);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  z-index: 2;
}
body.light-mode .process-num { background: #fff; border-color: #E5E5E5; }
.process-step-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.process-step-desc { color: var(--text-gray); line-height: 1.7; }
body.light-mode .process-step-desc { color: #444; }
.process-arrow {
  display: none;
  position: absolute;
  top: 3rem;
  left: -0.75rem;
  color: rgba(255,255,255,0.2);
  font-size: 1.25rem;
  z-index: 5;
}
@media (min-width: 992px) { .process-arrow { display: block; } }
.timeline-summary {
  margin-top: 4rem;
  text-align: center;
}
.summary-box {
  display: inline-block;
  padding: 2rem 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
}
body.light-mode .summary-box { background: rgba(0,0,0,0.03); border-color: #E5E5E5; }
.summary-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .summary-inner { flex-direction: row; gap: 2rem; }
}
.summary-item { text-align: center; }
.summary-value { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.summary-label { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.25rem; }
body.light-mode .summary-label { color: #888; }
.summary-divider {
  display: none;
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.1);
}
body.light-mode .summary-divider { background: #E5E5E5; }
@media (min-width: 768px) { .summary-divider { display: block; } }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
#final-cta {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
#final-cta .section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1E1E1E 0%, var(--deep-black) 50%, #000 100%);
}
body.light-mode #final-cta .section-bg {
  background: linear-gradient(180deg, #F7F7F7 0%, #fff 50%, #F7F7F7 100%);
}
#final-cta .cta-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--electric-blue), var(--magenta), var(--amber));
  filter: blur(200px);
  opacity: 0.4;
  pointer-events: none;
}
body.light-mode #final-cta .cta-glow { opacity: 0.15; }
.cta-box {
  position: relative;
  padding: 4rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.cta-box .rounded-pill{
  gap: 0.5rem;
}
body.light-mode .cta-box { background: linear-gradient(135deg, #fff, #F7F7F7); border-color: #E5E5E5; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
/* Particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: particleFade 3s ease infinite;
  pointer-events: none;
}
body.light-mode .particle { background: var(--electric-blue); opacity: 0.2; }
@keyframes particleFade {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}
.cta-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.5rem;
}
body.light-mode .cta-headline { color: var(--deep-black); }
.cta-desc {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #D1D5DB;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
body.light-mode .cta-desc { color: #444; }
.benefits-list { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-bottom: 3rem; }
.benefit-item { display: flex; align-items: center; gap: 0.5rem; color: #D1D5DB; font-size: 0.9rem; }
body.light-mode .benefit-item { color: #444; }
.benefit-icon { color: var(--electric-blue); font-size: 1.1rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; margin-bottom: 2.5rem; }
@media (min-width: 576px) { .cta-buttons { flex-direction: row; } }
.btn-main-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta), var(--amber));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  overflow: hidden;
  width: 100%;
  text-decoration: none;
}
@media (min-width: 576px) { .btn-main-cta { width: auto; } }
.btn-main-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(46,107,255,0.5);
  color: #fff;
}
.trust-small {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  font-size: 0.875rem;
  color: #FFF;
}
.trust-dot { display: inline-flex; align-items: center; gap: 0.5rem; }
.dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; }
.trust-dot:nth-of-type(1) .dot { background: var(--electric-blue); }
.trust-dot:nth-of-type(2) .dot { background: var(--magenta); }
.trust-dot:nth-of-type(3) .dot { background: var(--amber); }
.footer-note { text-align: center; color: #FFF; margin-top: 3rem; font-size: 0.875rem; }
.footer-note p:last-child { margin-top: 0.5rem; font-size: 0.8rem; }
body.light-mode .footer-note ,body.light-mode .trust-small{
  color: #000;
}
body.light-mode .btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
  /* ============================================================
     FAQ SECTION
     ============================================================ */
#faq {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
#faq .section-bg {
  position: absolute;
  inset: 0;
  background: var(--deep-black);
}
body.light-mode #faq .section-bg { background: #fff; }
#faq .glow-faq {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  background: var(--magenta);
  pointer-events: none;
}
body.light-mode #faq .glow-faq { opacity: 0.08; }
.faq-item {
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
  backdrop-filter: blur(8px);
}
body.light-mode .faq-item { background: rgba(255,255,255,0.8); border-color: #E5E5E5; }
.faq-item.open { border-color: rgba(46,107,255,0.5); }
.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  transition: var(--transition-base);
}
.faq-q-text { font-size: 1.1rem; font-weight: 600; flex: 1; color: #fff; line-height: 1.4; }
body.light-mode .faq-q-text { color: var(--deep-black); }
.faq-chevron {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--electric-blue), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  color: #fff;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p { color: var(--text-gray); line-height: 1.7; text-align: right; font-size: 0.95rem; }
body.light-mode .faq-answer p { color: #444; }
.faq-contact { text-align: center; margin-top: 3rem; }
.faq-contact p { color: var(--text-gray); margin-bottom: 1rem; }
body.light-mode .faq-contact p { color: #444; }
.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--electric-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.faq-link:hover { color: var(--magenta); }

/* ============================================================
   CONTACT FORM MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  position: relative;
  width: 100%;
  max-width: 42rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #1E1E1E, var(--deep-black));
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
body.light-mode .modal-box {
  background: linear-gradient(135deg, #fff, #F7F7F7);
  border-color: #E5E5E5;
}
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-bg-blur {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}
.modal-bg-blur .blur-1 {
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 16rem;
  background: var(--electric-blue);
  border-radius: 50%;
  filter: blur(100px);
}
.modal-bg-blur .blur-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 16rem; height: 16rem;
  background: var(--magenta);
  border-radius: 50%;
  filter: blur(100px);
}
.modal-header {
  position: relative;
  padding: 2rem;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
body.light-mode .modal-header { border-bottom-color: #E5E5E5; }
.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: var(--transition-base);
}
body.light-mode .modal-close { background: rgba(0,0,0,0.05); color: var(--deep-black); }
.modal-close:hover { background: rgba(255,255,255,0.1); }
.modal-title { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.modal-subtitle { color: var(--text-gray); font-size: 0.9rem; }
body.light-mode .modal-subtitle { color: #666; }
.modal-body { position: relative; padding: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; color: #D1D5DB; margin-bottom: 0.5rem; font-weight: 500; }
body.light-mode .form-label { color: #444; }
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  font-family: 'Tajawal', sans-serif;
  transition: border-color 0.3s ease;
  direction: rtl;
}
body.light-mode .form-input {
  background: #fff;
  border-color: #E5E5E5;
  color: var(--deep-black);
}
.form-input:focus {
  outline: none;
  border-color: rgba(46,107,255,0.5);
}
.form-input::placeholder { color: #6B7280; }
.phone-input-wrap { position: relative; }
.phone-prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  pointer-events: none;
}
.phone-input { padding-left: 3.5rem !important; text-align: left; direction: ltr; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }
.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, var(--electric-blue), var(--magenta), var(--amber));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Tajawal', sans-serif;
}
.btn-submit:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(46,107,255,0.3); }
.privacy-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }
.form-success { text-align: center; padding: 2rem 0; display: none; }
.success-icon { font-size: 4rem; color: var(--electric-blue); margin-bottom: 1rem; }
.success-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.success-desc { color: var(--text-muted); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1500;
}
.wa-popup {
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 18rem;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #1E1E1E, var(--deep-black));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  display: none;
  opacity: 0;
  transform: translateY(1rem) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
body.light-mode .wa-popup { background: linear-gradient(135deg, #fff, #F7F7F7); border-color: #E5E5E5; }
.wa-popup.open {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.wa-popup-close {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}
body.light-mode .wa-popup-close { background: rgba(0,0,0,0.05); }
.wa-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color:#FFF;
  margin-bottom: 0.75rem;
}
.wa-popup-title { font-weight: 700; color: #fff; margin-bottom: 0.25rem; font-size: 1rem; }
body.light-mode .wa-popup-title { color: var(--deep-black); }
.wa-popup-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.wa-open-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition-base);
}
.wa-open-btn:hover { transform: scale(1.02); box-shadow: 0 8px 20px rgba(37,211,102,0.3); color: #fff; }
.wa-main-btn {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: transform 0.3s ease;
  color:#FFF;
}
.wa-main-btn:hover { transform: scale(1.1); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2s ease infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
}
.wa-notif {
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #EF4444;
  border: 2px solid var(--deep-black);
  animation: notifPulse 1.5s ease infinite;
}
@keyframes notifPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }
.animate-fadeIn { animation: fadeIn 0.7s ease forwards; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
.container-custom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem;  }
.gap-3 { gap: 1rem;    }
.gap-4 { gap: 1.5rem;  }
.gap-5 { gap: 3rem;    }
@media (max-width: 767px) {
  .cta-box { padding: 2rem 1.5rem; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .process-step { text-align: center; }
  .case-study-item { margin-bottom: 3rem; }
  .panel-body { padding: 0 1.25rem 2rem; }
  .modal-header { padding: 1.5rem; }
  .modal-body { padding: 1.5rem; }
  #sticky-nav .nav-cta{
    padding: 0.6rem 10px;
    width: max-content;
  }
  .nav-inner .d-flex.align-items-center{
    gap: 5px !important;
    margin-inline-start: 8px;
  }
  .theme-toggle{
    padding: 5px 8px;
  }
}
@media (max-width: 575px) {
  .hero-headline { font-size: 2.2rem; }
  .section-title { font-size: 1.75rem; }
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--electric-blue);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
