/* ==========================================================================
   NextReachoo Refined Design System & Layout Stylesheet
   ========================================================================== */

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

:root {
  /* Brand Colors (Mascot Coral Orange & Teal Palette) */
  --color-primary: #FF5B35;       /* Mascot Coral Orange */
  --color-primary-rgb: 255, 91, 53;
  --color-secondary: #00A896;     /* Mascot Teal/Cyan */
  --color-secondary-rgb: 0, 168, 150;
  --color-violet: #6E3CBC;        /* Mascot Purple Accent */
  --color-violet-rgb: 110, 60, 188;
  --color-yellow: #FFD166;        /* Mascot Yellow */
  
  /* Dark Mode Palette (Navy Space Theme) */
  --color-bg-dark: #0B0D17;       /* Core Deep Navy Background */
  --color-bg-dark-sec: #121526;   /* Secondary Dark Navy Background */
  --color-text-dark-main: #F3F4F6;
  --color-text-dark-muted: #9CA3AF;
  --color-glass-dark-bg: rgba(18, 21, 38, 0.6);
  --color-glass-dark-border: rgba(255, 255, 255, 0.05); /* Softer outlines */

  /* Light Mode Palette (Off-White & Clean Light) */
  --color-bg-light: #FAFAFC;      
  --color-bg-light-sec: #F1F3F7;  
  --color-text-light-main: #171B26;
  --color-text-light-muted: #4B5563;
  --color-glass-light-bg: rgba(255, 255, 255, 0.7);
  --color-glass-light-border: rgba(0, 0, 0, 0.04); 

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), #E04824);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary), #028090);
  --gradient-violet: linear-gradient(135deg, var(--color-violet), #512596);
  --gradient-brand: linear-gradient(135deg, var(--color-primary), var(--color-violet), var(--color-secondary));
  --gradient-space: linear-gradient(180deg, #0B0D17 0%, #121526 100%);
  --gradient-dark-card: linear-gradient(145deg, rgba(25, 29, 51, 0.5), rgba(11, 13, 23, 0.5));
  --gradient-light-card: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(243, 244, 246, 0.8));

  /* UI Tokens */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 36px -4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
  --shadow-glow-purple: 0 8px 30px rgba(110, 60, 188, 0.2);
  --shadow-glow-orange: 0 8px 30px rgba(255, 91, 53, 0.2);
  --shadow-glow-teal: 0 8px 30px rgba(0, 168, 150, 0.2);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --header-height-large: 95px;
  --header-height-small: 70px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(var(--color-primary-rgb), 0.3);
  border-radius: 4px;
  border: 1px solid var(--color-bg-dark);
  transition: background 0.3s;
}

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

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

h1 span, h2 span, h3 span, h4 span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================================
   Global Page Loader (Smooth Flying Animation)
   ========================================================================== */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#page-loader.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 320px;
  padding: 20px;
}

.loader-bird-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 91, 53, 0.08);
  border-radius: 50%;
  border: 1px solid rgba(255, 91, 53, 0.2);
  box-shadow: var(--shadow-glow-orange);
}

.loader-bird {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: hoverFlight 2s ease-in-out infinite;
}

.loader-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text-dark-main);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--color-primary), var(--color-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loader-progress-track {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-brand);
  border-radius: 10px;
  animation: fillProgress 2.2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes hoverFlight {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}

@keyframes fillProgress {
  0% { width: 0%; }
  30% { width: 45%; }
  70% { width: 85%; }
  100% { width: 100%; }
}

/* ==========================================================================
   Section Theme Rules & Spacing (Alternating Themes with Breathing Space)
   ========================================================================== */
.section {
  padding: clamp(90px, 12vw, 170px) 0; /* Expanded padding for clean whitespace */
  position: relative;
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-dark-main);
}

.section-dark-sec {
  background-color: var(--color-bg-dark-sec);
  color: var(--color-text-dark-main);
}

.section-light {
  background-color: var(--color-bg-light);
  color: var(--color-text-light-main);
}

.section-light-sec {
  background-color: var(--color-bg-light-sec);
  color: var(--color-text-light-main);
}

/* General Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 36px; /* Slightly wider grid gap for breathing space */
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ==========================================================================
   Scroll Progress & Sticky Navbar
   ========================================================================== */
/* Scroll Progress Indicator */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-brand);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s linear;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-large);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

/* Shrink navbar on scroll */
.navbar.shrunk {
  height: var(--header-height-small);
  background: var(--color-glass-dark-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-glass-dark-border);
  box-shadow: var(--shadow-md);
}

