/* Growself Design System */

/* CSS Variables - Growself Burgundy & Dark Yellow Palette */
:root {
  /* Primary - Burgundy */
  --primary: #8B0000;      /* dark red / burgundy */
  --primary-dark: #6B0000;  /* darker burgundy */
  --primary-light: #A52A2A; /* lighter burgundy */
  --secondary: #B8860B;     /* dark goldenrod */
  --secondary-dark: #9B870C;/* darker goldenrod */
  --secondary-light: #DAA520; /* goldenrod */
  
  /* Accent - Burgundy & Gold Mix */
  --accent: #CD853F;        /* peru - mix of burgundy and gold */
  --accent-dark: #A0522D;   /* sienna */
  --accent-light: #DEB887;  /* burlywood */
  --success: #8B7355;       /* dark khaki */
  --success-dark: #6B5B47;  /* darker khaki */
  --success-light: #A0826D; /* lighter khaki */
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #faf8f5;
  --bg-dark: #2a1f1f;
  --bg-gradient: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
  --bg-gradient-alt: linear-gradient(135deg, #A52A2A 0%, #DAA520 100%);
  
  /* Text Colors */
  --text-primary: #2a1f1f;
  --text-secondary: #6b5b47;
  --text-light: #8B7355;
  --text-white: #ffffff;
  
  /* Shadows & Effects */
  --shadow-sm: 0 1px 2px 0 rgba(139, 0, 0, 0.1);
  --shadow: 0 4px 6px -1px rgba(139, 0, 0, 0.15), 0 2px 4px -1px rgba(184, 134, 11, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(139, 0, 0, 0.2), 0 4px 6px -2px rgba(184, 134, 11, 0.15);
  --shadow-lg: 0 20px 25px -5px rgba(139, 0, 0, 0.25), 0 10px 10px -5px rgba(184, 134, 11, 0.2);
  --shadow-xl: 0 25px 50px -12px rgba(139, 0, 0, 0.3);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

/* Font: Plus Jakarta Sans */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a1f1f 0%, #3d2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

.preloader.show {
  opacity: 1;
  visibility: visible;
}

.preloader:not(.show) {
  opacity: 0;
  visibility: hidden;
}

.preloader-container {
  text-align: center;
  color: white;
}

.logo-circle {
  width: 80px;
  height: 80px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.25rem;
}

.logo-sub {
  font-size: 0.9rem;
  opacity: 0.8;
  display: block;
}

.loading-animation {
  margin: 2rem 0;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.loading-dots .dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite;
}

.loading-dots .dot:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.loading-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.progress-container {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 2rem auto 0;
  overflow: hidden;
}

.progress-bar {
  width: 100%;
  height: 100%;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--bg-gradient);
  width: 0%;
  animation: progress 2s ease-in-out forwards;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* Site Header */
.site-header {
  background: rgba(42, 31, 31, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
  background: rgba(42, 31, 31, 0.98);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  padding: 0.5rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 2.5rem;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: #DAA520;
  background: rgba(218, 165, 32, 0.1);
  transform: translateY(-1px);
}

.navbar-nav .nav-link.cta-button {
  background: var(--bg-gradient);
  color: white;
  margin-left: 1rem;
  box-shadow: var(--shadow);
}

.navbar-nav .nav-link.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-gradient-alt);
}

/* Navbar Toggler Styles */
.navbar-toggler {
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  background: transparent;
  transition: var(--transition);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  border-color: var(--secondary-light);
  background: rgba(218, 165, 32, 0.1);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(218, 165, 32, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
  transition: var(--transition);
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:focus .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler[aria-expanded="true"] {
  border-color: var(--secondary-light);
  background: rgba(218, 165, 32, 0.15);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section - Completely Redesigned */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #2a1f1f 0%, #3d2a2a 50%, #2a1f1f 100%);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 4rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.05) 0%, transparent 70%);
  animation: heroBackgroundPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(139, 0, 0, 0.03) 50px,
      rgba(139, 0, 0, 0.03) 100px
    );
  animation: heroPatternMove 20s linear infinite;
  pointer-events: none;
}

@keyframes heroBackgroundPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes heroPatternMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-text {
  color: white;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(184, 134, 11, 0.3) 100%);
  backdrop-filter: blur(20px);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  border: 2px solid rgba(218, 165, 32, 0.4);
  box-shadow: 
    0 8px 32px rgba(139, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-badge:hover::before {
  left: 100%;
}

.hero-badge:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(218, 165, 32, 0.7);
  box-shadow: 
    0 12px 40px rgba(139, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.badge-text {
  position: relative;
  z-index: 1;
  color: #DAA520;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-pulse {
  width: 10px;
  height: 10px;
  background: #DAA520;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.6);
}

@keyframes badgePulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.6);
  }
  50% { 
    opacity: 0.7; 
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.9);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
}

.title-word {
  display: block;
  opacity: 0;
  animation: titleWordFadeIn 0.8s ease-out forwards;
  transform: translateY(30px);
}

.title-word:nth-child(1) {
  animation-delay: 0.2s;
}

.title-word:nth-child(2) {
  animation-delay: 0.4s;
}

.title-word:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes titleWordFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-word.highlight {
  background: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #DAA520 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleWordFadeIn 0.8s ease-out forwards, highlightShimmer 3s ease-in-out infinite;
  position: relative;
}

.title-word.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #DAA520, #B8860B);
  border-radius: 2px;
  animation: underlineExpand 1s ease-out 0.8s forwards;
}

@keyframes highlightShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes underlineExpand {
  to { width: 100%; }
}

.hero-description {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  margin-bottom: 3rem;
  opacity: 0;
  max-width: 650px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  animation: descriptionFadeIn 1s ease-out 0.8s forwards;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid rgba(218, 165, 32, 0.5);
}

@keyframes descriptionFadeIn {
  to {
    opacity: 1;
  }
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.action-btn {
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.action-btn.primary {
  background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
  color: white;
  box-shadow: 
    0 10px 30px rgba(139, 0, 0, 0.4),
    0 0 0 0 rgba(218, 165, 32, 0.4);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.action-btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.action-btn.primary:hover::before {
  left: 100%;
}

.action-btn.primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(139, 0, 0, 0.5),
    0 0 0 8px rgba(218, 165, 32, 0.2);
  background: linear-gradient(135deg, #A52A2A 0%, #DAA520 100%);
}

.action-btn.primary:active {
  transform: translateY(-2px) scale(1.02);
}

.action-btn.secondary {
  background: rgba(42, 31, 31, 0.4);
  color: white;
  border: 2px solid rgba(218, 165, 32, 0.5);
  backdrop-filter: blur(10px);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn.secondary:hover {
  background: rgba(218, 165, 32, 0.2);
  border-color: rgba(218, 165, 32, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(218, 165, 32, 0.3);
}

.action-btn.secondary i {
  transition: transform 0.3s ease;
}

.action-btn.secondary:hover i {
  transform: scale(1.2) rotate(5deg);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.action-btn.primary:active .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Hero Visual - Completely Redesigned */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 600px;
  z-index: 2;
}

.tech-showcase {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

.tech-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.95) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 
    0 15px 35px rgba(139, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(218, 165, 32, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B0000, #B8860B, #8B0000);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  animation: gradientMove 3s ease infinite;
}

.tech-card:hover::before {
  transform: scaleX(1);
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.tech-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.tech-card:hover::after {
  opacity: 1;
}

.tech-card:hover {
  transform: translateY(-12px) scale(1.05) rotate(2deg);
  box-shadow: 
    0 25px 50px rgba(139, 0, 0, 0.3),
    0 10px 20px rgba(184, 134, 11, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(218, 165, 32, 0.6);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 
    0 8px 20px rgba(139, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover .card-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 
    0 12px 30px rgba(139, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #A52A2A 0%, #DAA520 100%);
}

.card-icon i {
  font-size: 2rem;
  color: white;
  transition: transform 0.4s ease;
}

.tech-card:hover .card-icon i {
  transform: scale(1.2) rotate(-10deg);
}

.card-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #2a1f1f;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.tech-card:hover .card-content h4 {
  color: #8B0000;
}

.card-content p {
  font-size: 0.95rem;
  color: #6b5b47;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.tech-card:hover .card-content p {
  color: #8B7355;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.tech-card:hover .card-glow {
  opacity: 1;
}

.central-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hub-core {
  width: 120px;
  height: 120px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 30px rgba(139, 0, 0, 0.4),
    0 0 60px rgba(184, 134, 11, 0.2);
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}

.core-icon {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.core-text {
  text-align: center;
  color: white;
}

.core-text span {
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.core-text small {
  font-size: 0.6rem;
  opacity: 0.9;
  display: block;
  line-height: 1;
}

.connection-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, var(--primary), transparent);
  height: 2px;
  border-radius: 1px;
  opacity: 0.3;
  animation: linePulse 2s ease-in-out infinite;
}

.line-1 {
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%) rotate(45deg);
  animation-delay: 0s;
}

.line-2 {
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%) rotate(135deg);
  animation-delay: 0.5s;
}

.line-3 {
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%) rotate(225deg);
  animation-delay: 1s;
}

.line-4 {
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%) rotate(315deg);
  animation-delay: 1.5s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 30px rgba(139, 0, 0, 0.4),
      0 0 60px rgba(184, 134, 11, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 0 40px rgba(139, 0, 0, 0.6),
      0 0 80px rgba(184, 134, 11, 0.3);
  }
}

@keyframes linePulse {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scaleX(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scaleX(1.2);
  }
}

/* Section Headers */
.section-header, .features-header, .solutions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--bg-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: var(--bg-gradient);
  border-radius: 2px;
  transform: translateX(-50%);
}

.section-description, .section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(139, 0, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.95) 100%);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: 
    0 10px 30px rgba(139, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  border: 2px solid rgba(218, 165, 32, 0.2);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #8B0000, #B8860B, #8B0000);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: gradientMove 3s ease infinite;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(139, 0, 0, 0.15),
    0 10px 25px rgba(184, 134, 11, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(218, 165, 32, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 248, 245, 1) 100%);
}

.feature-visual {
  position: relative;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 25px rgba(139, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1.5rem;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(10deg) translateY(-5px);
  box-shadow: 
    0 15px 35px rgba(139, 0, 0, 0.4),
    0 5px 15px rgba(184, 134, 11, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #A52A2A 0%, #DAA520 100%);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.2) rotate(-10deg);
}

.feature-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.4) 0%, rgba(184, 134, 11, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
  filter: blur(15px);
}

.feature-card:hover .feature-glow {
  opacity: 1;
  width: 150px;
  height: 150px;
}



.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2a1f1f;
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.feature-card:hover .feature-content h3 {
  color: #8B0000;
  transform: translateX(5px);
}

.feature-content p {
  color: #6b5b47;
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-content p {
  color: #8B7355;
}

/* Solutions Section */
.solutions-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(42, 31, 31, 0.7) 0%, rgba(54, 40, 40, 0.8) 100%), url('../img/ph-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.solutions-section .section-title {
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.solutions-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 3rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(96, 165, 250, 0.3);
}

.solution-card.premium {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 2px solid #DAA520;
  position: relative;
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #DAA520, #A52A2A, #DAA520);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card.premium:hover .card-glow {
  opacity: 0.3;
}

.solution-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon i {
  font-size: 1.5rem;
  color: white;
}

.solution-badge {
  padding: 0.5rem 1rem;
  background: var(--bg-gradient);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.solution-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.solution-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #DAA520, #A52A2A);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1rem;
  color: white;
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

.solution-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
}

.solution-btn.primary {
  background: linear-gradient(135deg, #8B0000, #B8860B);
  color: white;
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.solution-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(139, 0, 0, 0.4);
  background: linear-gradient(135deg, #6B0000, #9B870C);
}

.solution-btn:not(.primary) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-btn:not(.primary):hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-2px);
}


/* Reviews Section */
.reviews-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.reviews-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.review-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.review-card.main-review {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.02) 0%, rgba(184, 134, 11, 0.02) 100%);
  border: 2px solid var(--primary);
}

.review-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-quote {
  margin-bottom: 2rem;
}

.review-quote i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  opacity: 0.3;
}

.review-quote p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0;
  font-style: italic;
  position: relative;
}

.review-quote p::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.avatar-placeholder i {
  font-size: 1.5rem;
  color: white;
}

.author-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.method-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.method-card:hover::before {
  transform: scaleX(1);
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.method-card.primary {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.02) 0%, rgba(184, 134, 11, 0.02) 100%);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.method-icon i {
  font-size: 2rem;
  color: white;
}

.method-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.method-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.method-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature i {
  color: var(--success);
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.method-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
}

.method-btn.primary {
  background: var(--bg-gradient);
  color: white;
  box-shadow: var(--shadow);
}

.method-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-gradient-alt);
}

