/**
 * Frontend Luxury Stylesheet
 * Persian-Inspired Design for Porseshname Online
 *
 * Design Direction: Elegant Persian-inspired luxury
 * Color Palette: Deep navy, gold accents, emerald highlights, cream backgrounds
 * Typography: Vazirmatn
 */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Colors - Persian Luxury */
  --color-primary: #0A1628;
  --color-primary-light: #1A2D4A;
  --color-primary-dark: #050D18;
  --color-secondary: #D4AF37;
  --color-secondary-light: #E8C967;
  --color-secondary-dark: #B8942D;
  --color-accent: #2E8B57;
  --color-accent-light: #3CB371;
  --color-accent-dark: #1E6B47;
  --color-surface: #FFFBED;
  --color-surface-alt: #F5F0E1;
  --color-surface-dark: #EDE6D1;
  --color-background: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-muted: #6B7280;
  --color-text-light: #9CA3AF;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 50%, var(--color-secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.95) 100%);
  --gradient-card: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.03) 100%);
  --gradient-gold-glow: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);

  /* Typography */
  --font-family: 'Vazirmatn', 'IRANSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;

  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;

  /* Spacing */
  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-32: 8rem;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
  --shadow-gold-lg: 0 8px 30px rgba(212, 175, 55, 0.35);
  --shadow-accent: 0 4px 15px rgba(46, 139, 87, 0.2);

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-slower: 500ms ease;
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* Container */
  --container-max-width: 1320px;
  --container-padding: 1.5rem;
}

/* ============================================
   BASE RESET & GLOBAL STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  direction: rtl;
}

/* Selection */
::selection {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

/* Focus Ring */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--spacing-4);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-primary);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin: 0 0 var(--spacing-4);
  line-height: var(--line-height-relaxed);
}

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

a:hover {
  color: var(--color-secondary-dark);
}

.lead {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
}

.text-gold {
  color: var(--color-secondary);
}

.text-emerald {
  color: var(--color-accent);
}

.text-navy {
  color: var(--color-primary);
}

/* ============================================
   PERSIAN PATTERN BACKGROUNDS
   ============================================ */
.pattern-overlay {
  position: relative;
}

.pattern-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30M0 0L60 60M60 0L0 60' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3Ccircle cx='30' cy='30' r='8' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.08' fill='none'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.pattern-stars {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10L43 30L60 20L50 35L70 40L50 45L60 60L43 50L40 70L37 50L20 60L30 45L10 40L30 35L20 20L37 30Z' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.05' fill='none'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.pattern-arabesque {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0C50 27.6 27.6 50 0 50C27.6 50 50 72.4 50 100C50 72.4 72.4 50 100 50C72.4 50 50 27.6 50 0Z' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.08' fill='none'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}

.pattern-geometric {
  background-image:
    linear-gradient(30deg, transparent 24%, rgba(212, 175, 55, 0.03) 25%, rgba(212, 175, 55, 0.03) 26%, transparent 27%, transparent 74%, rgba(212, 175, 55, 0.03) 75%, rgba(212, 175, 55, 0.03) 76%, transparent 77%, transparent),
    linear-gradient(150deg, transparent 24%, rgba(212, 175, 55, 0.03) 25%, rgba(212, 175, 55, 0.03) 26%, transparent 27%, transparent 74%, rgba(212, 175, 55, 0.03) 75%, rgba(212, 175, 55, 0.03) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

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

@keyframes glow {
  0%, 100% {
    box-shadow: var(--shadow-gold);
  }
  50% {
    box-shadow: var(--shadow-gold-lg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn var(--transition-slow) ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp var(--transition-slow) ease forwards;
}

.animate-fade-in-down {
  animation: fadeInDown var(--transition-slow) ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight var(--transition-slow) ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft var(--transition-slow) ease forwards;
}

.animate-scale-in {
  animation: scaleIn var(--transition-slow) ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Stagger Delays */
.stagger-1 { animation-delay: 100ms; }
.stagger-2 { animation-delay: 200ms; }
.stagger-3 { animation-delay: 300ms; }
.stagger-4 { animation-delay: 400ms; }
.stagger-5 { animation-delay: 500ms; }
.stagger-6 { animation-delay: 600ms; }

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.lux-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: var(--spacing-4) 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition-base);
}

.lux-header.scrolled {
  padding: var(--spacing-2) 0;
  background: rgba(10, 22, 40, 0.95);
  box-shadow: var(--shadow-lg);
}

/* Hide mobile-only items on desktop */
@media (min-width: 992px) {
  .lux-mobile-only {
    display: none !important;
  }

  .lux-mobile-menu-header {
    display: none !important;
  }
}

/* Tablet and Mobile Navigation */
@media (max-width: 991px) {
  .lux-mobile-menu-header {
    display: flex;
  }
}

.lux-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Logo */
.lux-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
}

.lux-logo img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-base);
}

.lux-logo:hover img {
  transform: scale(1.05);
}

/* Navigation */
.lux-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
}

.lux-nav-item {
  position: relative;
  padding: var(--spacing-2) var(--spacing-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.lux-nav-item:hover,
.lux-nav-item.active {
  color: var(--color-secondary);
  background: rgba(212, 175, 55, 0.1);
}

.lux-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: var(--spacing-4);
  left: var(--spacing-4);
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.lux-nav-item:hover::after,
.lux-nav-item.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.lux-dropdown {
  position: relative;
}

.lux-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  padding: var(--spacing-2);
  background: var(--color-primary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

.lux-dropdown:hover .lux-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lux-dropdown-item {
  display: block;
  padding: var(--spacing-3) var(--spacing-4);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.lux-dropdown-item:hover {
  color: var(--color-secondary);
  background: rgba(212, 175, 55, 0.1);
}

/* Mobile Menu Toggle */
.lux-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--spacing-2);
  background: transparent;
  border: none;
  cursor: pointer;
}

.lux-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

/* CTA Button in Header */
.lux-header-cta {
  padding: var(--spacing-3) var(--spacing-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background: var(--gradient-secondary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
  display: inline-flex;
}

.lux-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--color-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.lux-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-32) var(--container-padding) var(--spacing-20);
  background: var(--gradient-primary);
  overflow: hidden;
}

.lux-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.lux-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
}

.lux-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}

.lux-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.lux-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  margin-bottom: var(--spacing-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
}

.lux-hero-title {
  font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-6xl));
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-6);
}

.lux-hero-title .highlight {
  color: var(--color-secondary);
}

.lux-hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-10);
}

.lux-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
  justify-content: center;
}

/* Hero Stats */
.lux-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-12);
  margin-top: var(--spacing-16);
  padding-top: var(--spacing-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-hero-stat {
  text-align: center;
}

.lux-hero-stat-value {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  line-height: 1;
}

.lux-hero-stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--spacing-2);
}

/* ============================================
   BUTTONS
   ============================================ */
.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  padding: var(--spacing-4) var(--spacing-8);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
}

.lux-btn-primary {
  color: var(--color-primary);
  background: var(--gradient-secondary);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-gold);
}

.lux-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--color-primary);
}

.lux-btn-outline {
  color: var(--color-secondary);
  background: transparent;
  border-color: var(--color-secondary);
}

.lux-btn-outline:hover {
  color: var(--color-primary);
  background: var(--color-secondary);
}

.lux-btn-white {
  color: var(--color-primary);
  background: #FFFFFF;
  border-color: #FFFFFF;
}

.lux-btn-white:hover {
  color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.lux-btn-lg {
  padding: var(--spacing-5) var(--spacing-10);
  font-size: var(--font-size-lg);
}

.lux-btn-sm {
  padding: var(--spacing-2) var(--spacing-4);
  font-size: var(--font-size-sm);
}

/* ============================================
   CARDS
   ============================================ */
.lux-card {
  position: relative;
  background: var(--color-background);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.lux-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.lux-card-body {
  padding: var(--spacing-8);
}

.lux-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.lux-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lux-card:hover .lux-card-image img {
  transform: scale(1.05);
}

.lux-card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-3);
}

.lux-card-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

/* Feature Cards */
.lux-feature-card {
  padding: var(--spacing-8);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.lux-feature-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.lux-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-6);
  font-size: 28px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  color: var(--color-secondary);
  transition: all var(--transition-base);
}

.lux-feature-card:hover .lux-feature-icon {
  background: var(--gradient-secondary);
  color: var(--color-primary);
  transform: scale(1.1);
}

.lux-feature-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-3);
}

.lux-feature-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

/* ============================================
   SECTIONS
   ============================================ */
.lux-section {
  padding: var(--spacing-24) 0;
}

.lux-section-cream {
  background-color: var(--color-surface);
}

.lux-section-dark {
  background: var(--gradient-primary);
  color: #FFFFFF;
}

.lux-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-16);
}

.lux-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  margin-bottom: var(--spacing-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-full);
}

.lux-section-title {
  font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-4);
}

.lux-section-dark .lux-section-title {
  color: #FFFFFF;
}

.lux-section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

.lux-section-dark .lux-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Section Divider */
.lux-divider {
  position: relative;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q25 0, 50 10 T100 10' stroke='%23D4AF37' stroke-width='1' fill='none' opacity='0.3'/%3E%3Ccircle cx='50' cy='10' r='3' fill='%23D4AF37' opacity='0.3'/%3E%3C/svg%3E") repeat-x center;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.lux-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-8);
  max-width: 1200px;
  margin: 0 auto;
}

.lux-pricing-card {
  position: relative;
  background: var(--color-background);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.lux-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.lux-pricing-card.featured {
  border: 2px solid var(--color-secondary);
  box-shadow: var(--shadow-gold);
}

.lux-pricing-card.featured::before {
  content: 'پیشنهاد ویژه';
  position: absolute;
  top: 20px;
  left: -35px;
  padding: var(--spacing-1) var(--spacing-8);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  background: var(--color-secondary);
  transform: rotate(45deg);
  z-index: 1;
}

.lux-pricing-header {
  padding: var(--spacing-8);
  text-align: center;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background) 100%);
  border-bottom: 1px solid var(--color-border);
}

.lux-pricing-name {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-4);
}

.lux-pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--spacing-1);
}

.lux-pricing-amount {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  color: var(--color-secondary);
  line-height: 1;
}

.lux-pricing-currency {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

.lux-pricing-period {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.lux-pricing-body {
  padding: var(--spacing-8);
}

.lux-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-3);
  padding: var(--spacing-3) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}