.navbar.shrunk-light {
  height: var(--header-height-small);
  background: var(--color-glass-light-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-glass-light-border);
  box-shadow: var(--shadow-sm);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 18px;
  border-radius: 30px; /* Pill shape */
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover .logo-container {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-orange), 0 8px 25px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 91, 53, 0.3);
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.03);
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.8;
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1010;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-dark-main);
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.logo-light .mobile-toggle span {
  background-color: var(--color-text-light-main);
}

.mobile-toggle span:last-child {
  margin-bottom: 0;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Interactive Component Aesthetics (Buttons, Glassmorphism, 3D Tilt)
   ========================================================================== */
/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 91, 53, 0.4);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-glow-teal);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 168, 150, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-dark-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-light .btn-outline {
  color: var(--color-text-light-main);
  border-color: rgba(0, 0, 0, 0.12);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.section-light .btn-outline:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.25);
}

.btn-glow {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 8px 30px rgba(110, 60, 188, 0.25);
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(110, 60, 188, 0.45);
}

/* Glassmorphism Cards with 3D Tilt support */
.glass-card {
  border-radius: var(--border-radius-lg);
  padding: 40px; /* Generous inside space */
  background: var(--gradient-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-dark-border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  
  /* Support 3D Perspective Rotation */
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s;
}

.section-light .glass-card,
.section-light-sec .glass-card {
  background: var(--gradient-light-card);
  border: 1px solid var(--color-glass-light-border);
  box-shadow: var(--shadow-sm);
}

/* 3D Pop elements when hovered */
.glass-card > * {
  transform: translateZ(0px);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.glass-card:hover {
  border-color: rgba(var(--color-primary-rgb), 0.4);
  box-shadow: var(--shadow-glow-purple), var(--shadow-lg);
}

.glass-card:hover > * {
  transform: translateZ(25px); /* Pops content slightly forward */
}

/* Moving Mesh Background Gradients */
.floating-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  filter: blur(50px);
}

.shape-1 {
  background: var(--color-primary);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  top: 10%;
  left: -120px;
  animation: float-glow-1 22s ease-in-out infinite alternate;
}

.shape-2 {
  background: var(--color-violet);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  bottom: 10%;
  right: -180px;
  animation: float-glow-2 26s ease-in-out infinite alternate-reverse;
}

.shape-3 {
  background: var(--color-secondary);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 45%;
  left: 35%;
  animation: float-glow-1 18s ease-in-out infinite alternate;
}

@keyframes float-glow-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(90px, 60px) scale(1.15) rotate(90deg); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes float-glow-2 {
  0% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(-100px, -40px) scale(0.9) rotate(-90deg); }
  100% { transform: translate(0, 0) scale(1.1); }
}

/* ==========================================================================
   Home Page Sections
   ========================================================================== */
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height-large) + 40px);
  position: relative;
  overflow: hidden;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.2);
  animation: fadeUp 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  animation: fadeUp 1s ease forwards;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-violet), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  opacity: 0.8;
  margin-bottom: 44px;
  animation: fadeUp 1.2s ease forwards;
  max-width: 620px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 1.4s ease forwards;
}

.hero-illustration-wrapper {
  position: relative;
  animation: fadeIn 1.5s ease forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animated Growth Mockup in Hero */
.growth-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 480px;
  margin: 0 auto;
}

.mockup-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.12) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mockup-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 18px 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  width: 300px;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s;
}