.method-btn:not(.primary) {
  background: var(--gray-100);
  color: var(--text-primary);
  border: 1px solid var(--gray-300);
}

.method-btn:not(.primary):hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
  outline: none;
}

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
  border-color: #8B0000;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-error {
  color: #8B0000;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #8B0000;
}

/* Checkbox Styles */
.checkbox-group {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-button {
  background: var(--bg-gradient);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-gradient-alt);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.button-loading {
  display: none;
}

.submit-button.loading .button-text {
  display: none;
}

.submit-button.loading .button-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.button-icon {
  font-size: 1.1rem;
}

/* Contact Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.info-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-content span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Social Proof */
.contact-social-proof {
  background: var(--bg-gradient);
  color: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.proof-content {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.proof-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.proof-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.proof-stat {
  text-align: center;
}

.proof-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}

.proof-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* CTA Section */
/* CTA Section - Completely Redesigned */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #2a1f1f 0%, #3d2a2a 50%, #2a1f1f 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(184, 134, 11, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 60%);
  animation: ctaBackgroundPulse 10s ease-in-out infinite;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: ctaOrbFloat 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaBackgroundPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes ctaOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 50px) scale(1.1); }
  66% { transform: translate(50px, -50px) scale(0.9); }
}

.cta-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.cta-content {
  color: white;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(184, 134, 11, 0.4) 100%);
  color: #DAA520;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  border: 2px solid rgba(218, 165, 32, 0.5);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(139, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-badge:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(218, 165, 32, 0.8);
  box-shadow: 
    0 12px 40px rgba(139, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: white;
}