.lux-pricing-feature:last-child {
  border-bottom: none;
}

.lux-pricing-feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 12px;
}

.lux-pricing-feature-icon.check {
  color: var(--color-success);
  background: rgba(16, 185, 129, 0.1);
}

.lux-pricing-feature-icon.cross {
  color: var(--color-error);
  background: rgba(239, 68, 68, 0.1);
}

.lux-pricing-footer {
  padding: 0 var(--spacing-8) var(--spacing-8);
}

.lux-pricing-btn {
  display: block;
  width: 100%;
  padding: var(--spacing-4);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  color: var(--color-primary);
  background: var(--gradient-secondary);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
}

.lux-pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.lux-contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-5);
  padding: var(--spacing-6);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.lux-contact-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.lux-contact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-secondary);
  font-size: 24px;
  transition: all var(--transition-base);
}

.lux-contact-card:hover .lux-contact-icon {
  background: var(--gradient-secondary);
  color: var(--color-primary);
}

.lux-contact-content {
  flex: 1;
}

.lux-contact-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-2);
}

.lux-contact-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  word-break: break-word;
}

/* ============================================
   FORMS
   ============================================ */
.lux-form-group {
  margin-bottom: var(--spacing-6);
}

.lux-label {
  display: block;
  margin-bottom: var(--spacing-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.lux-input {
  display: block;
  width: 100%;
  padding: var(--spacing-4);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.lux-input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.lux-input::placeholder {
  color: var(--color-text-light);
}

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

.lux-form-error {
  font-size: var(--font-size-sm);
  color: var(--color-error);
  margin-top: var(--spacing-2);
}

/* ============================================
   FOOTER
   ============================================ */
.lux-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
}

.lux-footer-main {
  padding: var(--spacing-20) 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.05' fill='none'/%3E%3C/svg%3E");
}

.lux-footer-brand {
  margin-bottom: var(--spacing-6);
}

.lux-footer-logo {
  height: 50px;
  margin-bottom: var(--spacing-4);
}

.lux-footer-description {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--line-height-relaxed);
  max-width: 300px;
}

.lux-footer-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-6);
}

.lux-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-footer-link {
  display: block;
  padding: var(--spacing-2) 0;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.lux-footer-link:hover {
  color: var(--color-secondary);
  padding-right: var(--spacing-2);
}

.lux-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.lux-footer-bottom {
  padding: var(--spacing-6) 0;
  text-align: center;
}

.lux-footer-copyright {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
}

.lux-footer-copyright a {
  color: var(--color-secondary);
}

/* Social Links */
.lux-social-links {
  display: flex;
  gap: var(--spacing-3);
  margin-top: var(--spacing-6);
}

.lux-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.lux-social-link:hover {
  color: var(--color-primary);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-3px);
}

/* Telegram CTA */
.lux-telegram-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-4) var(--spacing-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: #FFFFFF;
  background: #3B82F6;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.lux-telegram-cta:hover {
  background: #2563EB;
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.lux-page-header {
  position: relative;
  padding: var(--spacing-32) 0 var(--spacing-16);
  background: var(--gradient-primary);
  text-align: center;
  overflow: hidden;
}

.lux-page-header-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

.lux-page-header-content {
  position: relative;
  z-index: 1;
}

.lux-page-title {
  font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
  margin-bottom: var(--spacing-4);
}

.lux-page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-sm);
}

.lux-breadcrumb-item {
  color: rgba(255, 255, 255, 0.6);
}

.lux-breadcrumb-item.active {
  color: var(--color-secondary);
}

.lux-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container-lux {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-5 { margin-bottom: var(--spacing-5); }
.mb-8 { margin-bottom: var(--spacing-8); }
.mb-12 { margin-bottom: var(--spacing-12); }
.mb-16 { margin-bottom: var(--spacing-16); }

.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-8 { margin-top: var(--spacing-8); }
.mt-12 { margin-top: var(--spacing-12); }
.mt-16 { margin-top: var(--spacing-16); }

.py-8 { padding-top: var(--spacing-8); padding-bottom: var(--spacing-8); }
.py-12 { padding-top: var(--spacing-12); padding-bottom: var(--spacing-12); }
.py-16 { padding-top: var(--spacing-16); padding-bottom: var(--spacing-16); }
.py-20 { padding-top: var(--spacing-20); padding-bottom: var(--spacing-20); }

.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-6xl: 3rem;
  }

  .lux-hero {
    min-height: 80vh;
    padding-top: var(--spacing-24);
  }

  .lux-hero-stats {
    gap: var(--spacing-8);
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2rem;
    --font-size-5xl: 2.25rem;
    --container-padding: 1rem;
  }

  /* ============================================
     MOBILE NAVIGATION - COMPLETE REDESIGN
     ============================================ */

  /* Hamburger Button */
  .lux-menu-toggle {
    display: flex !important;
    z-index: 1100;
  }

  /* Navigation Drawer */
  .lux-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;
    width: 85% !important;
    max-width: 320px !important;
    height: 100vh !important;
    height: 100dvh !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    background: var(--color-primary) !important;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5) !important;
    transition: right 0.35s ease !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 1050 !important;
    display: flex !important;
  }

  .lux-nav.active {
    right: 0 !important;
  }

  /* Menu Header */
  .lux-mobile-menu-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 20px !important;
    background: rgba(212, 175, 55, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex-shrink: 0 !important;
  }

  .lux-mobile-menu-logo img {
    height: 36px !important;
    width: auto !important;
    filter: brightness(0) invert(1) !important;
    opacity: 0.9 !important;
  }

  .lux-mobile-close {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    border-radius: 50% !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 18px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease !important;
  }

  .lux-mobile-close:hover {
    background: var(--color-secondary) !important;
    color: var(--color-primary) !important;
  }

  /* Menu Items List */
  .lux-nav > .lux-dropdown,
  .lux-nav > .lux-nav-item,
  .lux-nav > a {
    flex-shrink: 0 !important;
  }

  /* Individual Menu Items */
  .lux-nav-item {
    display: flex !important;
    align-items: center;
    padding: 16px 20px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition: background 0.2s ease, color 0.2s ease !important;
    text-decoration: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lux-nav-item:hover,
  .lux-nav-item.active {
    background: rgba(212, 175, 55, 0.1) !important;
    color: var(--color-secondary) !important;
  }

  .lux-nav-item i {
    margin-left: 10px !important;
    font-size: 16px !important;
    opacity: 0.7 !important;
  }

  /* Dropdown Container */
  .lux-dropdown {
    display: block !important;
    width: 100% !important;
    background: transparent !important;
    position: relative !important;
    float: none !important;
  }

  /* Disable desktop hover effect on mobile - only when NOT open */
  .lux-dropdown:not(.open):hover .lux-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 0 !important;
    padding: 0 20px !important;
  }

  /* Dropdown Toggle */
  .lux-dropdown > .lux-nav-item,
  .lux-dropdown-toggle {
    width: 100% !important;
    cursor: pointer !important;
    user-select: none !important;
  }

  .lux-dropdown-toggle i.bi-chevron-down {
    margin-right: auto !important;
    margin-left: 10px !important;
    font-size: 11px !important;
    transition: transform 0.25s ease !important;
  }

  .lux-dropdown.open > .lux-nav-item,
  .lux-dropdown.open > .lux-dropdown-toggle {
    background: rgba(212, 175, 55, 0.08) !important;
    color: var(--color-secondary) !important;
  }

  .lux-dropdown.open .lux-dropdown-toggle i.bi-chevron-down {
    transform: rotate(180deg) !important;
  }

  /* Dropdown Menu - ACCORDION STYLE */
  .lux-dropdown-menu {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 20px !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: max-height 0.35s ease, padding 0.35s ease !important;
    float: none !important;
  }

  .lux-dropdown.open .lux-dropdown-menu {
    max-height: 500px !important;
    padding: 12px 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Override desktop hover completely */
  .lux-dropdown:hover .lux-dropdown-menu:not(.open) {
    max-height: 0 !important;
    padding: 0 20px !important;
  }

  /* Ensure open state wins over hover */
  .lux-dropdown.open:hover .lux-dropdown-menu {
    max-height: 500px !important;
    padding: 12px 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Dropdown Items */
  .lux-dropdown-item {
    display: flex !important;
    align-items: center;
    padding: 12px 16px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 14px !important;
    background: transparent !important;
    border-radius: 8px !important;
    margin-bottom: 4px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lux-dropdown-item:last-child {
    margin-bottom: 0 !important;
  }

  .lux-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--color-secondary) !important;
  }

  .lux-dropdown-item::before {
    content: '' !important;
    width: 5px !important;
    height: 5px !important;
    min-width: 5px !important;
    background: var(--color-secondary) !important;
    border-radius: 50% !important;
    margin-left: 12px !important;
    opacity: 0.5 !important;
  }

  .lux-dropdown-item:hover::before {
    opacity: 1 !important;
  }

  /* Mobile Only Elements */
  .lux-mobile-only {
    display: flex !important;
  }

  /* CTA Button in Menu */
  .lux-header-cta {
    margin: 16px 20px 24px !important;
    width: calc(100% - 40px) !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }


  body.menu-open {
    overflow: hidden !important;
  }

  /* ============================================
     OTHER MOBILE STYLES
     ============================================ */

  /* Hero Mobile */
  .lux-hero {
    min-height: auto;
    padding: var(--spacing-24) var(--container-padding) var(--spacing-12);
  }

  .lux-hero-stats {
    flex-direction: column;
    gap: var(--spacing-6);
  }

  .lux-hero-actions {
    flex-direction: column;
  }

  .lux-hero-actions .lux-btn {
    width: 100%;
  }

  /* Pricing Mobile */
  .lux-pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-3xl: 1.75rem;
    --font-size-4xl: 2rem;
  }

  .lux-hero-badge {
    font-size: var(--font-size-xs);
    padding: var(--spacing-1) var(--spacing-3);
  }

  .lux-btn-lg {
    padding: var(--spacing-4) var(--spacing-6);
    font-size: var(--font-size-base);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .lux-header,
  .lux-footer,
  .lux-btn,
  .lux-menu-toggle {
    display: none !important;
  }

  .lux-hero {
    min-height: auto;
    padding: var(--spacing-8) 0;
    background: none;
  }

  body {
    color: #000;
    background: #FFF;
  }
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
.parallax-section {
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.7) 100%);
  z-index: 1;
}

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

