/* ===================================================
   LAHA APP - Premium Redesign CSS
   Color Palette: Pink (#ec4899), Purple (#7c3aed), Dark (#1a0533)
   =================================================== */

:root {
  --pink: #ec4899;
  --pink-light: #f9a8d4;
  --pink-dark: #be185d;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #5b21b6;
  --dark: #1a0533;
  --dark-2: #2d1057;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-500: #71717a;
  --gray-700: #3f3f46;
  --gray-900: #18181b;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 20px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
  --shadow-pink: 0 20px 60px rgba(236,72,153,.25);
  --shadow-purple: 0 20px 60px rgba(124,58,237,.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  direction: rtl;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--pink), var(--purple)); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(236,72,153,.1);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: auto;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--purple);
  background: rgba(124,58,237,.06);
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white !important;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition-spring);
  box-shadow: 0 4px 15px rgba(124,58,237,.3);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(124,58,237,.4);
}

.menu-toggle { display: none; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fafafa;
}

/* Animated mesh background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-blob 8s ease-in-out infinite;
}

.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,.18), transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.15), transparent 70%);
  bottom: -200px; left: 200px;
  animation-delay: -3s;
}

.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,168,212,.2), transparent 70%);
  top: 50%; right: 30%;
  animation-delay: -5s;
}

.blob-4 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,.12), transparent 70%);
  top: 10%; left: 10%;
  animation-delay: -2s;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* HERO CONTENT */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: white;
  border: 1.5px solid rgba(124,58,237,.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  animation: slide-down 0.6s ease both;
}

.hero-badge strong { color: var(--purple); }
.badge-icon { font-size: 1rem; }

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  animation: slide-up 0.7s ease 0.1s both;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underline-wave {
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 100%;
  height: 20px;
  color: var(--pink);
  opacity: 0.6;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 400px;
  animation: slide-up 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
  animation: slide-up 0.7s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition-spring);
  box-shadow: 0 8px 25px rgba(124,58,237,.35);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(124,58,237,.45);
}

.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(-4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--purple-light);
  color: var(--purple);
  background: rgba(124,58,237,.04);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: slide-up 0.7s ease 0.4s both;
}

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

.stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* HERO PHONE */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  animation: slide-left 0.9s ease 0.2s both;
}

.phone-glow {
  position: absolute;
  width: 320px;
  height: 560px;
  background: radial-gradient(ellipse, rgba(124,58,237,.2), transparent 70%);
  filter: blur(40px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.phone-frame {
  position: relative;
  width: 280px;
  background: var(--dark);
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 40px 80px rgba(26,5,51,.4),
    0 10px 30px rgba(26,5,51,.3),
    inset 0 1px 0 rgba(255,255,255,.12);
  animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: var(--dark);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(180deg, #f8f0ff, #fff5fb);
  border-radius: 30px;
  overflow: hidden;
  height: 520px;
}

/* App UI inside phone */
.app-header {
  background: white;
  padding: 14px 14px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.app-header-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}

.app-header-sub {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.app-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 7px 10px;
  color: var(--gray-500);
  font-size: 0.7rem;
}

.salon-list {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.salon-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  animation: slide-in-card 0.5s ease both;
  cursor: pointer;
  transition: transform 0.2s;
}

.salon-card:hover { transform: scale(1.02); }

.salon-color {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
}

.salon-info { flex: 1; min-width: 0; }
.salon-name { font-size: 0.75rem; font-weight: 700; color: var(--dark); }
.salon-meta { font-size: 0.65rem; color: var(--gray-500); }
.salon-stars { font-size: 0.6rem; color: #f59e0b; letter-spacing: 1px; }

.salon-btn {
  padding: 5px 10px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Tajawal', sans-serif;
  transition: transform 0.2s;
}
.salon-btn:hover { transform: scale(1.05); }

@keyframes slide-in-card {
  from { opacity: 0; transform: translateX(-15px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.8);
  animation: float-badge-anim 4s ease-in-out infinite;
}

.badge-booking {
  bottom: 80px;
  left: -50px;
  animation-delay: 0s;
}

.badge-rating {
  top: 120px;
  right: -40px;
  animation-delay: -2s;
}

.badge-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(236,72,153,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-text { display: flex; flex-direction: column; }
.badge-title { font-size: 0.75rem; font-weight: 700; color: var(--dark); }
.badge-sub { font-size: 0.65rem; color: var(--gray-500); }

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.8rem;
  animation: fade-in 1s ease 1s both;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(124,58,237,.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--purple);
  border-radius: 2px;
  animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 7rem 2rem;
  background: white;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.2), rgba(236,72,153,.2), transparent);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section header shared */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.25rem;
  background: linear-gradient(135deg, rgba(236,72,153,.1), rgba(124,58,237,.1));
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236,72,153,.03), rgba(124,58,237,.03));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(124,58,237,.25);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(124,58,237,.05);
  transform: translateY(-8px);
}

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

.feature-card.featured {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-color: transparent;
  color: white;
}

.feature-card.featured .feature-desc { color: rgba(255,255,255,.75); }
.feature-card.featured .feature-title { color: white; }
.feature-card.featured .feature-tag { background: rgba(255,255,255,.15); color: white; border-color: rgba(255,255,255,.2); }

.feature-best-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,.2);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.3);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--icon-bg, #f4f4f5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-spring);
}

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