.cta-title .highlight {
  background: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #DAA520 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: highlightShimmer 3s ease-in-out infinite;
  position: relative;
}

.cta-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #DAA520, #B8860B);
  border-radius: 2px;
}

.cta-description {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 600px;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn {
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
  color: white;
  box-shadow: 
    0 10px 30px rgba(139, 0, 0, 0.4),
    0 0 0 0 rgba(218, 165, 32, 0.4);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.cta-btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-btn.primary:hover::before {
  left: 100%;
}

.cta-btn.primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(139, 0, 0, 0.5),
    0 0 0 8px rgba(218, 165, 32, 0.2);
  background: linear-gradient(135deg, #A52A2A 0%, #DAA520 100%);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(218, 165, 32, 0.6);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
  backdrop-filter: blur(10px);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn.secondary:hover {
  background: rgba(218, 165, 32, 0.2);
  border-color: rgba(218, 165, 32, 0.9);
  color: #DAA520;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(218, 165, 32, 0.3);
}

.cta-btn.secondary i {
  transition: transform 0.3s ease;
}

.cta-btn.secondary:hover i {
  transform: scale(1.2) rotate(5deg);
}

.cta-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-elements {
  position: relative;
  width: 300px;
  height: 300px;
}

.floating-item {
  position: absolute;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.95) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 15px 35px rgba(139, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(218, 165, 32, 0.4);
  animation: float-cta 6s ease-in-out infinite;
  color: #2a1f1f;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.floating-item:hover {
  transform: scale(1.15) rotate(5deg) !important;
  box-shadow: 
    0 20px 45px rgba(139, 0, 0, 0.3),
    0 8px 20px rgba(184, 134, 11, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(218, 165, 32, 0.7);
  z-index: 10;
}

.floating-item i {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.floating-item:hover i {
  transform: scale(1.2) rotate(-10deg);
}

.item-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.item-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

.item-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 3s;
}

.item-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: 4.5s;
}

@keyframes float-cta {
  0%, 100% { 
    transform: translateX(-50%) translateY(0px) rotate(0deg); 
  }
  25% { 
    transform: translateX(-50%) translateY(-10px) rotate(2deg); 
  }
  50% { 
    transform: translateX(-50%) translateY(-5px) rotate(-1deg); 
  }
  75% { 
    transform: translateX(-50%) translateY(-15px) rotate(1deg); 
  }
}

.item-2, .item-4 {
  animation-name: float-cta-side;
}

@keyframes float-cta-side {
  0%, 100% { 
    transform: translateY(-50%) translateX(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-50%) translateX(-10px) rotate(2deg); 
  }
  50% { 
    transform: translateY(-50%) translateX(-5px) rotate(-1deg); 
  }
  75% { 
    transform: translateY(-50%) translateX(-15px) rotate(1deg); 
  }
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-features .feature-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(250, 248, 245, 0.15) 100%);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 
    0 10px 30px rgba(139, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(218, 165, 32, 0.3);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
}

.cta-features .feature-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(139, 0, 0, 0.25),
    0 8px 20px rgba(184, 134, 11, 0.15);
  border-color: rgba(218, 165, 32, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(250, 248, 245, 0.25) 100%);
}

.cta-features .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(139, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-features .feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 
    0 12px 30px rgba(139, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #A52A2A 0%, #DAA520 100%);
}

.cta-features .feature-icon i {
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.cta-features .feature-item:hover .feature-icon i {
  transform: scale(1.2) rotate(-10deg);
}

.cta-features .feature-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.cta-features .feature-item:hover .feature-content h4 {
  color: #DAA520;
}

.cta-features .feature-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.cta-features .feature-item:hover .feature-content p {
  color: rgba(255, 255, 255, 0.95);
}

/* Testimonials Section - Completely Redesigned */
.testimonials-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(139, 0, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.03) 0%, transparent 60%);
  animation: testimonialsBackgroundMove 12s ease-in-out infinite;
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: testimonialsOrbFloat 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes testimonialsBackgroundMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, 15px) scale(1.05); }
}