.section-dark .mockup-card {
  background: rgba(18, 21, 38, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.card-instagram {
  top: 10px;
  left: 10px;
  z-index: 3;
  border-left: 4px solid #e1306c;
  animation: floatCard1 9s ease-in-out infinite alternate;
}

.card-facebook {
  bottom: 20px;
  left: 30px;
  z-index: 4;
  border-left: 4px solid #1877f2;
  animation: floatCard2 8s ease-in-out infinite alternate;
}

.card-youtube {
  top: 140px;
  right: 10px;
  z-index: 2;
  border-left: 4px solid #ff0000;
  animation: floatCard3 10s ease-in-out infinite alternate;
}

.growth-mockup-wrapper:hover .card-instagram {
  transform: translate(-10px, -15px) scale(1.03);
}
.growth-mockup-wrapper:hover .card-facebook {
  transform: translate(-5px, 15px) scale(1.03);
}
.growth-mockup-wrapper:hover .card-youtube {
  transform: translate(15px, 0) scale(1.03);
}

.mockup-card:hover {
  z-index: 10 !important;
  border-color: rgba(var(--color-primary-rgb), 0.3) !important;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mockup-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.profile-avatar.ig-avatar {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.profile-avatar.fb-avatar {
  background: #1877f2;
}

.profile-avatar.yt-avatar {
  background: #ff0000;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-light-main);
  line-height: 1.2;
}

.section-dark .profile-name {
  color: var(--color-text-dark-main);
}

.profile-tag {
  font-size: 0.7rem;
  opacity: 0.6;
}

.platform-badge {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(0, 168, 150, 0.1);
  color: var(--color-secondary);
}

.platform-badge.trend-up {
  background: rgba(0, 168, 150, 0.1);
  color: var(--color-secondary);
}

.stat-group {
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
  margin-bottom: 2px;
}

.stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--color-text-light-main);
}

.section-dark .stat-value {
  color: var(--color-text-dark-main);
}

.stat-trend {
  font-size: 0.75rem;
  color: var(--color-secondary);
  margin-top: 2px;
  font-weight: 600;
}

.growth-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  overflow: hidden;
}

.section-dark .growth-bar-track {
  background: rgba(255, 255, 255, 0.08);
}

.growth-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
}

.growth-bar-fill.ig-fill {
  background: linear-gradient(90deg, #f09433, #e1306c);
  animation: loadBarIG 3.5s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.growth-bar-fill.fb-fill {
  background: linear-gradient(90deg, #1877f2, #3b5998);
  animation: loadBarFB 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.growth-bar-fill.yt-fill {
  background: linear-gradient(90deg, #ff0000, #b2071d);
  animation: loadBarYT 3.8s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes loadBarIG {
  0% { width: 50%; }
  100% { width: 92%; }
}

@keyframes loadBarFB {
  0% { width: 40%; }
  100% { width: 88%; }
}

@keyframes loadBarYT {
  0% { width: 55%; }
  100% { width: 95%; }
}

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

@keyframes floatCard2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes floatCard3 {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

.floating-social-icon {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.social-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  top: -20px;
  right: 120px;
  animation: floatIcon1 8s ease-in-out infinite alternate;
}

.social-fb {
  background: #1877f2;
  bottom: 80px;
  right: -20px;
  animation: floatIcon2 7s ease-in-out infinite alternate;
}

.social-yt {
  background: #ff0000;
  top: 90px;
  left: -20px;
  animation: floatIcon3 9s ease-in-out infinite alternate;
}

@keyframes floatIcon1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(12px, 15px) rotate(15deg); }
}

@keyframes floatIcon2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-8px, -18px) rotate(-10deg); }
}

@keyframes floatIcon3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(15px, -12px) rotate(20deg); }
}

.floating-icon {
  position: absolute;
  animation: bob 4s ease-in-out infinite;
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Trust Section */
.trust-section {
  padding: 60px 0;
  border-top: 1px solid var(--color-glass-dark-border);
  border-bottom: 1px solid var(--color-glass-dark-border);
  overflow: hidden;
}

.trust-title {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
  margin-bottom: 35px;
}

/* Dual Marquee Styles */
.dual-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.dual-marquee-wrapper::before,
.dual-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.dual-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-dark) 0%, transparent 100%);
}

.dual-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg-dark) 0%, transparent 100%);
}

.section-light .dual-marquee-wrapper::before {
  background: linear-gradient(90deg, var(--color-bg-light) 0%, transparent 100%);
}
.section-light .dual-marquee-wrapper::after {
  background: linear-gradient(-90deg, var(--color-bg-light) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  user-select: none;
  gap: 20px;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  gap: 20px;
  animation: scrollLeft 35s linear infinite;
}

.marquee-reverse .marquee-content {
  animation: scrollRight 35s linear infinite;
}

.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text-dark-main);
  white-space: nowrap;
  transition: all 0.3s;
}

.section-light .marquee-item {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.04);
  color: var(--color-text-light-main);
}

.marquee-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 91, 53, 0.25);
  transform: translateY(-2px);
}

.section-light .marquee-item:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 91, 53, 0.25);
}

.marquee-item i {
  font-size: 1.15rem;
  transition: transform 0.3s;
}

.marquee-item:hover i {
  transform: scale(1.15);
}