/* Decorative floating elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  opacity: 0.1;
  animation: floatShape 20s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 150px;
  height: 150px;
  border: 3px solid var(--color-secondary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: -5s;
}

.floating-shape:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  transform: rotate(45deg);
  animation-delay: -10s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(30px) rotate(-5deg);
  }
}

/* ============================================
   ICON BOXES
   ============================================ */
.icon-box {
  text-align: center;
  padding: var(--spacing-8);
  background: var(--color-background);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.icon-box:hover::before {
  transform: scaleX(1);
}

.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.icon-box-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: var(--radius-xl);
  font-size: 32px;
  color: var(--color-secondary);
  transition: all var(--transition-base);
}

.icon-box:hover .icon-box-icon {
  background: var(--gradient-secondary);
  color: var(--color-primary);
  transform: scale(1.1) rotate(5deg);
}

.icon-box-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-3);
}

.icon-box-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

/* Icon Box Variants */
.icon-box-primary .icon-box-icon {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.05) 100%);
  color: var(--color-primary);
}

.icon-box-accent .icon-box-icon {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.15) 0%, rgba(46, 139, 87, 0.05) 100%);
  color: var(--color-accent);
}

.icon-box-accent:hover .icon-box-icon {
  background: var(--gradient-accent);
  color: #FFFFFF;
}

/* ============================================
   SLIDE ANIMATIONS
   ============================================ */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes flipIn {
  from {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateY(0);
  }
}

/* Animation Classes */
.slide-in-right {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-up {
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
}

.slide-in-down {
  opacity: 0;
  animation: slideInDown 0.8s ease forwards;
}

.zoom-in {
  opacity: 0;
  animation: zoomIn 0.6s ease forwards;
}

.bounce-in {
  opacity: 0;
  animation: bounceIn 0.8s ease forwards;
}

.flip-in {
  opacity: 0;
  animation: flipIn 0.8s ease forwards;
}

/* ============================================
   COUNTER SECTION
   ============================================ */
.counter-section {
  background: var(--gradient-primary);
  padding: var(--spacing-20) 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0C50 27.6 27.6 50 0 50C27.6 50 50 72.4 50 100C50 72.4 72.4 50 100 50C72.4 50 50 27.6 50 0Z' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  opacity: 0.5;
}

.counter-item {
  text-align: center;
  padding: var(--spacing-6);
}

.counter-icon {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-4);
}

.counter-number {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: var(--spacing-2);
}

.counter-label {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-card {
  background: var(--color-background);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-8);
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--spacing-4);
  right: var(--spacing-6);
  font-size: 5rem;
  color: var(--color-secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-6);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.testimonial-info h5 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin: 0;
}

.testimonial-info p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================
   PROCESS/TIMELINE SECTION
   ============================================ */
.process-timeline {
  position: relative;
  padding: var(--spacing-8) 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 3px;
  background: var(--color-border);
  transform: translateX(50%);
}

.process-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-12);
  position: relative;
}

.process-item:last-child {
  margin-bottom: 0;
}

.process-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-gold);
}

.process-content {
  flex: 1;
  padding: 0 var(--spacing-8);
  text-align: right;
}

.process-item:nth-child(odd) .process-content {
  text-align: left;
}

.process-content h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-2);
}

.process-content p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--gradient-secondary);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-12);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-4);
}

.cta-banner p {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  opacity: 0.8;
  margin-bottom: var(--spacing-6);
}

/* ============================================
   AUTH PAGES STYLES
   ============================================ */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-8) var(--spacing-4);
}

.auth-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.08'%3E%3Cpath d='M40 0L40 80M0 40L80 40'/%3E%3Ccircle cx='40' cy='40' r='15'/%3E%3Ccircle cx='40' cy='40' r='25'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.5;
}

.auth-floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.auth-shape {
  position: absolute;
  opacity: 0.1;
  animation: authFloat 15s ease-in-out infinite;
}

.auth-shape:nth-child(1) {
  top: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: var(--color-secondary);
  border-radius: 50%;
}

.auth-shape:nth-child(2) {
  top: 70%;
  right: 10%;
  width: 80px;
  height: 80px;
  border: 3px solid var(--color-secondary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: -5s;
}

.auth-shape:nth-child(3) {
  bottom: 20%;
  left: 15%;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  transform: rotate(45deg);
  animation-delay: -10s;
}

@keyframes authFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--color-background);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: slideInUp 0.6s ease forwards;
}

.auth-card-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: var(--spacing-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-3);
  margin-bottom: var(--spacing-4);
}

.auth-logo img {
  height: 50px;
  width: auto;
}

.auth-logo-text {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
}

.auth-logo-text span {
  color: var(--color-secondary);
}

.auth-card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.auth-card-body {
  padding: var(--spacing-8);
}

.auth-form-group {
  margin-bottom: var(--spacing-5);
}

.auth-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin-bottom: var(--spacing-2);
}

.auth-input-wrapper {
  position: relative;
}

.auth-input {
  width: 100%;
  padding: var(--spacing-4) var(--spacing-4) var(--spacing-4) var(--spacing-12);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.auth-input:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: var(--color-background);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.auth-input::placeholder {
  color: var(--color-text-light);
}

.auth-input-icon {
  position: absolute;
  right: var(--spacing-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  pointer-events: none;
  transition: color var(--transition-fast);
}

.auth-input:focus + .auth-input-icon,
.auth-input-wrapper:focus-within .auth-input-icon {
  color: var(--color-secondary);
}

.auth-input-error {
  border-color: var(--color-error);
}

.auth-error-message {
  font-size: var(--font-size-sm);
  color: var(--color-error);
  margin-top: var(--spacing-1);
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
}

.auth-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.auth-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-secondary);
  cursor: pointer;
}

.auth-checkbox-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  cursor: pointer;
}

.auth-checkbox-label a {
  color: var(--color-secondary);
}

.auth-btn {
  width: 100%;
  padding: var(--spacing-4);
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background: var(--gradient-secondary);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.auth-btn:active {
  transform: translateY(0);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  margin: var(--spacing-6) 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.auth-divider span {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.auth-links {
  text-align: center;
  margin-top: var(--spacing-6);
  padding-top: var(--spacing-6);
  border-top: 1px solid var(--color-border-light);
}

.auth-links a {
  color: var(--color-secondary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
}

.auth-links a:hover {
  color: var(--color-secondary-dark);
}

.auth-links p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-2);
}

.auth-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-4);
}

/* Auth Social Links */
.auth-social-btn {
  width: 100%;
  padding: var(--spacing-3) var(--spacing-4);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  background: var(--color-background);
  color: var(--color-text);
  text-decoration: none;
  margin-bottom: var(--spacing-3);
}

.auth-social-btn:hover {
  border-color: var(--color-secondary);
  background: var(--color-surface);
  color: var(--color-text);
}

.auth-social-btn i {
  font-size: var(--font-size-lg);
}

/* ============================================
   MORE ANIMATIONS FOR SECTIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

/* Hover lift effect */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Pulse animation for icons */
.icon-pulse {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Gradient text */
.gradient-text {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   ENHANCED FEATURES SECTION
   Neon Effects, Parallax & Object Movement
   ============================================ */
.features-section-enhanced {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 50%, var(--color-background) 100%);
}

/* Background Elements */
.features-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Floating Orbs */
.feature-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.feature-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}

.feature-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -7s;
}

.feature-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--color-secondary-light) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(40px, 30px) scale(1.05);
  }
}

/* Floating Particles */
.feature-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleRise 15s linear infinite;
}

.feature-particle:nth-child(4) { left: 10%; animation-delay: 0s; }
.feature-particle:nth-child(5) { left: 25%; animation-delay: -3s; }
.feature-particle:nth-child(6) { left: 50%; animation-delay: -6s; }
.feature-particle:nth-child(7) { left: 75%; animation-delay: -9s; }
.feature-particle:nth-child(8) { left: 90%; animation-delay: -12s; }

@keyframes particleRise {
  0% {
    bottom: -10px;
    opacity: 0;
    transform: translateX(0) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: translateX(100px) scale(0.5);
  }
}

/* Grid Pattern */
.features-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 30s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

/* Badge Glow Effect */
.badge-glow {
  position: relative;
  animation: badgeGlow 3s ease-in-out infinite;
}

.badge-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  filter: blur(15px);
  opacity: 0.3;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: badgeGlowPulse 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.2);
  }
}

@keyframes badgeGlowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Title Neon Effect */
.title-neon {
  position: relative;
  text-shadow:
    0 0 10px rgba(212, 175, 55, 0.3),
    0 0 20px rgba(212, 175, 55, 0.2),
    0 0 40px rgba(212, 175, 55, 0.1);
}

.title-neon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  animation: neonLine 3s ease-in-out infinite;
}

@keyframes neonLine {
  0%, 100% {
    width: 100px;
    opacity: 0.7;
  }
  50% {
    width: 150px;
    opacity: 1;
  }
}

/* Enhanced Feature Cards */
.feature-card-neon {
  position: relative;
  background: var(--color-background);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-8);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Card Glow Layer */
.feature-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 175, 55, 0.15) 0%,
    transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.feature-card-neon:hover .feature-card-glow {
  opacity: 1;
}

/* Animated Border */
.feature-card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-2xl);
  padding: 2px;
  background: linear-gradient(135deg,
    var(--color-secondary) 0%,
    transparent 30%,
    transparent 70%,
    var(--color-accent) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: borderRotate 4s linear infinite paused;
}

.feature-card-neon:hover .feature-card-border {
  opacity: 1;
  animation-play-state: running;
}

@keyframes borderRotate {
  0% {
    background: linear-gradient(0deg,
      var(--color-secondary) 0%,
      transparent 30%,
      transparent 70%,
      var(--color-accent) 100%);
  }
  25% {
    background: linear-gradient(90deg,
      var(--color-secondary) 0%,
      transparent 30%,
      transparent 70%,
      var(--color-accent) 100%);
  }
  50% {
    background: linear-gradient(180deg,
      var(--color-secondary) 0%,
      transparent 30%,
      transparent 70%,
      var(--color-accent) 100%);
  }
  75% {
    background: linear-gradient(270deg,
      var(--color-secondary) 0%,
      transparent 30%,
      transparent 70%,
      var(--color-accent) 100%);
  }
  100% {
    background: linear-gradient(360deg,
      var(--color-secondary) 0%,
      transparent 30%,
      transparent 70%,
      var(--color-accent) 100%);
  }
}