@keyframes testimonialsOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -50px) scale(1.1); }
  66% { transform: translate(-50px, 100px) scale(0.9); }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  margin-bottom: 4rem;
  z-index: 1;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.testimonial-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.02) 0%, rgba(184, 134, 11, 0.02) 100%);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.author-avatar {
  position: relative;
  flex-shrink: 0;
}

.avatar-image {
  width: 70px;
  height: 70px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.avatar-image i {
  font-size: 2rem;
  color: white;
}

.verified-badge {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #8B7355 0%, #A0826D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 
    0 4px 12px rgba(139, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .verified-badge {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 
    0 6px 18px rgba(139, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.verified-badge i {
  font-size: 0.9rem;
  color: white;
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.company-info i {
  color: var(--primary);
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars i {
  color: #DAA520;
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.1;
  z-index: 0;
}

.testimonial-content blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.results {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid var(--gray-200);
}

.result-item i {
  color: var(--success);
  font-size: 1rem;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--primary);
}

/* Video Testimonials */
.video-testimonials {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.video-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-item {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.play-button {
  font-size: 4rem;
  color: white;
  opacity: 0.9;
  transition: var(--transition);
}

.video-item:hover .play-button {
  opacity: 1;
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.video-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Testimonials CTA */
.testimonials-cta {
  background: white;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content {
  text-align: left;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.cta-btn.primary {
  background: var(--bg-gradient);
  color: white;
  box-shadow: var(--shadow);
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-gradient-alt);
}

.cta-btn.secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-btn.secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.cta-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-testimonials {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-quote {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  animation: float 6s ease-in-out infinite;
}

.floating-quote i {
  color: var(--primary);
  font-size: 1.2rem;
}

.floating-quote:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-quote:nth-child(2) {
  top: 35%;
  right: 10%;
  animation-delay: 2s;
}

.floating-quote:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
  75% { transform: translateY(-15px) rotate(0.5deg); }
}

/* ============================================
   SCROLL ANIMATIONS & ENHANCED EFFECTS
   ============================================ */

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-animate.fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.slide-up {
  opacity: 0;
  transform: translateY(50px);
}

.scroll-animate.slide-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.scroll-animate.slide-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.scroll-animate.slide-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate.scale-in {
  opacity: 0;
  transform: scale(0.8);
}

.scroll-animate.scale-in.animated {
  opacity: 1;
  transform: scale(1);
}

.scroll-animate.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
}

.scroll-animate.rotate-in.animated {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Stagger Animation Delays */
.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }
.scroll-animate.delay-5 { transition-delay: 0.5s; }
.scroll-animate.delay-6 { transition-delay: 0.6s; }

/* Enhanced Hover Effects */
.feature-card,
.solution-card,
.testimonial-card,
.method-card,
.info-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before,
.solution-card::before,
.testimonial-card::before,
.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.feature-card:hover::before,
.solution-card:hover::before,
.testimonial-card:hover::before,
.method-card:hover::before {
  left: 100%;
}

.feature-card:hover,
.solution-card:hover,
.testimonial-card:hover,
.method-card:hover,
.info-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(139, 0, 0, 0.4), 0 0 0 1px rgba(184, 134, 11, 0.2);
}

.feature-card:hover .feature-icon,
.solution-card:hover .solution-icon,
.method-card:hover .method-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 30px rgba(139, 0, 0, 0.3);
}

/* Enhanced Button Hovers */
.action-btn,
.cta-btn,
.solution-btn,
.method-btn,
.submit-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn::after,
.cta-btn::after,
.solution-btn::after,
.method-btn::after,
.submit-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.action-btn:hover::after,
.cta-btn:hover::after,
.solution-btn:hover::after,
.method-btn:hover::after,
.submit-button:hover::after {
  width: 300px;
  height: 300px;
}

.action-btn:hover,
.cta-btn:hover,
.solution-btn:hover,
.method-btn:hover,
.submit-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(139, 0, 0, 0.4);
}

.action-btn:active,
.cta-btn:active,
.solution-btn:active,
.method-btn:active,
.submit-button:active {
  transform: translateY(-1px) scale(1.02);
}

/* Enhanced Icon Animations */
.feature-icon,
.solution-icon,
.method-icon,
.card-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon i,
.solution-icon i,
.method-icon i,
.card-icon i {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i,
.solution-card:hover .solution-icon i,
.method-card:hover .method-icon i {
  transform: rotate(360deg) scale(1.1);
  color: var(--secondary-light);
}

/* Glow Effects */
.feature-glow,
.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
  filter: blur(20px);
}

.feature-card:hover .feature-glow,
.solution-card:hover .card-glow {
  opacity: 1;
  width: 300px;
  height: 300px;
}

/* Parallax Effects */
.parallax-element {
  transition: transform 0.3s ease-out;
}

/* Enhanced Nav Link Hovers */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--bg-gradient);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-link.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

/* Enhanced Footer Link Hovers */
.footer-links a,
.link-group a {
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a::before,
.link-group a::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-links a:hover::before,
.link-group a:hover::before {
  width: 15px;
}

.footer-links a:hover,
.link-group a:hover {
  color: var(--secondary-light);
  padding-left: 10px;
}

/* Enhanced Social Link Hovers */
.social-link {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--bg-gradient);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: -1;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link:hover {
  transform: translateY(-5px) rotate(5deg) scale(1.1);
  color: white;
}

/* Enhanced Form Input Hovers */
.form-group input,
.form-group select,
.form-group textarea {
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.2), 0 0 0 3px rgba(184, 134, 11, 0.1);
  border-color: var(--primary);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--secondary);
}

/* Enhanced Floating Elements */
.floating-item {
  animation: floatEnhanced 6s ease-in-out infinite;
}

.floating-item.item-1 {
  animation-delay: 0s;
}

.floating-item.item-2 {
  animation-delay: 1.5s;
}

.floating-item.item-3 {
  animation-delay: 3s;
}

.floating-item.item-4 {
  animation-delay: 4.5s;
}

@keyframes floatEnhanced {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-25px) rotate(3deg);
  }
}

.floating-item:hover {
  animation-play-state: paused;
  transform: scale(1.2) rotate(10deg) !important;
  z-index: 10;
}

/* Enhanced Carousel Controls */
.carousel-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-btn:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.4);
}