/* Original Brand Colors for Icons */
.brand-fb { color: #1877F2 !important; }
.brand-ig { color: #E1306C !important; }
.brand-yt { color: #FF0000 !important; }
.brand-tw { color: #1DA1F2 !important; }
.brand-tt { color: #01F1E6 !important; text-shadow: 1px 1px 0 #FF0050; }
.brand-sp { color: #1DB954 !important; }
.brand-pin { color: #BD081C !important; }
.brand-sc { color: #FFFC00 !important; -webkit-text-stroke: 1px #000; }
.brand-dc { color: #5865F2 !important; }
.brand-li { color: #0A66C2 !important; }
.brand-wa { color: #25D366 !important; }
.brand-snd { color: #FF5500 !important; }
.brand-web { color: #00A896 !important; }
.brand-tg { color: #249EF1 !important; }

/* Engagement Specific Icon Colors */
.engage-likes { color: #FF5B35 !important; }
.engage-followers { color: #00A896 !important; }
.engage-subscribers { color: #FF0000 !important; }
.engage-views { color: #249EF1 !important; }
.engage-comments { color: #E1306C !important; }
.engage-shares { color: #25D366 !important; }
.engage-plays { color: #6E3CBC !important; }
.engage-impressions { color: #0A66C2 !important; }
.engage-votes { color: #FFD166 !important; }
.engage-retweets { color: #1DA1F2 !important; }

/* Section Header (More whitespace below) */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(50px, 8vw, 90px);
}

.section-tag {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.section-title span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.15rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Why NextReachoo Cards */
.why-card .card-icon {
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.6rem;
  border: 1px solid rgba(var(--color-primary-rgb), 0.15);
}

.why-card:nth-child(2n) .card-icon {
  background: rgba(var(--color-secondary-rgb), 0.08);
  color: var(--color-secondary);
  border-color: rgba(var(--color-secondary-rgb), 0.15);
}

.why-card:nth-child(3n) .card-icon {
  background: rgba(var(--color-violet-rgb), 0.08);
  color: var(--color-violet);
  border-color: rgba(var(--color-violet-rgb), 0.15);
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.why-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}

.stat-item {
  padding: 24px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.8;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}

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

.process-step::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: -1;
  opacity: 0.2;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-bg-dark-sec);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .step-number {
  transform: scale(1.12);
  box-shadow: var(--shadow-glow-orange);
  background: var(--color-primary);
  color: white;
}

.section-light .step-number {
  background: white;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Services Preview */
.services-footer {
  text-align: center;
  margin-top: 60px;
}

/* Testimonial Slider */
.testimonial-slider-container {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 24px;
}

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

.testimonial-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: clamp(30px, 5vw, 50px);
  color: var(--color-text-dark-main);
}

.section-light .testimonial-quote {
  color: var(--color-text-light-main);
}

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

.author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.author-info h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.88rem;
  opacity: 0.7;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-light .dot {
  background: rgba(0, 0, 0, 0.15);
}

.dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--color-primary);
}

/* CTA Section */
.cta-section {
  text-align: center;
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) 0;
}

.cta-card {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-xl);
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 24px;
}

.cta-desc {
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: 1.2rem;
  opacity: 0.85;
}

/* ==========================================================================
   Store / Followers Purchase Page Styles
   ========================================================================== */
.store-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

.calculator-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-icon {
  position: absolute;
  left: 20px;
  font-size: 1.15rem;
  color: var(--color-text-dark-muted);
}

.section-light .form-input-icon {
  color: var(--color-text-light-muted);
}

.form-input {
  width: 100%;
  padding: 18px 20px 18px 54px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  color: var(--color-text-dark-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-light .form-input {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text-dark-main);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.section-light .form-input:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

/* User Verification Simulation */
.username-status {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.username-status.loading {
  opacity: 1;
  color: var(--color-yellow);
}

.username-status.success {
  opacity: 1;
  color: var(--color-secondary);
}

.username-status.error {
  opacity: 1;
  color: var(--color-primary);
}

/* Custom Slider */
.slider-container {
  position: relative;
  padding: 20px 0;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: background 0.3s;
}

.section-light .range-slider {
  background: rgba(0, 0, 0, 0.08);
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: 3px solid var(--color-bg-dark-sec);
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s, background-color 0.2s;
}

.section-light .range-slider::-webkit-slider-thumb {
  border-color: white;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--color-secondary);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--color-text-dark-muted);
}

.section-light .slider-labels {
  color: var(--color-text-light-muted);
}

/* Presets Buttons Grid */
.presets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.btn-preset {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-dark-main);
  padding: 14px 6px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-preset:hover, .btn-preset.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-purple);
}

.section-light .btn-preset {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text-dark-main);
}
.summary-box {
  border: 1px solid var(--color-glass-dark-border);
}

.summary-title {
  font-size: 1.3rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  opacity: 0.85;
}

.summary-row.total {
  border-top: 1px solid var(--color-glass-dark-border);
  padding-top: 20px;
  font-size: 1.45rem;
  font-family: var(--font-heading);
  font-weight: 800;
  opacity: 1;
  color: var(--color-secondary);
}

.section-light .summary-row.total {
  border-top-color: var(--color-glass-light-border);
}

.summary-row.total .total-price {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  text-align: center;
  margin-top: 35px;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  opacity: 0.8;
}

.badge-item i {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

/* ==========================================================================
   Services Page Styles (Interactive Cards)
   ========================================================================== */
.service-expanded-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
}

.service-card.expanded .service-expanded-details {
  max-height: 500px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-glass-dark-border);
}

.section-light .service-card.expanded .service-expanded-details {
  border-top-color: var(--color-glass-light-border);
}

.service-card {
  cursor: pointer;
}

.service-card .card-expand-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.service-card:hover .card-expand-btn {
  gap: 12px;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.service-card .short-desc {
  font-size: 0.95rem;
  opacity: 0.85;
}

.service-detail-section {
  margin-bottom: 20px;
}

.service-detail-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.service-detail-content {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ==========================================================================
   Contact Page Styles (Forms, FAQ, Maps)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.contact-info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(var(--color-primary-rgb), 0.15);
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  opacity: 0.8;
}

.contact-info-item a:hover {
  color: var(--color-primary);
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--color-glass-dark-border);
  box-shadow: var(--shadow-md);
  margin-top: 35px;
}

.section-light .map-container {
  border-color: var(--color-glass-light-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Accordion */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-glass-dark-border);
  background: var(--color-glass-dark-bg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-light .faq-item {
  border-color: var(--color-glass-light-border);
  background: white;
}

.faq-question {
  padding: 26px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  transition: color 0.3s;
}

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

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 0.95rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 30px;
  opacity: 0;
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 26px;
  opacity: 0.85;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-dark-main);
  padding: 100px 0 35px;
  border-top: 1px solid var(--color-glass-dark-border);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 80px;
}

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

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 290px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-orange);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.20rem;
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
}

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

.footer-link a {
  font-size: 0.95rem;
  opacity: 0.7;
}

.footer-link a:hover {
  opacity: 1;
  color: var(--color-primary);
  padding-left: 6px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
}

.newsletter-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-btn {
  padding: 14px 22px;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--border-radius-sm);
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

.footer-bottom {
  border-top: 1px solid var(--color-glass-dark-border);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  opacity: 0.65;
}

/* ==========================================================================
   Floating Widgets (WhatsApp, Contact, Back-To-Top)
   ========================================================================== */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: white;
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.widget-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.widget-whatsapp {
  background-color: #25D366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
  animation: pulseGreen 2s infinite;
}

.widget-whatsapp:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.widget-contact {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow-orange);
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-illustration-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }
  .store-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height-large: 80px;
  }
  .nav-links {
    position: fixed;
    top: var(--header-height-large);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height-large));
    background: var(--color-bg-dark-sec);
    flex-direction: column;
    padding: 50px 0;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 998;
    border-top: 1px solid var(--color-glass-dark-border);
  }
  .section-light .nav-links {
    background: var(--color-bg-light-sec);
    border-top-color: var(--color-glass-light-border);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .process-step::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .presets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* SMM Panel Platform Selector Tabs */
.platform-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  width: 100%;
  border-bottom: 1px solid var(--color-glass-dark-border);
  padding-bottom: 16px;
}
.section-light .platform-tabs {
  border-bottom-color: var(--color-glass-light-border);
}
.platform-tab {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-dark-main);
  padding: 14px 20px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-light .platform-tab {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--color-text-light-main);
}
.platform-tab:hover, .platform-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white !important;
  box-shadow: var(--shadow-glow-orange);
  transform: translateY(-2px);
}
.platform-tab[data-platform="facebook"]:hover, .platform-tab[data-platform="facebook"].active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-glow-teal);
}
.platform-tab[data-platform="youtube"]:hover, .platform-tab[data-platform="youtube"].active {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.25);
}

/* Package Card Grid layout */
#package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 15px;
}