/* Card Content */
.feature-card-content {
  position: relative;
  z-index: 2;
}

/* Icon Container with Rings */
.feature-icon-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0.3;
  animation: ringPulse 3s ease-in-out infinite;
}

.feature-icon-ring-2 {
  animation-delay: 1.5s;
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.feature-icon-core {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  font-size: 28px;
  color: var(--color-secondary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.feature-card-neon:hover .feature-icon-core {
  background: var(--gradient-secondary);
  color: var(--color-primary);
  transform: scale(1.15) rotateY(180deg);
  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.5),
    0 0 60px rgba(212, 175, 55, 0.2),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Accent variant */
.feature-card-neon.feature-accent .feature-icon-ring {
  border-color: var(--color-accent);
}

.feature-card-neon.feature-accent .feature-icon-core {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.2) 0%, rgba(46, 139, 87, 0.05) 100%);
  color: var(--color-accent);
  box-shadow:
    0 0 20px rgba(46, 139, 87, 0.2),
    inset 0 0 20px rgba(46, 139, 87, 0.1);
}

.feature-card-neon.feature-accent:hover .feature-icon-core {
  background: var(--gradient-accent);
  color: #FFFFFF;
  box-shadow:
    0 0 30px rgba(46, 139, 87, 0.5),
    0 0 60px rgba(46, 139, 87, 0.2);
}

.feature-card-neon.feature-accent .feature-card-border {
  background: linear-gradient(135deg,
    var(--color-accent) 0%,
    transparent 30%,
    transparent 70%,
    var(--color-secondary) 100%);
}

/* Title & Text */
.feature-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-3);
  transition: all 0.3s ease;
}

.feature-card-neon:hover .feature-title {
  color: var(--color-secondary);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.feature-card-neon.feature-accent:hover .feature-title {
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(46, 139, 87, 0.3);
}

.feature-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  transition: all 0.3s ease;
}

.feature-card-neon:hover .feature-text {
  color: var(--color-text);
}

/* Card Particles */
.feature-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.feature-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0;
}

.feature-card-neon:hover .feature-particles span {
  animation: cardParticle 1s ease-out forwards;
}

.feature-particles span:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.feature-particles span:nth-child(2) {
  top: 50%;
  right: 15%;
  animation-delay: 0.2s;
}

.feature-particles span:nth-child(3) {
  bottom: 25%;
  left: 20%;
  animation-delay: 0.4s;
}

.feature-card-neon.feature-accent .feature-particles span {
  background: var(--color-accent);
}

@keyframes cardParticle {
  0% {
    opacity: 1;
    transform: scale(0) translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.5) translate(30px, -50px);
  }
}

/* Card Hover Transform */
.feature-card-neon:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 50px rgba(212, 175, 55, 0.1);
}

.feature-card-neon.feature-accent:hover {
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 50px rgba(46, 139, 87, 0.1);
}

/* Tilt effect on mouse move */
.feature-card-neon[data-tilt] {
  transform-style: preserve-3d;
}

.feature-card-neon[data-tilt] .feature-card-content {
  transform: translateZ(30px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-orb-1 {
    width: 200px;
    height: 200px;
  }

  .feature-orb-2 {
    width: 150px;
    height: 150px;
  }

  .feature-orb-3 {
    width: 100px;
    height: 100px;
  }

  .feature-card-neon {
    padding: var(--spacing-6);
  }

  .feature-icon-container {
    width: 80px;
    height: 80px;
  }

  .feature-icon-core {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

/* ============================================
   ADVANCED FEATURES SECTION (Redesigned)
   Interactive 3D Showcase
   ============================================ */
.advanced-features-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 100%);
}

/* Background Elements */
.advanced-features-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.af-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.af-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  top: -20%;
  left: -10%;
  animation: orbDrift 25s ease-in-out infinite;
}

.af-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  bottom: -15%;
  right: -10%;
  animation: orbDrift 20s ease-in-out infinite reverse;
}

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

/* Mesh Grid */
.af-mesh-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Animated SVG Lines */
.af-floating-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.af-line {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 0.5;
  opacity: 0.1;
  animation: lineFlow 8s ease-in-out infinite;
}

.af-line-2 {
  stroke: var(--color-accent);
  animation-delay: -2.5s;
}

.af-line-3 {
  animation-delay: -5s;
}

@keyframes lineFlow {
  0%, 100% {
    stroke-dasharray: 0 1000;
    stroke-dashoffset: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  50% {
    stroke-dasharray: 200 1000;
    stroke-dashoffset: -200;
    opacity: 0.15;
  }
  90% {
    opacity: 0;
  }
}

/* Header Styles */
.af-header {
  margin-bottom: var(--spacing-10);
}

.af-subtitle {
  text-align: right !important;
}

/* Feature List */
.af-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

.af-feature-item {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Connector Line */
.af-feature-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.af-connector-dot {
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.af-connector-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg, var(--color-secondary) 0%, transparent 100%);
  opacity: 0.3;
}

.af-feature-item:last-child .af-connector-line {
  display: none;
}

.af-feature-item:hover .af-connector-dot {
  transform: scale(1.5);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

/* Feature Card */
.af-feature-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  padding: var(--spacing-5);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.af-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.af-feature-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.af-feature-card:hover {
  transform: translateX(-10px);
  background: rgba(255, 255, 255, 1);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(212, 175, 55, 0.1);
}

/* Accent variant */
.af-feature-accent::before {
  background: var(--gradient-accent);
}

.af-feature-accent .af-connector-dot {
  background: var(--color-accent);
  box-shadow: 0 0 15px rgba(46, 139, 87, 0.5);
}

.af-feature-accent:hover .af-connector-dot {
  box-shadow: 0 0 25px rgba(46, 139, 87, 0.8);
}

.af-feature-accent:hover {
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(46, 139, 87, 0.1);
}

/* Icon */
.af-feature-icon {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.af-feature-accent .af-icon-bg {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.2) 0%, rgba(46, 139, 87, 0.05) 100%);
}

.af-feature-icon i {
  font-size: 20px;
  color: var(--color-secondary);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.af-feature-accent .af-feature-icon i {
  color: var(--color-accent);
}

.af-icon-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: all 0.3s ease;
}

.af-feature-accent .af-icon-ring {
  border-color: var(--color-accent);
}

.af-feature-card:hover .af-icon-ring {
  opacity: 0.3;
  transform: scale(1.3);
}

.af-feature-card:hover .af-icon-bg {
  background: var(--gradient-secondary);
}

.af-feature-accent:hover .af-icon-bg {
  background: var(--gradient-accent);
}

.af-feature-card:hover .af-feature-icon i {
  color: var(--color-primary);
  transform: scale(1.2);
}

.af-feature-accent:hover .af-feature-icon i {
  color: #FFFFFF;
}

/* Content */
.af-feature-content {
  flex: 1;
}

.af-feature-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-1);
  transition: all 0.3s ease;
}

.af-feature-card:hover .af-feature-title {
  color: var(--color-secondary);
}

.af-feature-accent:hover .af-feature-title {
  color: var(--color-accent);
}

.af-feature-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
  transition: all 0.3s ease;
}

.af-feature-card:hover .af-feature-text {
  color: var(--color-text);
}

/* Arrow */
.af-feature-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.af-feature-card:hover .af-feature-arrow {
  opacity: 1;
  transform: translateX(0);
}

.af-feature-arrow i {
  font-size: 14px;
  color: var(--color-secondary);
}

.af-feature-accent .af-feature-arrow {
  background: rgba(46, 139, 87, 0.1);
}

.af-feature-accent .af-feature-arrow i {
  color: var(--color-accent);
}

/* ============================================
   3D SHOWCASE CARD
   ============================================ */
.af-showcase {
  position: relative;
  padding: var(--spacing-4);
}

.af-showcase-card {
  position: relative;
  background: var(--gradient-primary);
  border-radius: var(--radius-3xl);
  padding: var(--spacing-10);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.af-showcase-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Animated Rings */
.af-showcase-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.af-ring {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.af-ring-1 {
  width: 200px;
  height: 200px;
  animation: ringRotate 20s linear infinite;
}

.af-ring-2 {
  width: 280px;
  height: 280px;
  animation: ringRotate 30s linear infinite reverse;
  border-style: dashed;
}

.af-ring-3 {
  width: 360px;
  height: 360px;
  animation: ringRotate 40s linear infinite;
  opacity: 0.5;
}

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

/* 3D Elements */
.af-3d-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

/* 3D Cube */
.af-3d-cube {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 40px;
  height: 40px;
  transform-style: preserve-3d;
  animation: cubeRotate 15s linear infinite;
}

.af-cube-face {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 16px;
  color: var(--color-secondary);
  backdrop-filter: blur(5px);
}

.af-cube-front { transform: translateZ(20px); }
.af-cube-back { transform: rotateY(180deg) translateZ(20px); }
.af-cube-right { transform: rotateY(90deg) translateZ(20px); }
.af-cube-left { transform: rotateY(-90deg) translateZ(20px); }

@keyframes cubeRotate {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* Floating Orbs with Icons */
.af-3d-orb {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-secondary);
  animation: orbFloat 6s ease-in-out infinite;
}

.af-orb-icon-1 {
  bottom: 20%;
  left: 8%;
  animation-delay: 0s;
}

.af-orb-icon-2 {
  top: 25%;
  left: 12%;
  animation-delay: -2s;
}

.af-orb-icon-3 {
  bottom: 35%;
  right: 8%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Image */
.af-showcase-image {
  position: relative;
  margin-bottom: var(--spacing-8);
}

.af-main-image {
  max-width: 220px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  animation: imageFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

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

.af-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(30px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

/* Content */
.af-showcase-content {
  position: relative;
  z-index: 2;
}

.af-showcase-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
  margin-bottom: var(--spacing-4);
}

.af-showcase-text {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-8);
  line-height: var(--line-height-relaxed);
}

/* CTA Button */
.af-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-4) var(--spacing-8);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background: var(--gradient-secondary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.af-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  color: var(--color-primary);
}

.af-btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.af-cta-btn:hover .af-btn-glow {
  transform: translate(-50%, -50%) scale(2);
}

/* Floating Stats */
.af-floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-3) var(--spacing-4);
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  z-index: 1;
  animation: statFloat 5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

.af-stat-1 {
  top: 12%;
  right: 15%;
  animation-delay: 0s;
}

.af-stat-2 {
  bottom: 15%;
  left: 10%;
  animation-delay: -2.5s;
}

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

.af-floating-stat i {
  font-size: 18px;
  color: var(--color-secondary);
}

.af-floating-stat span {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
}

.af-floating-stat small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

/* Card Border Glow */
.af-card-border-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
    var(--color-secondary),
    var(--color-accent),
    var(--color-secondary));
  border-radius: var(--radius-3xl);
  z-index: 0;
  opacity: 0.5;
  filter: blur(10px);
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Particles */
.af-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.af-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise 8s linear infinite;
}