.carousel-btn:active {
  transform: scale(1.1) rotate(0deg);
}

.dot {
  transition: all 0.3s ease;
}

.dot:hover {
  transform: scale(1.5);
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

/* Enhanced Back to Top Button */
a.back-to-top,
button.back-to-top,
.btn.back-to-top {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--bg-gradient) !important;
  color: white !important;
  border-radius: 50% !important;
  z-index: 999 !important;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

a.back-to-top i,
button.back-to-top i,
.btn.back-to-top i {
  font-size: 1.5rem !important;
  transition: transform 0.3s ease !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

a.back-to-top:hover,
button.back-to-top:hover,
.btn.back-to-top:hover {
  transform: translateY(-5px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.5) !important;
  background: var(--bg-gradient-alt) !important;
  color: white !important;
  text-decoration: none !important;
}

a.back-to-top:hover i,
button.back-to-top:hover i,
.btn.back-to-top:hover i {
  transform: translateY(-3px) !important;
}

a.back-to-top:active,
button.back-to-top:active,
.btn.back-to-top:active {
  transform: translateY(-2px) scale(1.05) !important;
}

a.back-to-top:focus,
button.back-to-top:focus,
.btn.back-to-top:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.3), 0 8px 25px rgba(139, 0, 0, 0.5) !important;
}

a.back-to-top:visited,
button.back-to-top:visited,
.btn.back-to-top:visited {
  color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  a.back-to-top,
  button.back-to-top,
  .btn.back-to-top {
    bottom: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
  }
  
  a.back-to-top i,
  button.back-to-top i,
  .btn.back-to-top i {
    font-size: 1.25rem !important;
  }
}

/* Enhanced Logo Animation */
.logo-container {
  transition: all 0.3s ease;
}

.logo-container:hover .logo-icon {
  transform: rotate(360deg) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
}

.logo-container:hover .logo-text {
  color: var(--primary);
}

/* Enhanced Section Headers */
.section-title,
.page-title {
  position: relative;
  display: inline-block;
}

.section-title::after,
.page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--bg-gradient);
  transition: width 0.6s ease;
}