.feature-card.featured .feature-icon-wrap {
  background: rgba(255,255,255,.2);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-footer { margin-top: auto; }

.feature-tag {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 50px;
  font-size: 0.75rem;
  color: #059669;
  font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #fafafa, white);
}

.hiw-container { max-width: 1100px; margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-item {
  position: relative;
  text-align: center;
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(236,72,153,.1), rgba(124,58,237,.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-content {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.step-content:hover {
  border-color: rgba(124,58,237,.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 25px rgba(124,58,237,.35);
  transition: var(--transition-spring);
}

.step-content:hover .step-icon {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(124,58,237,.45);
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.step-connector {
  position: absolute;
  top: calc(50% + 10px);
  left: -calc(50%);
  transform: translateY(-50%);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 7rem 2rem;
  background: white;
}

.testi-container { max-width: 1200px; margin: 0 auto; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(124,58,237,.08);
  line-height: 1;
  font-family: Georgia, serif;
}

.testi-card:hover {
  border-color: rgba(124,58,237,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.testi-card.featured-card {
  background: linear-gradient(135deg, rgba(236,72,153,.05), rgba(124,58,237,.05));
  border-color: rgba(124,58,237,.2);
}

.testi-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

.testi-location {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== DOWNLOAD CTA ===== */
.download-cta {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  background: var(--dark);
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: float-blob 10s ease-in-out infinite;
}

.cta-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(236,72,153,.25), transparent 70%);
  top: -200px; right: -100px;
}

.cta-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.3), transparent 70%);
  bottom: -200px; left: 0;
  animation-delay: -5s;
}

.cta-particles {
  position: absolute;
  inset: 0;
}

.cta-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  animation: particle-float 6s ease-in-out infinite;
}

.cta-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cta-particles span:nth-child(2) { top: 60%; left: 20%; animation-delay: -1s; }
.cta-particles span:nth-child(3) { top: 30%; left: 80%; animation-delay: -2s; }
.cta-particles span:nth-child(4) { top: 70%; left: 70%; animation-delay: -3s; }
.cta-particles span:nth-child(5) { top: 10%; left: 50%; animation-delay: -0.5s; }
.cta-particles span:nth-child(6) { top: 80%; left: 40%; animation-delay: -1.5s; }
.cta-particles span:nth-child(7) { top: 45%; left: 90%; animation-delay: -2.5s; width: 6px; height: 6px; }
.cta-particles span:nth-child(8) { top: 90%; left: 5%; animation-delay: -3.5s; width: 3px; height: 3px; }

@keyframes particle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 50px rgba(124,58,237,.5);
  animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { box-shadow: 0 20px 50px rgba(124,58,237,.5); }
  50% { box-shadow: 0 25px 70px rgba(236,72,153,.6); }
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: white;
  min-width: 180px;
  transition: var(--transition-spring);
  backdrop-filter: blur(10px);
}

.store-btn:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.store-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.store-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,.6);
  line-height: 1;
}

.store-name {
  font-size: 1rem;
  font-weight: 800;
  color: white;
}

.cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cta-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
}

.cta-stat-stars {
  font-size: 0.8rem;
  color: #fbbf24;
}

.cta-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
}

.cta-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0020;
  color: rgba(255,255,255,.7);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, rgba(236,72,153,.3), rgba(124,58,237,.3));
  border-color: rgba(255,255,255,.2);
  color: white;
  transform: translateY(-3px);
}

.footer-group-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  transform: translateX(-4px);
}

.footer-store-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-store-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-store-btn:hover {
  background: rgba(255,255,255,.12);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.35);
}

.footer-made { color: rgba(255,255,255,.4) !important; }

/* ===== ANIMATIONS ===== */
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Intersection Observer animations */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="slide-right"] {
  transform: translateX(40px);
}

[data-animate="slide-left"] {
  transform: translateX(-40px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

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

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

  .steps-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }

  .hero-desc { margin-left: auto; margin-right: auto; }

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

  .hero-stats {
    justify-content: center;
  }

  .hero-phone {
    order: -1;
  }

  .phone-frame {
    width: 240px;
  }

  .badge-booking { left: 0; bottom: 60px; }
  .badge-rating { right: 0; top: 100px; }

  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-right: auto;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
  }

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

  .feature-card {
    padding: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .step-connector { display: none; }

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

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

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-num { font-size: 1.4rem; }
}