.af-particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.af-particle:nth-child(2) { left: 40%; animation-delay: -1.5s; }
.af-particle:nth-child(3) { left: 60%; animation-delay: -3s; }
.af-particle:nth-child(4) { left: 75%; animation-delay: -4.5s; }
.af-particle:nth-child(5) { left: 90%; animation-delay: -6s; }

@keyframes particleRise {
  0% {
    bottom: 0;
    opacity: 0;
    transform: scale(0);
  }
  10% {
    opacity: 0.8;
    transform: scale(1);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: scale(0.5) translateX(50px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .af-showcase-card {
    min-height: 400px;
    padding: var(--spacing-8);
  }

  .af-main-image {
    max-width: 180px;
  }

  .af-ring-1 { width: 150px; height: 150px; }
  .af-ring-2 { width: 200px; height: 200px; }
  .af-ring-3 { width: 250px; height: 250px; }

  .af-3d-cube {
    display: none;
  }

  .af-floating-stat {
    padding: var(--spacing-2) var(--spacing-3);
  }

  .af-floating-stat span {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .af-feature-connector {
    display: none;
  }

  .af-feature-card {
    padding: var(--spacing-4);
  }

  .af-showcase-card {
    min-height: 350px;
    padding: var(--spacing-6);
  }

  .af-main-image {
    max-width: 150px;
  }

  .af-showcase-title {
    font-size: var(--font-size-xl);
  }

  .af-3d-orb {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .af-orb-icon-1 { display: none; }
}

/* ============================================
   SECTION 1: ECO MESSAGE (Redesigned)
   ============================================ */
.eco-message-section {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.eco-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.eco-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../front/main/media/img/header-background-01.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.eco-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(46, 139, 87, 0.85) 100%);
}

.eco-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

/* Floating Leaves */
.eco-leaves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.eco-leaf {
  position: absolute;
  opacity: 0.6;
  animation: leafFall 15s linear infinite;
}

.eco-leaf i {
  font-size: 24px;
  color: var(--color-accent);
}

.eco-leaf-1 { left: 10%; animation-delay: 0s; }
.eco-leaf-2 { left: 30%; animation-delay: -3s; }
.eco-leaf-3 { left: 50%; animation-delay: -6s; }
.eco-leaf-4 { left: 70%; animation-delay: -9s; }
.eco-leaf-5 { left: 90%; animation-delay: -12s; }

@keyframes leafFall {
  0% {
    top: -10%;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% {
    top: 110%;
    transform: translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Animated Waves */
.eco-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
}

.eco-wave {
  fill: var(--color-surface);
}

.eco-wave-1 {
  opacity: 0.3;
  animation: waveMove 8s ease-in-out infinite;
}

.eco-wave-2 {
  opacity: 0.5;
  animation: waveMove 8s ease-in-out infinite reverse;
  animation-delay: -4s;
}

@keyframes waveMove {
  0%, 100% { d: path("M0,60 C360,120 1080,0 1440,60 L1440,120 L0,120 Z"); }
  50% { d: path("M0,80 C360,20 1080,100 1440,40 L1440,120 L0,120 Z"); }
}

/* Content Card */
.eco-content {
  position: relative;
  z-index: 3;
  padding: var(--spacing-12) 0;
}

.eco-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-8);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-10);
  position: relative;
  overflow: hidden;
}

/* Tree Icon */
.eco-icon-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-tree-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: treeGlow 3s ease-in-out infinite;
}

@keyframes treeGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.eco-tree-rings {
  position: absolute;
  width: 100%;
  height: 100%;
}

.eco-tree-rings span {
  position: absolute;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: treeRingPulse 3s ease-in-out infinite;
}

.eco-tree-rings span:nth-child(1) { width: 80px; height: 80px; animation-delay: 0s; }
.eco-tree-rings span:nth-child(2) { width: 100px; height: 100px; animation-delay: 0.5s; }
.eco-tree-rings span:nth-child(3) { width: 120px; height: 120px; animation-delay: 1s; }

@keyframes treeRingPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}

.eco-tree-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.3) 0%, rgba(46, 139, 87, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-tree-icon i {
  font-size: 32px;
  color: var(--color-accent-light);
}

.eco-pulse-ring {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Message Content */
.eco-message-content {
  flex: 1;
}

.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-4);
}

.eco-badge i {
  color: var(--color-secondary);
  font-size: 18px;
}

.eco-badge span {
  color: var(--color-secondary);
  font-weight: var(--font-weight-semibold);
}

.eco-text {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-loose);
  margin-bottom: var(--spacing-6);
}

.eco-highlight {
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
}

/* Impact Box */
.eco-impact {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  padding: var(--spacing-4);
  background: rgba(46, 139, 87, 0.2);
  border: 1px solid rgba(46, 139, 87, 0.3);
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-6);
}

.eco-impact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eco-impact-icon i {
  font-size: 24px;
  color: #FFFFFF;
}

.eco-impact-text {
  flex: 1;
  color: #FFFFFF;
  font-size: var(--font-size-sm);
}

.eco-impact-text strong {
  display: block;
  margin-bottom: var(--spacing-1);
}

.eco-impact-result {
  color: var(--color-secondary-light);
  font-weight: var(--font-weight-bold);
}

/* Trees Saved Counter */
.eco-trees-saved {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

.eco-saved-number {
  text-align: center;
}

.eco-counter {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-black);
  color: var(--color-secondary);
  line-height: 1;
}

.eco-counter-label {
  display: block;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--spacing-1);
}

.eco-saved-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.eco-saved-progress {
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  border-radius: var(--radius-full);
  animation: progressGrow 3s ease-out forwards;
}

@keyframes progressGrow {
  from { width: 0; }
  to { width: 70%; }
}

/* Decorative Elements */
.eco-decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
}

.eco-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eco-decor-1 {
  width: 150px;
  height: 150px;
  top: -50px;
  right: -50px;
}

.eco-decor-2 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 20%;
}

.eco-decor-line {
  position: absolute;
  width: 1px;
  height: 100%;
  right: 50px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

/* ============================================
   SECTION 3: STATS (Redesigned)
   ============================================ */
.stats-section {
  position: relative;
  padding: var(--spacing-24) 0;
  background: var(--gradient-primary);
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.stats-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.stats-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.stats-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.5;
  animation: statParticle 10s linear infinite;
}

.stats-particles span:nth-child(1) { left: 5%; animation-delay: 0s; }
.stats-particles span:nth-child(2) { left: 15%; animation-delay: -1s; }
.stats-particles span:nth-child(3) { left: 25%; animation-delay: -2s; }
.stats-particles span:nth-child(4) { left: 40%; animation-delay: -3s; }
.stats-particles span:nth-child(5) { left: 55%; animation-delay: -4s; }
.stats-particles span:nth-child(6) { left: 65%; animation-delay: -5s; }
.stats-particles span:nth-child(7) { left: 75%; animation-delay: -6s; }
.stats-particles span:nth-child(8) { left: 85%; animation-delay: -7s; }
.stats-particles span:nth-child(9) { left: 95%; animation-delay: -8s; }

@keyframes statParticle {
  0% { bottom: -10px; opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.2; }
  100% { bottom: 100%; opacity: 0; }
}

.stats-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.stats-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.stats-orb-1 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  top: -100px;
  right: -100px;
  animation: orbFloat 15s ease-in-out infinite;
}

.stats-orb-2 {
  width: 250px;
  height: 250px;
  background: var(--color-accent);
  bottom: -50px;
  left: -50px;
  animation: orbFloat 20s ease-in-out infinite reverse;
}

/* Stat Cards */
.stat-card {
  position: relative;
  height: 100%;
  cursor: pointer;
}

.stat-card-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-8);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.stat-card:hover .stat-card-inner {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-card-accent .stat-card-inner {
  border-color: rgba(46, 139, 87, 0.3);
}

/* Icon */
.stat-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.stat-card-accent .stat-icon-bg {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.3) 0%, rgba(46, 139, 87, 0.1) 100%);
}

.stat-card:hover .stat-icon-bg {
  background: var(--gradient-secondary);
}

.stat-card-accent:hover .stat-icon-bg {
  background: var(--gradient-accent);
}

.stat-icon-rings span {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.stat-icon-rings span:nth-child(2) {
  animation-delay: 0.3s;
}

.stat-card-accent .stat-icon-rings span {
  border-color: var(--color-accent);
}

.stat-card:hover .stat-icon-rings span {
  opacity: 0.3;
  animation: iconRing 2s ease-out infinite;
}

.stat-card:hover .stat-icon-rings span:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes iconRing {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 0; }
}

.stat-icon-wrapper i {
  font-size: 32px;
  color: var(--color-secondary);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.stat-card-accent .stat-icon-wrapper i {
  color: var(--color-accent-light);
}

.stat-card:hover .stat-icon-wrapper i {
  color: var(--color-primary);
  transform: scale(1.2);
}

.stat-card-accent:hover .stat-icon-wrapper i {
  color: #FFFFFF;
}

/* Content */
.stat-content {
  position: relative;
  z-index: 2;
}

.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--spacing-2);
}

.stat-prefix {
  font-size: var(--font-size-2xl);
  color: var(--color-secondary);
}

.stat-value {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  color: #FFFFFF;
  line-height: 1;
}

.stat-suffix {
  font-size: var(--font-size-2xl);
  color: var(--color-secondary);
}

.stat-label {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.7);
}

/* Progress Circle */
.stat-progress {
  position: absolute;
  top: var(--spacing-4);
  right: var(--spacing-4);
  width: 40px;
  height: 40px;
}