.scroll-animate.animated .section-title::after,
.scroll-animate.animated .page-title::after {
  width: 100%;
}

/* Enhanced Testimonial Cards */
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
}

.testimonial-card:hover .quote-icon {
  opacity: 0.2;
  transform: scale(1.2);
}

/* Enhanced Contact Info Cards */
.contact-info-cards .info-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-cards .info-card:hover {
  transform: translateY(-10px);
}

.contact-info-cards .info-card:hover .card-icon {
  transform: scale(1.2) rotate(10deg);
  background: var(--bg-gradient);
}

.contact-info-cards .info-card:hover .card-icon i {
  color: white;
}

/* Enhanced Stats */
.stat-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

/* Pulse Animation for Important Elements */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Enhanced Preloader */
.preloader {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.logo-circle {
  animation: pulse 2s ease-in-out infinite;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced Mobile Menu */
.navbar-collapse {
  transition: all 0.3s ease;
}

.navbar-collapse.show {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Enhanced Hero Section Animations */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

/* Enhanced Page Header Animations */
/* Page Header - Completely Redesigned */
.page-header {
  text-align: center;
  padding: 3rem 0;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pageHeaderPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pageHeaderPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Section Transitions */
section {
  position: relative;
}

.features-section,
.solutions-section,
.testimonials-section,
.cta-section,
.contact-section {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Enhanced Mobile Responsiveness for Animations */
@media (max-width: 768px) {
  .scroll-animate {
    opacity: 1;
    transform: none;
  }
  
  .scroll-animate.animated {
    animation: none;
  }
  
  /* Reduce animation delays on mobile */
  .scroll-animate.delay-1,
  .scroll-animate.delay-2,
  .scroll-animate.delay-3,
  .scroll-animate.delay-4,
  .scroll-animate.delay-5,
  .scroll-animate.delay-6 {
    transition-delay: 0s;
  }
  
  /* Simpler hover effects on mobile */
  .feature-card:hover,
  .solution-card:hover,
  .testimonial-card:hover,
  .method-card:hover,
  .info-card:hover {
    transform: translateY(-5px);
  }
}

/* Performance Optimization */
.scroll-animate,
.feature-card,
.solution-card,
.testimonial-card,
.method-card,
.info-card {
  will-change: transform, opacity;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .scroll-animate,
  .feature-card,
  .solution-card,
  .testimonial-card,
  .method-card,
  .info-card,
  .action-btn,
  .cta-btn,
  .solution-btn,
  .method-btn,
  .submit-button,
  .floating-item {
    animation: none;
    transition: none;
  }
  
  .scroll-animate.fade-in,
  .scroll-animate.slide-up,
  .scroll-animate.slide-left,
  .scroll-animate.slide-right,
  .scroll-animate.scale-in,
  .scroll-animate.rotate-in {
    opacity: 1;
    transform: none;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2a1f1f 0%, #3d2a2a 100%);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.footer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.brand-logo i {
  font-size: 2.5rem;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.3));
}

.brand-description {
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-300);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
  background: rgba(139, 0, 0, 0.1);
  border-color: rgba(139, 0, 0, 0.3);
  transform: translateX(5px);
}

.contact-item i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.link-group h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.link-group h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--bg-gradient);
  border-radius: 2px;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group li {
  margin-bottom: 0.75rem;
}

.link-group a {
  color: var(--gray-300);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.link-group a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
  color: var(--primary);
}

.link-group a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.link-group a:hover {
  color: var(--primary);
  transform: translateX(10px);
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-gradient);
}

.footer-newsletter h4 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-newsletter p {
  color: var(--gray-300);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--gray-400);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  padding: 1rem 1.5rem;
  background: var(--bg-gradient);
  border: none;
  border-radius: var(--radius-lg);
  color: white;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.newsletter-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.newsletter-form button:hover::before {
  left: 100%;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.footer-legal a:hover::after {
  width: 100%;
}

.footer-legal a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-gradient);
  opacity: 0;
  transition: var(--transition);
}

.social-link i {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
  border-color: var(--primary);
}

.social-link:hover i {
  color: white;
}

/* Page Main Styles */
.page-main {
  padding: 2rem 0;
  background: var(--bg-secondary);
  min-height: 60vh;
  position: relative;
}

/* Policy Pages Main Styles */
main.page-main {
  padding: 6rem 0;
  background: linear-gradient(180deg, #faf8f5 0%, #ffffff 50%, #faf8f5 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

main.page-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
  animation: pageMainBackgroundMove 15s ease-in-out infinite;
}

main.page-main::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pageMainOrbFloat 25s ease-in-out infinite;
  pointer-events: none;
}

.page-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.page-main .container {
  position: relative;
  z-index: 1;
}

/* Page Section Styles */
.page-section {
  position: relative;
  z-index: 2;
}

/* Policy Content Styles */
/* Policy Content - Completely Redesigned */
.policy-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.98) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: 
    0 20px 50px rgba(139, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(218, 165, 32, 0.25);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-content:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 25px 60px rgba(139, 0, 0, 0.12),
    0 10px 25px rgba(184, 134, 11, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-color: rgba(218, 165, 32, 0.4);
}

.policy-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #8B0000, #B8860B, #8B0000);
  background-size: 200% 100%;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  animation: gradientMove 3s ease infinite;
}