.stat-progress svg {
  transform: rotate(-90deg);
}

.stat-progress-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 4;
}

.stat-progress-bar {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 2s ease;
}

.stat-progress-99 {
  stroke: var(--color-accent);
}

.stat-card.animated .stat-progress-bar {
  stroke-dashoffset: 56;
}

.stat-card.animated .stat-progress-99 {
  stroke-dashoffset: 3;
}

/* Glow Effect */
.stat-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 50px;
  background: radial-gradient(ellipse, var(--color-secondary) 0%, transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card-accent .stat-glow {
  background: radial-gradient(ellipse, var(--color-accent) 0%, transparent 70%);
}

.stat-card:hover .stat-glow {
  opacity: 0.5;
}

/* Bottom Wave */
.stats-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
}

.stats-wave svg {
  width: 100%;
  height: 100%;
}

.stats-wave path {
  fill: var(--color-surface);
}

/* ============================================
   SECTION 4: STEPS (Redesigned)
   ============================================ */
.steps-section {
  position: relative;
  padding: var(--spacing-24) 0;
  background: var(--color-surface);
  overflow: hidden;
}

.steps-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.steps-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.steps-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.steps-header {
  text-align: center;
  margin-bottom: var(--spacing-16);
}

/* Timeline */
.steps-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
}

.steps-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 4px;
  background: var(--color-border);
  transform: translateX(50%);
  z-index: 0;
}

.steps-line-progress {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0;
  background: var(--gradient-secondary);
  transition: height 1s ease;
}

.steps-line-glow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  background: var(--color-secondary);
  filter: blur(10px);
  opacity: 0.5;
  animation: lineGlowMove 3s ease-in-out infinite;
}

@keyframes lineGlowMove {
  0%, 100% { top: 0; opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* Step Cards */
.step-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  z-index: 1;
}

.step-card:nth-child(even) {
  flex-direction: row-reverse;
}

.step-connector {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  display: flex;
  justify-content: center;
}

.step-dot {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.step-accent .step-dot {
  background: var(--gradient-accent);
  box-shadow: var(--shadow-accent);
}

.step-dot span {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.step-accent .step-dot span {
  color: #FFFFFF;
}

.step-dot-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.step-accent .step-dot-ring {
  border-color: var(--color-accent);
}

.step-card:hover .step-dot {
  transform: scale(1.2);
}

.step-card:hover .step-dot-ring {
  opacity: 0.5;
  transform: scale(1.5);
}

.step-content {
  flex: 1;
  max-width: calc(50% - 60px);
}

.step-card-inner {
  background: var(--color-background);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-8);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--color-border);
}

.step-card:hover .step-card-inner {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-secondary);
}

.step-accent:hover .step-card-inner {
  border-color: var(--color-accent);
}

/* Step Icon */
.step-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: var(--spacing-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.step-accent .step-icon-bg {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.2) 0%, rgba(46, 139, 87, 0.05) 100%);
}

.step-card:hover .step-icon-bg {
  background: var(--gradient-secondary);
}

.step-accent:hover .step-icon-bg {
  background: var(--gradient-accent);
}

.step-icon i {
  font-size: 24px;
  color: var(--color-secondary);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-accent .step-icon i {
  color: var(--color-accent);
}

.step-card:hover .step-icon i {
  color: var(--color-primary);
  transform: scale(1.2);
}

.step-accent:hover .step-icon i {
  color: #FFFFFF;
}

.step-icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-accent .step-icon-glow {
  background: var(--color-accent);
}

.step-card:hover .step-icon-glow {
  opacity: 0.3;
}

.step-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-2);
}

.step-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-4);
}

.step-features {
  display: flex;
  gap: var(--spacing-4);
}

.step-features span {
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
  font-size: var(--font-size-xs);
  color: var(--color-accent);
}

.step-features i {
  font-size: 10px;
}

.step-arrow {
  position: absolute;
  left: var(--spacing-4);
  bottom: var(--spacing-4);
  width: 36px;
  height: 36px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.step-card:nth-child(even) .step-arrow {
  left: auto;
  right: var(--spacing-4);
  transform: translateX(-10px);
}

.step-accent .step-arrow {
  background: rgba(46, 139, 87, 0.1);
}

.step-arrow i {
  font-size: 14px;
  color: var(--color-secondary);
}

.step-accent .step-arrow i {
  color: var(--color-accent);
}

.step-card:hover .step-arrow {
  opacity: 1;
  transform: translateX(0);
}

.step-card:nth-child(even):hover .step-arrow {
  transform: translateX(0);
}

/* CTA */
.steps-cta {
  text-align: center;
  margin-top: var(--spacing-12);
}

.steps-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-5) var(--spacing-10);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background: var(--gradient-secondary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.steps-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--color-primary);
}

.steps-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.steps-cta-btn:hover .steps-cta-glow {
  transform: translate(-50%, -50%) scale(2);
}

/* Floating Elements */
.steps-floating {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.steps-float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBounce 5s ease-in-out infinite;
}

.steps-float-icon i {
  font-size: 18px;
  color: var(--color-secondary);
  opacity: 0.5;
}

.steps-float-1 { top: 20%; left: 5%; animation-delay: 0s; }
.steps-float-2 { top: 50%; right: 5%; animation-delay: -2s; }
.steps-float-3 { bottom: 20%; left: 10%; animation-delay: -4s; }

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

/* ============================================
   SECTION 6: PRICING (Redesigned)
   ============================================ */
.pricing-section {
  position: relative;
  padding: var(--spacing-24) 0;
  background: var(--color-surface);
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pricing-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(46, 139, 87, 0.08) 0%, transparent 40%);
}

.pricing-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.pricing-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.pricing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.pricing-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  top: -200px;
  left: -100px;
}

.pricing-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  bottom: -100px;
  right: -50px;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-16);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-8);
  max-width: 1100px;
  margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  height: 100%;
}

.pricing-card-inner {
  position: relative;
  background: var(--color-background);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid var(--color-border);
}

.pricing-card:hover .pricing-card-inner {
  transform: translateY(-15px);
  box-shadow: var(--shadow-2xl);
}

/* Featured Card */
.pricing-featured {
  z-index: 2;
}

.pricing-featured .pricing-card-inner {
  border: 2px solid var(--color-secondary);
  box-shadow: var(--shadow-gold);
}

.pricing-featured:hover .pricing-card-inner {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), var(--shadow-gold-lg);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: var(--spacing-2) var(--spacing-4);
  background: var(--gradient-secondary);
  color: var(--color-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  border-radius: 0 var(--radius-2xl) 0 var(--radius-lg);
  z-index: 3;
}

/* Header Section */
.pricing-header-section {
  padding: var(--spacing-8);
  text-align: center;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background) 100%);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.pricing-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-icon i {
  font-size: 24px;
  color: var(--color-text-muted);
  position: relative;
  z-index: 2;
}

.pricing-icon-gold i {
  color: var(--color-secondary);
}

.pricing-icon-crown i {
  color: var(--color-secondary);
}

.pricing-icon-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pricing-icon-gold .pricing-icon-ring {
  border-color: rgba(212, 175, 55, 0.3);
}

.pricing-icon-crown .pricing-icon-ring {
  border-color: rgba(212, 175, 55, 0.3);
}

.pricing-card:hover .pricing-icon-ring {
  transform: scale(1.2);
  opacity: 0.5;
}

.pricing-name {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-4);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--spacing-1);
}

.pricing-amount {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  color: var(--color-secondary);
  line-height: 1;
}

.pricing-featured .pricing-amount {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-currency {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.pricing-period {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-top: var(--spacing-2);
}

/* Body */
.pricing-body {
  padding: var(--spacing-6) var(--spacing-8);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-3) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature.disabled {
  color: var(--color-text-light);
  text-decoration: line-through;
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-feature-icon.check {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.pricing-feature-icon.cross {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
}

.pricing-feature-icon i {
  font-size: 10px;
}

/* Footer */
.pricing-footer {
  padding: 0 var(--spacing-8) var(--spacing-8);
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  width: 100%;
  padding: var(--spacing-4);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  border-color: var(--color-secondary);
  background: rgba(212, 175, 55, 0.05);
  color: var(--color-primary);
}

.pricing-btn-primary {
  background: var(--gradient-secondary);
  border: none;
  color: var(--color-primary);
}

.pricing-btn-primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: var(--color-primary);
}

/* Glow Effects */
.pricing-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, var(--color-border) 0%, transparent 70%);
  filter: blur(30px);
  opacity: 0.5;
  pointer-events: none;
}

.pricing-glow-gold {
  background: radial-gradient(ellipse, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.3;
}

.pricing-border-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-accent), var(--color-secondary));
  border-radius: var(--radius-2xl);
  z-index: -1;
  filter: blur(15px);
  opacity: 0.3;
  animation: borderGlowRotate 4s linear infinite;
  pointer-events: none;
}

@keyframes borderGlowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* View All */
.pricing-cta {
  text-align: center;
  margin-top: var(--spacing-12);
}

.pricing-view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-4) var(--spacing-8);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-secondary);
  background: transparent;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-view-all:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.pricing-view-all-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.pricing-view-all:hover .pricing-view-all-glow {
  transform: translate(-50%, -50%) scale(2);
}

/* Floating Elements */
.pricing-floats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.pricing-float {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBounce 6s ease-in-out infinite;
}

.pricing-float i {
  font-size: 16px;
  color: var(--color-secondary);
  opacity: 0.5;
}

.pricing-float-1 { top: 15%; left: 8%; animation-delay: 0s; }
.pricing-float-2 { bottom: 20%; right: 8%; animation-delay: -3s; }

/* ============================================
   SECTION 7: CTA (Redesigned)
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--spacing-24) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../front/main/media/img/homepage-why-us.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.97) 0%, rgba(10, 22, 40, 0.9) 100%);
}

.cta-mesh-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 50px 50px, 50px 50px;
}

/* Stars */
.cta-stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.cta-star:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.cta-star:nth-child(2) { top: 20%; left: 80%; animation-delay: -0.5s; }
.cta-star:nth-child(3) { top: 35%; left: 25%; animation-delay: -1s; }
.cta-star:nth-child(4) { top: 45%; left: 90%; animation-delay: -1.5s; }
.cta-star:nth-child(5) { top: 60%; left: 10%; animation-delay: -2s; }
.cta-star:nth-child(6) { top: 70%; left: 70%; animation-delay: -2.5s; }
.cta-star:nth-child(7) { top: 80%; left: 40%; animation-delay: -3s; }
.cta-star:nth-child(8) { top: 15%; left: 55%; animation-delay: -3.5s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Floating Elements */
.cta-floats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-float {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatRotate 10s ease-in-out infinite;
}

.cta-float i {
  font-size: 28px;
  color: var(--color-accent);
  opacity: 0.5;
}

.cta-float-1 { top: 15%; left: 5%; animation-delay: 0s; }
.cta-float-2 { top: 60%; right: 5%; animation-delay: -3s; }
.cta-float-3 { bottom: 15%; left: 15%; animation-delay: -6s; }

@keyframes floatRotate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

/* Animated Lines */
.cta-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-line {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 0.5;
  opacity: 0;
  animation: ctaLineFlow 6s ease-in-out infinite;
}

.cta-line-2 {
  stroke: var(--color-accent);
  animation-delay: -2s;
}

.cta-line-3 {
  animation-delay: -4s;
}

@keyframes ctaLineFlow {
  0% { stroke-dasharray: 0 1000; opacity: 0; }
  10% { opacity: 0.2; }
  50% { stroke-dasharray: 200 1000; stroke-dashoffset: -200; opacity: 0.2; }
  90% { opacity: 0; }
  100% { stroke-dasharray: 0 1000; opacity: 0; }
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Icon */
.cta-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon-rings span {
  position: absolute;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0.3;
  animation: ctaRingPulse 3s ease-out infinite;
}

.cta-icon-rings span:nth-child(1) { width: 80px; height: 80px; }
.cta-icon-rings span:nth-child(2) { width: 100px; height: 100px; animation-delay: 0.5s; }
.cta-icon-rings span:nth-child(3) { width: 120px; height: 120px; animation-delay: 1s; }

@keyframes ctaRingPulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 0; }
}

.cta-icon {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.3) 0%, rgba(46, 139, 87, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon i {
  font-size: 28px;
  color: var(--color-accent-light);
}

.cta-icon-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: ctaIconPulse 2s ease-out infinite;
}

@keyframes ctaIconPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

/* Title */
.cta-title {
  margin-bottom: var(--spacing-6);
}

.cta-title-line {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.9);
}

.cta-title-highlight {
  display: block;
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
  50% { text-shadow: 0 0 60px rgba(212, 175, 55, 0.8), 0 0 100px rgba(212, 175, 55, 0.3); }
}

.cta-text {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-10);
}

/* Stats */
.cta-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-10);
  flex-wrap: wrap;
}

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

.cta-stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--spacing-2);
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-stat-icon i {
  font-size: 20px;
  color: var(--color-secondary);
}

.cta-stat-value {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
}

.cta-stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
}

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

/* Button */
.cta-action {
  margin-bottom: var(--spacing-8);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-5) var(--spacing-10);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background: var(--gradient-secondary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
  color: var(--color-primary);
}

.cta-btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.cta-btn:hover .cta-btn-glow {
  transform: translate(-50%, -50%) scale(2);
}

.cta-btn-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
}

.cta-btn:hover .cta-btn-particles span {
  animation: btnParticle 0.6s ease-out forwards;
}

.cta-btn-particles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.cta-btn-particles span:nth-child(2) { top: 30%; right: 25%; animation-delay: 0.1s; }
.cta-btn-particles span:nth-child(3) { bottom: 25%; left: 30%; animation-delay: 0.2s; }

@keyframes btnParticle {
  0% { opacity: 1; transform: scale(0); }
  100% { opacity: 0; transform: scale(1.5) translate(20px, -20px); }
}

/* Trust Badges */
.cta-trust {
  display: flex;
  justify-content: center;
  gap: var(--spacing-8);
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
}

.cta-trust-item i {
  color: var(--color-secondary);
}

/* Bottom Wave */
.cta-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
}

.cta-wave svg {
  width: 100%;
  height: 100%;
}

.cta-wave path {
  fill: var(--color-background);
}

/* ============================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ============================================ */
@media (max-width: 991px) {
  /* Eco Message */
  .eco-card {
    flex-direction: column;
    text-align: center;
  }

  .eco-icon-wrapper {
    margin: 0 auto;
  }

  .eco-trees-saved {
    flex-direction: column;
    gap: var(--spacing-4);
  }

  .eco-saved-bar {
    width: 100%;
  }

  /* Stats */
  .stats-section {
    padding: var(--spacing-16) 0;
  }

  /* Steps */
  .steps-line {
    display: none;
  }

  .step-card {
    flex-direction: column !important;
    text-align: center;
  }

  .step-connector {
    margin-bottom: var(--spacing-4);
  }

  .step-content {
    max-width: 100%;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-featured {
    order: -1;
  }

  /* CTA */
  .cta-stats {
    flex-direction: column;
    gap: var(--spacing-6);
  }

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

  .cta-floats {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Eco Message */
  .eco-card {
    padding: var(--spacing-6);
  }

  .eco-text {
    font-size: var(--font-size-base);
  }

  /* Stats */
  .stat-card-inner {
    padding: var(--spacing-6);
  }

  .stat-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .stat-icon-wrapper i {
    font-size: 24px;
  }

  .stat-value {
    font-size: var(--font-size-3xl);
  }

  /* Steps */
  .step-card-inner {
    padding: var(--spacing-6);
  }

  .step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-4);
  }

  /* Pricing */
  .pricing-header-section {
    padding: var(--spacing-6);
  }

  .pricing-amount {
    font-size: var(--font-size-4xl);
  }

  /* CTA */
  .cta-title-line {
    font-size: var(--font-size-2xl);
  }

  .cta-title-highlight {
    font-size: var(--font-size-3xl);
  }

  .cta-btn {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-base);
  }

  .cta-trust {
    flex-direction: column;
    gap: var(--spacing-4);
  }
}

/* ============================================
   FOOTER PARTICLES ANIMATION
   ============================================ */
.lux-footer {
  position: relative;
  overflow: hidden;
}

.lux-footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.footer-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0;
  animation: footerParticleFloat 8s ease-in-out infinite;
}

.footer-particle:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
}

.footer-particle:nth-child(2) {
  left: 15%;
  animation-delay: 0.7s;
}

.footer-particle:nth-child(3) {
  left: 25%;
  animation-delay: 1.4s;
}

.footer-particle:nth-child(4) {
  left: 35%;
  animation-delay: 2.1s;
}

.footer-particle:nth-child(5) {
  left: 45%;
  animation-delay: 2.8s;
}

.footer-particle:nth-child(6) {
  left: 55%;
  animation-delay: 3.5s;
}

.footer-particle:nth-child(7) {
  left: 65%;
  animation-delay: 4.2s;
}

.footer-particle:nth-child(8) {
  left: 75%;
  animation-delay: 4.9s;
}

.footer-particle:nth-child(9) {
  left: 85%;
  animation-delay: 5.6s;
}

.footer-particle:nth-child(10) {
  left: 92%;
  animation-delay: 6.3s;
}

.footer-particle:nth-child(11) {
  left: 10%;
  animation-delay: 1s;
  width: 3px;
  height: 3px;
}

.footer-particle:nth-child(12) {
  left: 50%;
  animation-delay: 3s;
  width: 3px;
  height: 3px;
}

@keyframes footerParticleFloat {
  0% {
    bottom: -10px;
    opacity: 0;
    transform: translateX(0) scale(0.5);
  }
  10% {
    opacity: 0.6;
    transform: translateX(10px) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translateX(-10px) scale(0.8);
  }
  90% {
    opacity: 0.2;
    transform: translateX(5px) scale(0.6);
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: translateX(-5px) scale(0.3);
  }
}

/* ============================================
   MOBILE FOOTER STYLES (ONLY)
   ============================================ */
@media (max-width: 991px) {
  /* Mobile Header Section */
  .lux-footer-mobile-header {
    text-align: center;
    padding-bottom: var(--spacing-8);
    margin-bottom: var(--spacing-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lux-footer-logo-mobile {
    height: 45px;
    margin-bottom: var(--spacing-5);
  }

  /* Mobile Social Links */
  .lux-social-links-mobile {
    justify-content: center;
    margin: 0 auto var(--spacing-5);
  }

  .lux-social-links-mobile .lux-social-link {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  /* Mobile Telegram CTA */
  .lux-telegram-cta-mobile {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin: 0 auto;
    padding: var(--spacing-3) var(--spacing-5);
    font-size: var(--font-size-sm);
  }

  /* Mobile Footer Titles */
  .lux-footer-title-mobile {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-4);
    padding-bottom: var(--spacing-2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    display: inline-block;
  }

  /* Mobile Footer Links */
  .lux-footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1);
  }

  .lux-footer-link {
    padding: var(--spacing-2) 0;
    font-size: var(--font-size-sm);
  }

  /* Ensure content is above particles */
  .lux-footer-main .container-lux {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 576px) {
  /* Extra small mobile adjustments */
  .lux-footer-mobile-header {
    padding-bottom: var(--spacing-6);
    margin-bottom: var(--spacing-5);
  }

  .lux-footer-logo-mobile {
    height: 40px;
  }

  .lux-social-links-mobile .lux-social-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .lux-telegram-cta-mobile {
    max-width: 100%;
  }

  .lux-footer-title-mobile {
    font-size: var(--font-size-sm);
  }

  .lux-footer-link {
    font-size: 13px;
  }

  /* Reduce particle count on very small screens */
  .footer-particle:nth-child(n+9) {
    display: none;
  }
}

/* ============================================
   SECTION 8: TESTIMONIALS (Redesigned)
   ============================================ */
.testimonials-section {
  position: relative;
  padding: var(--spacing-24) 0;
  background: var(--color-background);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.testimonials-gradient {
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 60px 60px;
  opacity: 0.5;
}

.testimonials-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.testimonials-orb-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(80px);
  opacity: 0.3;
}

.testimonials-orb-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  filter: blur(80px);
  opacity: 0.3;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--spacing-12);
}

.testimonials-carousel {
  overflow: hidden;
  margin-bottom: var(--spacing-12);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-6);
}

.testimonial-card-new {
  position: relative;
  background: var(--color-background);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-8);
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonial-card-new:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-secondary);
}

.testimonial-accent:hover {
  border-color: var(--color-accent);
}