.policy-content::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(139, 0, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Policy Section Styles - Completely Redesigned */
.policy-section {
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.95) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(218, 165, 32, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 10px 30px rgba(139, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #8B0000, #B8860B, #8B0000);
  background-size: 100% 200%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: gradientMove 3s ease infinite;
}

.policy-section:hover::before {
  transform: scaleY(1);
}

.policy-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.policy-section:hover::after {
  opacity: 1;
}

.policy-section:hover {
  transform: translateX(8px) translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(139, 0, 0, 0.1),
    0 5px 15px rgba(184, 134, 11, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-color: rgba(218, 165, 32, 0.4);
}

.policy-section h3 {
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  font-weight: 800;
  color: #2a1f1f;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}

.policy-section:hover h3 {
  color: #8B0000;
}

.policy-section h3 i {
  color: #8B0000;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-section:hover h3 i {
  transform: scale(1.15) rotate(5deg);
}

.policy-section p {
  color: #6b5b47;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.policy-section:hover p {
  color: #8B7355;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.policy-section li {
  color: #6b5b47;
  margin-bottom: 0.875rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.policy-section li:hover {
  color: #8B7355;
  transform: translateX(5px);
}

.policy-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #8B0000;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.policy-section li:hover::before {
  transform: translateX(3px);
  color: #B8860B;
}

.policy-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-section a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.policy-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.policy-section a:hover::after {
  width: 100%;
}

.policy-section a:hover {
  color: var(--primary-dark);
}

/* Page Header Styles - Completely Redesigned */
.page-header {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 2rem;
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pageHeaderPulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pageHeaderPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.9; }
}

.page-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pageTitleShimmer 4s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes pageTitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #8B0000, #B8860B, #8B0000);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: gradientMove 3s ease infinite;
}

.page-description {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  padding: 0 1rem;
}

/* Content Section Styles - Completely Redesigned */
.content-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.98) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  margin-bottom: 3rem;
  box-shadow: 
    0 15px 40px rgba(139, 0, 0, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(218, 165, 32, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 50px rgba(139, 0, 0, 0.12),
    0 8px 20px rgba(184, 134, 11, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-color: rgba(218, 165, 32, 0.4);
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #8B0000, #B8860B, #8B0000);
  background-size: 200% 100%;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  animation: gradientMove 3s ease infinite;
}

.content-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.content-section:hover::after {
  opacity: 1;
}

.content-section h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 900;
  color: #2a1f1f;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1.25rem;
  transition: color 0.3s ease;
}

.content-section:hover h2 {
  color: #8B0000;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8B0000, #B8860B);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.content-section:hover h2::after {
  width: 120px;
}

.content-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 1rem 0;
}

.content-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-section ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.content-section li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.content-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.content-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content-section a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.content-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.content-section a:hover::after {
  width: 100%;
}

.content-section a:hover {
  color: var(--primary-dark);
}

/* Contact Info Styles */
.contact-info {
  background: var(--bg-gradient);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  text-align: center;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-info a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .solution-card.premium {
    grid-column: 1 / -1;
  }
  
  .reviews-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  
  .review-card.main-review {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .tech-showcase {
    max-width: 500px;
    height: 400px;
  }
  
  .showcase-grid {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .tech-card {
    padding: 1.25rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-icon i {
    font-size: 1.5rem;
  }
  
  .hub-core {
    width: 100px;
    height: 100px;
  }
  
  .core-icon {
    font-size: 1.5rem;
  }
  
  .orbit-center {
    width: 80px;
    height: 80px;
  }
  
  .center-icon {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-methods {
    margin-bottom: 2rem;
  }
  
  .method-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .testimonial-card.featured {
    grid-column: 1;
    grid-row: 1;
  }
  
  .testimonial-metrics {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .content-section {
    padding: 2rem;
  }
  
  .cta-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .cta-visual {
    height: 300px;
  }
  
  .floating-elements {
    width: 250px;
    height: 250px;
  }
  
  .floating-item {
    width: 60px;
    height: 60px;
  }
  
  .cta-features {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  
  .testimonial-card.featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .page-description {
    font-size: 1rem;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .content-section h3 {
    font-size: 1.2rem;
  }
  
  .policy-content {
    padding: 2rem;
  }
  
  .policy-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .policy-section h3 {
    font-size: 1.2rem;
  }
  
  main.page-main {
    padding: 2rem 0;
  }
  
  .policy-content {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .policy-section {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .policy-section h3 {
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .policy-section h3 i {
    font-size: 1rem;
  }
  
  .tech-showcase {
    max-width: 400px;
    height: 350px;
  }
  
  .showcase-grid {
    gap: 1rem;
    padding: 1rem;
  }
  
  .tech-card {
    padding: 1rem;
  }
  
  .card-content h4 {
    font-size: 1rem;
  }
  
  .card-content p {
    font-size: 0.8rem;
  }
  
  .hub-core {
    width: 80px;
    height: 80px;
  }
  
  .core-icon {
    font-size: 1.2rem;
  }
  
  .core-text span {
    font-size: 0.7rem;
  }
  
  .core-text small {
    font-size: 0.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition);
  padding: 0;
  margin: 0;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cookie-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.cookie-icon i {
  font-size: 1.5rem;
  color: white;
}

.cookie-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cookie-title p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

.cookie-content {
  margin-bottom: 2rem;
}

.cookie-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-category {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.cookie-category:hover {
  background: rgba(248, 250, 252, 1);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.category-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.category-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-toggle {
  position: relative;
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  display: none;
}

.toggle-switch {
  display: block;
  width: 50px;
  height: 28px;
  background: var(--gray-300);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch:hover {
  background: var(--gray-400);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .toggle-switch {
  background: var(--primary);
}

.cookie-toggle input:checked + .toggle-switch .toggle-slider {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .toggle-switch {
  background: var(--primary);
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-toggle input:disabled + .toggle-switch .toggle-slider {
  transform: translateX(22px);
}

.cookie-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.policy-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.policy-link:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.policy-link i {
  font-size: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cookie-btn i {
  font-size: 1rem;
}

.cookie-btn.primary {
  background: var(--bg-gradient);
  color: white;
  box-shadow: var(--shadow);
}

.cookie-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-gradient-alt);
}

.cookie-btn.secondary {
  background: var(--gray-100);
  color: var(--text-primary);
  border: 1px solid var(--gray-300);
}

.cookie-btn.secondary:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

.cookie-btn.success {
  background: var(--success);
  color: white;
  box-shadow: var(--shadow);
}

.cookie-btn.success:hover {
  background: var(--success-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Cookie Banner Animations */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.cookie-banner.show {
  animation: slideUp 0.4s ease-out;
}

.cookie-banner.hide {
  animation: slideDown 0.3s ease-in;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-container {
    padding: 1.5rem;
  }
  
  .cookie-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .cookie-title h3 {
    font-size: 1.25rem;
  }
  
  .cookie-categories {
    gap: 0.75rem;
  }
  
  .cookie-category {
    padding: 1rem;
  }
  
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  
  .cookie-links {
    justify-content: center;
    gap: 1rem;
  }
  
  .cookie-buttons {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .cookie-btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-container {
    padding: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 4rem 0;
  }
  
  .contact-section {
    padding: 4rem 0;
  }
  
  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .cta-visual {
    height: 200px;
  }
  
  .contact-form-section {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .testimonials-header h2 {
    font-size: 2rem;
  }
  
  .testimonials-header .section-subtitle {
    font-size: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .author-info {
    text-align: center;
  }
  
  .rating {
    align-items: center;
  }
  
  .results {
    justify-content: center;
  }
  
  .video-header h3 {
    font-size: 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .method-card {
    padding: 2rem;
  }
  
  .method-icon {
    width: 60px;
    height: 60px;
  }
  
  .method-icon i {
    font-size: 1.5rem;
  }
  
  .method-content h3 {
    font-size: 1.25rem;
  }
  
  .form-container {
    padding: 0;
  }
  
  .contact-form-section {
    padding: 1.5rem;
    margin: 0 1rem 2rem;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-icon i {
    font-size: 1.25rem;
  }
  
  .proof-content h3 {
    font-size: 1.5rem;
  }
  
  .proof-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials-stats {
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-content blockquote {
    font-size: 1.1rem;
  }
  
  .results {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .result-item {
    justify-content: center;
  }
  
  .carousel-controls {
    gap: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .video-thumbnail {
    height: 150px;
  }
  
  .play-button {
    font-size: 3rem;
  }
  
  .video-info {
    padding: 1rem;
  }
  
  .cta-content h3 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .floating-quote {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .contact-header h2 {
    font-size: 1.75rem;
  }
  
  .method-card {
    padding: 1.5rem;
  }
  
  .method-content h3 {
    font-size: 1.1rem;
  }
  
  .method-content p {
    font-size: 0.9rem;
  }
  
  .method-features {
    gap: 0.5rem;
  }
  
  .feature {
    font-size: 0.85rem;
  }
  
  .contact-form-section {
    padding: 1rem;
    margin: 0 0.5rem 2rem;
  }
  
  .form-header h3 {
    font-size: 1.25rem;
  }
  
  .form-header p {
    font-size: 0.95rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .submit-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .card-content h4 {
    font-size: 1rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .card-content span {
    font-size: 0.8rem;
  }
  
  .contact-social-proof {
    padding: 2rem 1rem;
  }
  
  .proof-content h3 {
    font-size: 1.25rem;
  }
  
  .proof-content p {
    font-size: 0.95rem;
  }
  
  .proof-stat .stat-number {
    font-size: 2rem;
  }
  
  .proof-stat .stat-label {
    font-size: 0.8rem;
  }
}

/* Pricing Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.1);
  margin: 2rem 0;
}

table thead {
  background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
}

table thead th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  color: white;
  font-size: 1rem;
}

table thead th:first-child {
  text-align: left;
}

table thead th:not(:first-child) {
  text-align: center;
}

table tbody tr {
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  transition: background 0.3s ease;
}

table tbody tr:hover {
  background: rgba(139, 0, 0, 0.03);
}

table tbody tr:last-child {
  border-bottom: none;
}

table tbody td {
  padding: 1rem 1.5rem;
  color: #2a1f1f;
  font-size: 0.95rem;
}

table tbody td:first-child {
  font-weight: 600;
}

table tbody td:not(:first-child) {
  text-align: center;
}

table tbody td i {
  font-size: 1.2rem;
}

table tbody td i.bi-check-circle-fill {
  color: #8B7355;
}

table tbody td i.bi-x-circle {
  color: #8B0000;
}

@media (max-width: 768px) {
  table {
    font-size: 0.85rem;
  }
  
  table thead th,
  table tbody td {
    padding: 0.75rem 1rem;
  }
}