.testimonial-quote-icon {
  position: absolute;
  top: var(--spacing-4);
  left: var(--spacing-4);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-icon i {
  font-size: 24px;
  color: var(--color-secondary);
  transform: scaleX(-1);
}

.testimonial-accent .testimonial-quote-icon {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.15) 0%, rgba(46, 139, 87, 0.05) 100%);
}

.testimonial-accent .testimonial-quote-icon i {
  color: var(--color-accent);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: var(--spacing-4);
  padding-top: var(--spacing-8);
}

.testimonial-rating i {
  font-size: 14px;
  color: var(--color-secondary);
}

.testimonial-text-new {
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-6);
}

.testimonial-author-new {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
}

.testimonial-avatar-new {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar-new span {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.testimonial-avatar-accent {
  background: var(--gradient-accent);
}

.testimonial-avatar-accent span {
  color: #FFFFFF;
}

.avatar-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.testimonial-card-new:hover .avatar-ring {
  opacity: 0.5;
  transform: scale(1.2);
}

.testimonial-avatar-accent .avatar-ring {
  border-color: var(--color-accent);
}

.testimonial-info-new {
  flex: 1;
}

.testimonial-info-new h5 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin: 0 0 2px 0;
}

.testimonial-info-new span {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.testimonial-verified {
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-verified i {
  font-size: 14px;
  color: var(--color-success);
}

.testimonial-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 50px;
  background: radial-gradient(ellipse, var(--color-secondary) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-accent .testimonial-glow {
  background: radial-gradient(ellipse, var(--color-accent) 0%, transparent 70%);
}

.testimonial-card-new:hover .testimonial-glow {
  opacity: 0.3;
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-10);
  flex-wrap: wrap;
}

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

.tstat-value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.tstat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tstat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

.testimonials-floats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.tfloat {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBounce 5s ease-in-out infinite;
}

.tfloat i {
  font-size: 20px;
  color: var(--color-secondary);
  opacity: 0.5;
}

.tfloat-1 { top: 15%; left: 5%; }
.tfloat-2 { top: 50%; right: 3%; animation-delay: -2s; }
.tfloat-3 { bottom: 20%; left: 8%; animation-delay: -4s; }

/* ============================================
   SECTION 9: SERVICE & SUPPORT
   ============================================ */
.service-section {
  position: relative;
  padding: var(--spacing-24) 0;
  background: var(--color-surface);
  overflow: hidden;
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.service-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(46, 139, 87, 0.08) 0%, transparent 50%);
}

.service-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.service-card { height: 100%; }

.service-card-inner {
  position: relative;
  background: var(--color-background);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-10);
  border: 1px solid var(--color-border);
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card:hover .service-card-inner {
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-secondary);
}

.service-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-6);
}

.service-icon-rings span {
  position: absolute;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0.2;
  animation: serviceRing 3s ease-in-out infinite;
}

.service-icon-rings span:first-child { width: 100%; height: 100%; }
.service-icon-rings span:last-child { width: 130%; height: 130%; top: -15%; left: -15%; animation-delay: 1s; }

@keyframes serviceRing {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

.service-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.service-icon i { font-size: 28px; color: var(--color-secondary); }

.service-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--color-secondary);
  filter: blur(20px);
  opacity: 0.2;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-4);
}

.service-badge i { font-size: 12px; }

.service-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-3);
}

.service-text {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-6);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  margin-bottom: var(--spacing-8);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-3);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.service-feature:hover {
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(-5px);
}

.sf-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.2) 0%, rgba(46, 139, 87, 0.05) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sf-icon i { font-size: 18px; color: var(--color-accent); }

.sf-content strong { display: block; font-size: var(--font-size-sm); color: var(--color-primary); }
.sf-content span { font-size: var(--font-size-xs); color: var(--color-text-muted); }

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-4) var(--spacing-8);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background: var(--gradient-secondary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--color-primary);
}

.service-btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.service-btn:hover .service-btn-glow {
  transform: translate(-50%, -50%) scale(2);
}

.service-card-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, var(--color-secondary) 0%, transparent 70%);
  filter: blur(30px);
  opacity: 0.2;
}

/* Support Card */
.support-card { height: 100%; }

.support-card-inner {
  position: relative;
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-10);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-bg-elements {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.support-ring {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.support-ring:nth-child(1) { width: 150px; height: 150px; animation: ringRotate 20s linear infinite; }
.support-ring:nth-child(2) { width: 200px; height: 200px; animation: ringRotate 30s linear infinite reverse; }
.support-ring:nth-child(3) { width: 250px; height: 250px; animation: ringRotate 40s linear infinite; }

.support-icon-wrapper {
  position: relative;
  margin-bottom: var(--spacing-6);
}

.support-icon-animated {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: supportPulse 2s ease-in-out infinite;
}

.support-icon-animated i { font-size: 36px; color: var(--color-secondary); }

@keyframes supportPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.support-pulse {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  animation: supportPulseRing 2s ease-out infinite;
}

@keyframes supportPulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

.support-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
  margin-bottom: var(--spacing-3);
}

.support-text {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-4);
}

.support-availability {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  background: rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-6);
}

.availability-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.support-availability span { font-size: var(--font-size-xs); color: var(--color-success); }

.support-contacts {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
  width: 100%;
  margin-bottom: var(--spacing-6);
}

.support-contact-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-contact-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-secondary);
  transform: translateX(-5px);
}

.sc-icon {
  width: 45px;
  height: 45px;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-icon i { font-size: 20px; color: var(--color-primary); }

.support-telegram .sc-icon { background: #3B82F6; }
.support-telegram .sc-icon i { color: #FFFFFF; }

.sc-content { flex: 1; text-align: right; }
.sc-label { display: block; font-size: var(--font-size-xs); color: rgba(255, 255, 255, 0.6); }
.sc-value { display: block; font-size: var(--font-size-base); font-weight: var(--font-weight-semibold); color: #FFFFFF; }

.sc-arrow {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.support-contact-btn:hover .sc-arrow { opacity: 1; transform: translateX(0); }
.sc-arrow i { font-size: 12px; color: #FFFFFF; }

.support-hours {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
}

.support-hours i { font-size: 14px; }

.support-card-glow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  background: radial-gradient(ellipse, var(--color-secondary) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.2;
}

.service-decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.sdecor-line {
  position: absolute;
  width: 1px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.sdecor-line:first-child { left: 20%; top: 10%; }
.sdecor-line:last-child { right: 20%; bottom: 10%; }

.sdecor-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.3;
}

.sdecor-dot:first-child { top: 20%; left: 10%; }
.sdecor-dot:last-child { bottom: 30%; right: 10%; }

/* ============================================
   ENHANCED CTA BUTTON (3D Showcase)
   ============================================ */
.af-cta-btn-enhanced {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-4);
  padding: var(--spacing-4) var(--spacing-6);
  background: var(--gradient-secondary);
  border-radius: var(--radius-xl);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.af-cta-btn-enhanced:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.af-cta-icon {
  width: 45px;
  height: 45px;
  background: rgba(10, 22, 40, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.af-cta-icon i { font-size: 20px; color: var(--color-primary); }

.af-cta-text { display: flex; flex-direction: column; align-items: flex-start; }
.af-cta-main { font-size: var(--font-size-base); font-weight: var(--font-weight-bold); color: var(--color-primary); }
.af-cta-sub { font-size: 10px; color: rgba(10, 22, 40, 0.6); }

.af-cta-arrow {
  width: 35px;
  height: 35px;
  background: rgba(10, 22, 40, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.af-cta-arrow i { font-size: 14px; color: var(--color-primary); }
.af-cta-btn-enhanced:hover .af-cta-arrow { transform: translateX(-5px); }

.af-cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

.af-cta-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
}

.af-cta-btn-enhanced:hover .af-cta-particles span {
  animation: ctaParticle 0.6s ease-out forwards;
}

.af-cta-particles span:nth-child(1) { top: 10%; right: 20%; }
.af-cta-particles span:nth-child(2) { top: 50%; right: 10%; animation-delay: 0.1s; }
.af-cta-particles span:nth-child(3) { bottom: 20%; right: 25%; animation-delay: 0.2s; }

@keyframes ctaParticle {
  0% { opacity: 1; transform: scale(0); }
  100% { opacity: 0; transform: scale(1.5) translate(-20px, -10px); }
}

/* ============================================
   FLOATING ACTION BUTTON
   ============================================ */
.floating-action-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.fab-main {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-4) var(--spacing-6);
  background: var(--gradient-secondary);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-gold-lg);
  transition: all 0.3s ease;
  position: relative;
}

.fab-main i { font-size: 20px; color: var(--color-primary); }

.fab-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
}

.fab-main:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.fab-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-full);
  animation: fabPulse 2s ease-out infinite;
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.fab-menu {
  position: absolute;
  bottom: 70px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-action-btn:hover .fab-menu,
.floating-action-btn.active .fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.fab-item i { font-size: 20px; color: #FFFFFF; }
.fab-telegram { background: #3B82F6; }
.fab-phone { background: var(--color-accent); }
.fab-email { background: var(--color-primary); }
.fab-item:hover { transform: scale(1.1); }

/* ============================================
   MOBILE RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 991px) {
  .testimonials-track {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-card-inner,
  .support-card-inner { padding: var(--spacing-6); }
  .support-contacts { gap: var(--spacing-2); }
  .fab-text { display: none; }
  .fab-main { padding: var(--spacing-4); border-radius: 50%; }
}

@media (max-width: 768px) {
  .eco-message-section,
  .testimonials-section .testimonials-stats,
  .service-section .service-decor { display: none !important; }

  .testimonial-card-new { padding: var(--spacing-6); }
  .service-icon-wrapper { width: 60px; height: 60px; }
  .service-icon { width: 50px; height: 50px; }
  .service-icon i { font-size: 22px; }
  .support-icon-animated { width: 60px; height: 60px; }
  .support-icon-animated i { font-size: 28px; }
  .support-pulse { width: 60px; height: 60px; }

  .floating-action-btn { bottom: 20px; left: 20px; }
  .fab-main { width: 56px; height: 56px; padding: 0; justify-content: center; }
  .fab-text { display: none; }

  .af-cta-btn-enhanced { flex-direction: column; padding: var(--spacing-4); text-align: center; }
  .af-cta-text { align-items: center; }
  .af-cta-arrow { display: none; }
}
