/* Fonts */
:root {
  --default-font: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Space Grotesk", sans-serif;
  --nav-font: "Space Grotesk", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #0a1a0f;
  --default-color: #e8f5e8;
  --heading-color: #4ade80;
  --accent-color: #22c55e;
  --surface-color: #0f2e1a;
  --contrast-color: #ffffff;
  --nav-color: #e8f5e8;
  --nav-hover-color: #4ade80;
  --nav-mobile-background-color: #0f2e1a;
  --nav-dropdown-background-color: #0a1a0f;
  --nav-dropdown-color: #e8f5e8;
  --nav-dropdown-hover-color: #4ade80;
  --gradient-primary: linear-gradient(135deg, #0a1a0f 0%, #0f2e1a 50%, #1a4d2e 100%);
  --gradient-secondary: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  --gradient-accent: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  --shadow-primary: 0 10px 30px rgba(34, 197, 94, 0.3);
  --shadow-secondary: 0 5px 15px rgba(74, 222, 128, 0.2);
  --light-green: #86efac;
  --medium-green: #4ade80;
  --dark-green: #16a34a;
  --text-light: #a7f3a7;
  --border-light: #1a4d2e;

}

/* Color Presets */

.light-background {
  --background-color: #f0fdf4;
  --surface-color: #ffffff;
  --default-color: #0a1a0f;
  --heading-color: #052e16;
}

.dark-background {
  --background-color: #0a1a0f;
  --default-color: #e8f5e8;
  --heading-color: #86efac;
  --surface-color: #0f2e1a;
  --contrast-color: #ffffff;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section - Revolutionary Creative Design
--------------------------------------------------------------*/
.sustainability-hero {
  min-height: 100vh;
  background: 
    radial-gradient(ellipse 1400px 900px at 15% 15%, rgba(34, 197, 94, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse 1200px 800px at 85% 85%, rgba(74, 222, 128, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 1000px 700px at 50% 50%, rgba(22, 163, 74, 0.12) 0%, transparent 75%),
    radial-gradient(ellipse 800px 600px at 70% 30%, rgba(134, 239, 172, 0.1) 0%, transparent 70%),
    linear-gradient(135deg, #0a1a0f 0%, #0f2e1a 30%, #1a4d2e 60%, #0f2e1a 90%, #0a1a0f 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 180px 20px 140px;
  isolation: isolate;
}

.sustainability-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-conic-gradient(from 0deg at 50% 50%, 
      transparent 0deg, 
      rgba(74, 222, 128, 0.05) 0.3deg, 
      transparent 0.6deg, 
      rgba(34, 197, 94, 0.04) 0.9deg, 
      transparent 1.2deg,
      rgba(134, 239, 172, 0.03) 1.5deg,
      transparent 1.8deg),
    repeating-radial-gradient(circle at 0 0, 
      transparent 0px, 
      rgba(74, 222, 128, 0.03) 1px, 
      transparent 2px, 
      rgba(34, 197, 94, 0.025) 3px, 
      transparent 4px,
      rgba(134, 239, 172, 0.02) 5px,
      transparent 6px),
    repeating-linear-gradient(45deg,
      transparent 0px,
      rgba(74, 222, 128, 0.02) 1px,
      transparent 2px);
  background-size: 250px 250px, 120px 120px, 60px 60px;
  animation: rotatePattern 30s linear infinite, waveMove 18s ease-in-out infinite, patternPulse 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  filter: blur(0.5px);
}

@keyframes rotatePattern {
  from { transform: rotate(0deg) scale(1); }
  33% { transform: rotate(120deg) scale(1.15); }
  66% { transform: rotate(240deg) scale(0.95); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes waveMove {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(40px, -40px); }
  50% { transform: translate(-20px, -60px); }
  75% { transform: translate(30px, -30px); }
}

@keyframes patternPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.sustainability-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle 400px at 25% 35%, rgba(74, 222, 128, 0.15) 0%, transparent 60%),
    radial-gradient(circle 350px at 75% 65%, rgba(34, 197, 94, 0.12) 0%, transparent 60%),
    radial-gradient(circle 300px at 50% 20%, rgba(134, 239, 172, 0.1) 0%, transparent 55%),
    radial-gradient(circle 250px at 20% 80%, rgba(74, 222, 128, 0.08) 0%, transparent 50%);
  animation: particleFloat 24s ease-in-out infinite, particleRotate 20s linear infinite;
  pointer-events: none;
  z-index: 1;
  filter: blur(1px);
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  20% {
    transform: translate(60px, -60px) scale(1.15);
    opacity: 0.85;
  }
  40% {
    transform: translate(-40px, 40px) scale(0.92);
    opacity: 0.9;
  }
  60% {
    transform: translate(50px, 30px) scale(1.08);
    opacity: 0.88;
  }
  80% {
    transform: translate(-30px, -50px) scale(0.95);
    opacity: 0.92;
  }
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: 
    radial-gradient(circle 500px at 20% 30%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
    radial-gradient(circle 450px at 80% 70%, rgba(74, 222, 128, 0.25) 0%, transparent 50%),
    radial-gradient(circle 400px at 50% 50%, rgba(22, 163, 74, 0.15) 0%, transparent 70%),
    radial-gradient(circle 350px at 30% 70%, rgba(134, 239, 172, 0.12) 0%, transparent 60%),
    radial-gradient(circle 300px at 70% 30%, rgba(74, 222, 128, 0.1) 0%, transparent 55%);
  animation: pulseGlow 6s ease-in-out infinite, backgroundShift 14s ease-in-out infinite, backgroundRotate 18s linear infinite;
  filter: blur(0.8px);
  mix-blend-mode: screen;
}

@keyframes pulseGlow {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  33% { 
    opacity: 0.9;
    transform: scale(1.08);
    filter: brightness(1.2);
  }
  66% { 
    opacity: 0.85;
    transform: scale(0.95);
    filter: brightness(0.9);
  }
}

@keyframes backgroundShift {
  0%, 100% { 
    background-position: 20% 30%, 80% 70%, 50% 50%, 30% 70%, 70% 30%;
  }
  25% { 
    background-position: 25% 35%, 75% 65%, 55% 45%, 35% 75%, 65% 25%;
  }
  50% { 
    background-position: 15% 25%, 85% 75%, 45% 55%, 25% 65%, 75% 35%;
  }
  75% { 
    background-position: 30% 40%, 70% 60%, 60% 40%, 40% 80%, 60% 20%;
  }
}

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

.eco-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(74, 222, 128, 0.06) 35px, rgba(74, 222, 128, 0.06) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 45px, rgba(34, 197, 94, 0.04) 45px, rgba(34, 197, 94, 0.04) 90px),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(134, 239, 172, 0.03) 60px, rgba(134, 239, 172, 0.03) 120px);
  animation: patternShift 12s ease-in-out infinite;
  z-index: 1;
}

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

.leaf-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
  background: 
    radial-gradient(circle at 30% 30%, rgba(134, 239, 172, 0.8), rgba(74, 222, 128, 0.6)),
    linear-gradient(135deg, rgba(74, 222, 128, 0.7), rgba(34, 197, 94, 0.5));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: creativeFloat 12s ease-in-out infinite, morphShape 8s ease-in-out infinite;
  box-shadow: 
    0 0 30px rgba(74, 222, 128, 0.5),
    0 0 60px rgba(34, 197, 94, 0.3),
    0 0 90px rgba(134, 239, 172, 0.2),
    inset 0 0 25px rgba(134, 239, 172, 0.4);
  filter: blur(0.5px);
  z-index: 1;
}

@keyframes morphShape {
  0%, 100% { 
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }
  75% {
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  }
}

.leaf-1 { 
  top: 10%; 
  left: 5%; 
  animation-delay: 0s; 
  width: 80px; 
  height: 80px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.leaf-2 { 
  top: 30%; 
  right: 8%; 
  animation-delay: 2s; 
  width: 90px; 
  height: 90px;
  border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
}
.leaf-3 { 
  top: 50%; 
  left: 10%; 
  animation-delay: 4s; 
  width: 70px; 
  height: 70px;
  border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
}
.leaf-4 { 
  top: 20%; 
  right: 20%; 
  animation-delay: 6s; 
  width: 60px; 
  height: 60px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.leaf-5 { 
  top: 60%; 
  left: 50%; 
  animation-delay: 8s; 
  width: 85px; 
  height: 85px;
  border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
}

@keyframes creativeFloat {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.75;
    filter: brightness(1);
  }
  20% {
    transform: translate(25px, -35px) rotate(72deg) scale(1.12);
    opacity: 0.9;
    filter: brightness(1.2);
  }
  40% {
    transform: translate(-20px, -55px) rotate(144deg) scale(0.98);
    opacity: 1;
    filter: brightness(1.3);
  }
  60% {
    transform: translate(30px, -40px) rotate(216deg) scale(1.08);
    opacity: 0.95;
    filter: brightness(1.15);
  }
  80% {
    transform: translate(-15px, -25px) rotate(288deg) scale(1.05);
    opacity: 0.85;
    filter: brightness(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  animation: creativeFadeIn 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: 
    radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, rgba(34, 197, 94, 0.15) 30%, transparent 70%);
  border-radius: 50%;
  animation: contentGlow 10s ease-in-out infinite, contentPulse 6s ease-in-out infinite;
  z-index: -1;
  filter: blur(50px);
}

.hero-content::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: 
    radial-gradient(circle, rgba(134, 239, 172, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  animation: contentGlowInner 8s ease-in-out infinite;
  z-index: -1;
  filter: blur(30px);
}

@keyframes contentGlow {
  0%, 100% {
    transform: translateX(-50%) scale(1) rotate(0deg);
    opacity: 0.6;
  }
  33% {
    transform: translateX(-50%) scale(1.25) rotate(120deg);
    opacity: 0.85;
  }
  66% {
    transform: translateX(-50%) scale(0.9) rotate(240deg);
    opacity: 0.7;
  }
}

@keyframes contentPulse {
  0%, 100% {
    filter: blur(50px) brightness(1);
  }
  50% {
    filter: blur(60px) brightness(1.3);
  }
}

@keyframes contentGlowInner {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 0.7;
  }
}

@keyframes creativeFadeIn {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.88) rotateX(8deg) rotateY(2deg);
    filter: blur(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg) rotateY(0deg);
    filter: blur(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: 
    linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(74, 222, 128, 0.25)),
    linear-gradient(45deg, rgba(134, 239, 172, 0.15), rgba(34, 197, 94, 0.1), transparent);
  backdrop-filter: blur(20px) saturate(200%);
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 
    0 15px 40px rgba(34, 197, 94, 0.4),
    0 0 0 2px rgba(74, 222, 128, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.15),
    inset 0 -2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 60px;
  border: 3px solid rgba(74, 222, 128, 0.5);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: badgePulse 4s ease-in-out infinite, badgeFloat 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 
      0 15px 40px rgba(34, 197, 94, 0.4),
      0 0 0 2px rgba(74, 222, 128, 0.3),
      inset 0 2px 5px rgba(255, 255, 255, 0.15);
    transform: scale(1);
    border-color: rgba(74, 222, 128, 0.5);
  }
  50% {
    box-shadow: 
      0 20px 55px rgba(74, 222, 128, 0.6),
      0 0 0 3px rgba(74, 222, 128, 0.5),
      inset 0 3px 8px rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
    border-color: rgba(74, 222, 128, 0.7);
  }
}

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

@keyframes badgeShine {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-badge:hover {
  transform: translateY(-8px) scale(1.1) rotateZ(1deg);
  border-color: rgba(74, 222, 128, 0.8);
  box-shadow: 
    0 25px 70px rgba(34, 197, 94, 0.5),
    0 0 0 4px rgba(74, 222, 128, 0.4),
    inset 0 3px 15px rgba(134, 239, 172, 0.3),
    0 0 40px rgba(74, 222, 128, 0.4);
  background: 
    linear-gradient(135deg, rgba(34, 197, 94, 0.4), rgba(74, 222, 128, 0.35)),
    linear-gradient(45deg, rgba(134, 239, 172, 0.2), rgba(34, 197, 94, 0.15), transparent);
}

.badge-icon {
  font-size: 28px;
  animation: iconBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.5));
  position: relative;
  z-index: 1;
}

@keyframes iconBounce {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-5px) rotate(-10deg) scale(1.1);
  }
  50% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  75% {
    transform: translateY(-3px) rotate(10deg) scale(1.05);
  }
}

.badge-text {
  font-weight: 800;
  color: var(--medium-green);
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: 40px;
  animation: titleReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  position: relative;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.title-main {
  display: block;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 200;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(74, 222, 128, 0.2);
  animation: titleSlideIn 1s ease-out 0.5s both;
}

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

.title-highlight {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  background: 
    linear-gradient(135deg, #86efac 0%, #4ade80 25%, #22c55e 50%, #16a34a 75%, #4ade80 100%),
    linear-gradient(45deg, #4ade80, #22c55e, #86efac);
  background-size: 300% 300%, 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
  animation: gradientShift 4s ease infinite, titleScale 1.2s ease-out 0.7s both, titleGlow 3s ease-in-out infinite;
  text-shadow: 0 0 50px rgba(74, 222, 128, 0.6);
  filter: drop-shadow(0 0 25px rgba(34, 197, 94, 0.4));
}

@keyframes titleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 25px rgba(34, 197, 94, 0.4)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(74, 222, 128, 0.6)) brightness(1.2);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.title-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(74, 222, 128, 0.3), 
    transparent);
  animation: shimmer 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    transparent, 
    #4ade80 20%, 
    #22c55e 50%, 
    #4ade80 80%, 
    transparent);
  border-radius: 3px;
  animation: expandUnderline 1.8s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}

@keyframes expandUnderline {
  from { 
    width: 0;
    opacity: 0;
  }
  to { 
    width: 100%;
    opacity: 1;
  }
}

.title-sub {
  display: block;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 12px;
  animation: subtitleFade 1s ease-out 1.2s both;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

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

.hero-description {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.9;
  animation: descriptionReveal 1.2s ease-out 1.4s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-description::before {
  content: '💡';
  position: absolute;
  left: -40px;
  top: 0;
  font-size: 1.5rem;
  opacity: 0.5;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes descriptionReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: actionsSlideIn 1s ease-out 1.6s both;
  position: relative;
}

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

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: 
    linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #86efac 100%),
    linear-gradient(45deg, #4ade80, #22c55e);
  background-size: 200% 200%;
  color: var(--contrast-color);
  box-shadow: 
    0 12px 35px rgba(34, 197, 94, 0.4),
    0 0 0 1px rgba(74, 222, 128, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: buttonGradient 3s ease infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes buttonGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 
    0 20px 60px rgba(34, 197, 94, 0.5),
    0 0 0 3px rgba(74, 222, 128, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.3);
  background: 
    linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%),
    linear-gradient(45deg, #22c55e, #4ade80);
}

.btn-secondary {
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 0.7), rgba(26, 77, 46, 0.5)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.1), transparent);
  backdrop-filter: blur(15px) saturate(180%);
  color: var(--medium-green);
  border: 2px solid rgba(74, 222, 128, 0.4);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(74, 222, 128, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(34, 197, 94, 0.15));
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 50px;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:hover {
  background: 
    linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(74, 222, 128, 0.15)),
    linear-gradient(45deg, rgba(134, 239, 172, 0.1), transparent);
  border-color: rgba(74, 222, 128, 0.6);
  transform: translateY(-6px) scale(1.08);
  box-shadow: 
    0 20px 50px rgba(74, 222, 128, 0.4),
    0 0 0 3px rgba(74, 222, 128, 0.3),
    inset 0 2px 10px rgba(134, 239, 172, 0.2);
  color: var(--light-green);
}

.btn-icon {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  animation: iconPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

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

.btn-arrow {
  font-size: 1.4rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  display: inline-block;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(8px) scale(1.2);
  filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.8));
}

/*--------------------------------------------------------------
# Features Section - Revolutionary Creative Design
--------------------------------------------------------------*/
.eco-services {
  padding: 180px 0;
  background: 
    radial-gradient(ellipse 1500px 1000px at 12% 12%, rgba(34, 197, 94, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 1300px 900px at 88% 88%, rgba(74, 222, 128, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 1100px 800px at 50% 50%, rgba(22, 163, 74, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 900px 700px at 30% 70%, rgba(134, 239, 172, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--background-color) 0%, var(--surface-color) 40%, var(--background-color) 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.eco-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(74, 222, 128, 0.04) 4px,
      rgba(74, 222, 128, 0.04) 8px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 45px,
      rgba(34, 197, 94, 0.03) 45px,
      rgba(34, 197, 94, 0.03) 90px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 55px,
      rgba(134, 239, 172, 0.025) 55px,
      rgba(134, 239, 172, 0.025) 110px
    ),
    radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(74, 222, 128, 0.12) 0%, transparent 50%);
  pointer-events: none;
  animation: patternMove 25s linear infinite, patternRotate 20s linear infinite, patternPulse 10s ease-in-out infinite;
  z-index: 1;
  filter: blur(0.3px);
}

@keyframes patternMove {
  from { transform: translateY(0) translateX(0); }
  33% { transform: translateY(140px) translateX(40px); }
  66% { transform: translateY(-20px) translateX(-30px); }
  to { transform: translateY(0) translateX(0); }
}

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

@keyframes patternPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.eco-services::after {
  content: '';
  position: absolute;
  top: -35%;
  right: -12%;
  width: 800px;
  height: 800px;
  background: 
    radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, rgba(34, 197, 94, 0.1) 35%, rgba(134, 239, 172, 0.08) 60%, transparent 75%);
  border-radius: 50%;
  animation: floatCircle 22s ease-in-out infinite, circlePulse 7s ease-in-out infinite, circleRotate 25s linear infinite;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
  mix-blend-mode: screen;
}

@keyframes floatCircle {
  0%, 100% { 
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% { 
    transform: translate(-70px, -140px) scale(1.2) rotate(90deg);
  }
  50% { 
    transform: translate(50px, -100px) scale(0.9) rotate(180deg);
  }
  75% { 
    transform: translate(-40px, -60px) scale(1.1) rotate(270deg);
  }
}

@keyframes circlePulse {
  0%, 100% { 
    opacity: 0.7;
    filter: blur(40px) brightness(1);
  }
  50% { 
    opacity: 1;
    filter: blur(50px) brightness(1.3);
  }
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
  animation: sectionHeaderReveal 1s ease-out;
  position: relative;
}

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

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 28px;
  background: 
    linear-gradient(135deg, #86efac 0%, #4ade80 30%, #22c55e 60%, #16a34a 100%),
    linear-gradient(45deg, #4ade80, #22c55e);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  animation: titleGradientShift 4s ease infinite;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.3));
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #4ade80, transparent);
  border-radius: 2px;
  animation: titleLineExpand 1s ease-out 0.5s both;
}

@keyframes titleGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes titleLineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 1;
  }
}

.section-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 0.9), rgba(26, 77, 46, 0.7)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.08), rgba(34, 197, 94, 0.05), transparent);
  backdrop-filter: blur(20px) saturate(200%);
  border-radius: 32px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(74, 222, 128, 0.25),
    inset 0 2px 5px rgba(255, 255, 255, 0.15),
    inset 0 -2px 10px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(74, 222, 128, 0.3);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: cardReveal 1.2s ease-out both, cardFloat 6s ease-in-out infinite;
}

.service-card:nth-child(1) { 
  animation-delay: 0.1s, 0s;
}
.service-card:nth-child(2) { 
  animation-delay: 0.25s, 2s;
}
.service-card:nth-child(3) { 
  animation-delay: 0.4s, 4s;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(70px) rotateX(20deg) scale(0.88);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0);
  }
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, 
    #22c55e 0%, 
    #4ade80 25%, 
    #86efac 50%, 
    #4ade80 75%, 
    #22c55e 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
  animation: topLineGradient 3s ease infinite;
}

@keyframes topLineGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.service-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  width: 400px;
  height: 400px;
}

.service-card:hover {
  transform: translateY(-20px) scale(1.05) rotateY(3deg) rotateZ(1deg);
  box-shadow: 
    0 40px 100px rgba(34, 197, 94, 0.5),
    0 0 0 4px rgba(74, 222, 128, 0.5),
    inset 0 3px 20px rgba(134, 239, 172, 0.3),
    0 0 60px rgba(74, 222, 128, 0.4);
  border-color: rgba(74, 222, 128, 0.7);
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 1), rgba(26, 77, 46, 0.9)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.2), rgba(34, 197, 94, 0.15), rgba(134, 239, 172, 0.1));
}

.card-icon {
  width: 120px;
  height: 120px;
  background: 
    linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(74, 222, 128, 0.2)),
    radial-gradient(circle at 30% 30%, rgba(134, 239, 172, 0.3), transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 4px solid rgba(74, 222, 128, 0.4);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(34, 197, 94, 0.3),
    inset 0 0 20px rgba(134, 239, 172, 0.2);
  animation: iconFloat 4s ease-in-out infinite;
}

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

.card-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(74, 222, 128, 0.3),
    transparent,
    rgba(34, 197, 94, 0.3),
    transparent
  );
  animation: iconRotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.6s;
}

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

.service-card:hover .card-icon::before {
  opacity: 1;
}

.service-card:hover .card-icon {
  transform: rotate(360deg) scale(1.15);
  border-color: rgba(74, 222, 128, 0.7);
  box-shadow: 
    0 20px 50px rgba(74, 222, 128, 0.5),
    inset 0 0 30px rgba(134, 239, 172, 0.4),
    0 0 40px rgba(34, 197, 94, 0.3);
  background: 
    linear-gradient(135deg, rgba(34, 197, 94, 0.35), rgba(74, 222, 128, 0.3)),
    radial-gradient(circle at 30% 30%, rgba(134, 239, 172, 0.5), transparent);
}

.card-icon .icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.5));
}

.service-card:hover .card-icon .icon {
  transform: scale(1.3) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.8));
}

.card-title {
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 900;
  color: var(--heading-color);
  margin-bottom: 24px;
  transition: all 0.4s ease;
  position: relative;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.service-card:hover .card-title {
  color: var(--medium-green);
  text-shadow: 0 0 30px rgba(74, 222, 128, 0.6);
  transform: scale(1.05);
}

.card-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 1rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .feature-item {
  background: rgba(74, 222, 128, 0.2);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.service-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
}

.feature-text {
  color: var(--text-light);
  font-weight: 500;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}


/*--------------------------------------------------------------
# Cyber Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0f;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.ideaacademy-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1a0f 0%, #0f2e1a 50%, #1a4d2e 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.preloader-logo {
  margin-bottom: 30px;
}

.logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
  animation: logoPulse 2s ease-in-out infinite;
}

.logo-circle .logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cleaning-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.icon-item {
  font-size: 24px;
  animation: iconBounce 1.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

.icon-item:nth-child(1) { --i: 0; }
.icon-item:nth-child(2) { --i: 1; }
.icon-item:nth-child(3) { --i: 2; }

.logo-grid {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: gridRotate 3s linear infinite;
  border-radius: 10px;
}

.loading-animation {
  margin: 20px 0;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  animation: dotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

.loading-text {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

@keyframes logoPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(46, 139, 87, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(46, 139, 87, 0.5);
  }
}

@keyframes iconBounce {
  0%, 80%, 100% { 
    transform: scale(1);
  }
  40% { 
    transform: scale(1.2);
  }
}

@keyframes dotBounce {
  0%, 80%, 100% { 
    transform: scale(0);
  }
  40% { 
    transform: scale(1);
  }
}

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

@keyframes loadingProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes textPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/*--------------------------------------------------------------
# Floating Navigation
--------------------------------------------------------------*/
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(45deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-pulse {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 8px;
  height: 8px;
  background: #9be28a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(155, 226, 138, 0.12);
  color: #9be28a;
  transform: translateY(-2px);
}

.nav-icon {
  font-size: 16px;
}

.nav-text {
  font-size: 14px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--default-color);
  transition: all 0.3s ease;
}

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

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(45deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header .logo h1:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(159, 122, 234, 0.6));
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
  }

  .navmenu a::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.5s;
  }

  .navmenu a:hover::before {
    left: 100%;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--gradient-primary);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

.footer .footer-top p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(78, 205, 196, 0.3);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 15px;
  transition: all 0.3s ease;
  background: rgba(78, 205, 196, 0.1);
  position: relative;
  z-index: 2;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.footer h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
}

.footer .footer-links {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}


.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Services Section
--------------------------------------------------------------*/
.hero-services {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 2;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(46, 139, 87, 0.2);
}

.services-grid {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  background: var(--light-bg);
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 139, 87, 0.1);
}

.service-item:hover {
  background: rgba(46, 139, 87, 0.05);
  transform: translateX(5px);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
  border-radius: 50%;
  color: var(--white);
}

.service-title {
  font-weight: 600;
  color: var(--text-color);
  font-size: 14px;
}

.service-desc {
  color: var(--default-color);
  font-size: 12px;
  opacity: 0.8;
}

/* Contact Info Cards */
.contact-info {
  margin-bottom: 30px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(46, 139, 87, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.card-title {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.card-text {
  color: var(--default-color);
  font-size: 14px;
  opacity: 0.8;
}

/* FAQ Intro */
.faq-intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(46, 139, 87, 0.2);
}

.intro-content h3 {
  color: var(--text-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.intro-content p {
  color: var(--default-color);
  margin-bottom: 25px;
  opacity: 0.8;
}

/* Removed intro-stats styles as requested */

/*--------------------------------------------------------------
# Cyber Hero Section
--------------------------------------------------------------*/
.cyber-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  overflow: hidden;
}

.hero-matrix {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent 0%, rgba(0, 255, 255, 0.1) 50%, transparent 100%);
  animation: matrixRain 3s linear infinite;
}

.neural-network {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.neural-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: neuralPulse 2s ease-in-out infinite;
  animation-delay: var(--delay);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.hero-terminal {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 400px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  z-index: 2;
  font-family: 'Courier New', monospace;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn-close { background: #ff5f56; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #27ca3f; }

.terminal-title {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
}

.terminal-body {
  padding: 15px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.4;
}

.terminal-line {
  margin-bottom: 8px;
}

.prompt {
  color: #00ffff;
  font-weight: 600;
}

.command {
  color: #ffffff;
}

.output {
  color: rgba(0, 255, 255, 0.8);
}

.output.success {
  color: #00ff00;
}

.typing {
  animation: typing 2s infinite;
}

.cursor {
  animation: blink 1s infinite;
}

.hero-hologram {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hologram-container {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 60px 40px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hologram-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  animation: hologramScan 3s ease-in-out infinite;
}

.hologram-text {
  margin-bottom: 30px;
}

.hologram-line {
  display: block;
  font-size: clamp(24px, 6vw, 48px);
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hologram-line.highlight {
  background: linear-gradient(45deg, #00ffff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hologramGlow 2s ease-in-out infinite alternate;
}

.hologram-subtitle {
  font-size: 18px;
  color: rgba(224, 230, 237, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hologram-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hologram-btn {
  position: relative;
  padding: 15px 30px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  background: transparent;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.hologram-btn.primary {
  background: linear-gradient(45deg, #00ffff, #ff0080);
  border-color: transparent;
  color: white;
}

.hologram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-glow {
  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;
}

.hologram-btn:hover .btn-glow {
  left: 100%;
}

@keyframes matrixRain {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

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

@keyframes typing {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes hologramScan {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes hologramGlow {
  0% { filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6)); }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-hero {
    padding: 100px 0;
  }
  
  .hero-terminal {
    width: 400px;
    left: 30px;
    top: 30px;
  }
  
  .hologram-text {
    font-size: 32px;
  }
  
  .hologram-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .cyber-hero {
    padding: 80px 0;
  }
  
  .hero-terminal {
    width: 300px;
    left: 20px;
    top: 20px;
  }
  
  .hologram-container {
    padding: 40px 20px;
  }
  
  .hologram-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hologram-text {
    font-size: 24px;
  }
  
  .hologram-subtitle {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-hero {
    padding: 60px 0;
  }
  
  .hero-terminal {
    width: 280px;
    left: 10px;
    top: 10px;
  }
  
  .hologram-text {
    font-size: 20px;
  }
  
  .hologram-subtitle {
    font-size: 12px;
  }
  
  .hologram-actions {
    gap: 15px;
  }
  
  .hologram-btn {
    padding: 12px 24px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-element {
  position: absolute;
  font-size: 24px;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-element:nth-child(1) { top: 20%; left: 10%; }
.floating-element:nth-child(2) { top: 30%; right: 15%; }
.floating-element:nth-child(3) { bottom: 40%; left: 20%; }
.floating-element:nth-child(4) { bottom: 20%; right: 10%; }
.floating-element:nth-child(5) { top: 60%; left: 50%; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  position: relative;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: #00ffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  margin: 0 0 30px 0;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.1;
}

.title-line {
  display: block;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.title-line.highlight {
  background: linear-gradient(45deg, #00ffff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(224, 230, 237, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary {
  position: relative;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.btn-primary:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--default-color);
  border: 2px solid rgba(0, 255, 255, 0.3);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(224, 230, 237, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

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

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6)); }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .floating-element {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.tech-showcase {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.tech-category {
  margin-bottom: 60px;
  background: rgba(26, 26, 46, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.3s ease;
}

.tech-category:hover {
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.category-icon {
  font-size: 40px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.category-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
  margin: 0;
}

.category-indicator {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, transparent);
  border-radius: 1px;
}

.tech-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tech-item {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.3);
}

.tech-icon {
  font-size: 24px;
  margin-bottom: 15px;
}

.tech-item h4 {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tech-item p {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.tech-level {
  display: flex;
  align-items: center;
  gap: 10px;
}

.level-text {
  font-size: 12px;
  font-weight: 600;
  color: #00ffff;
  min-width: 60px;
}

.level-bar {
  flex: 1;
  height: 4px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.level-fill {
  height: 100%;
  width: var(--level);
  background: linear-gradient(90deg, #00ffff, #ff0080);
  border-radius: 2px;
  animation: levelFill 2s ease-out;
}

@keyframes levelFill {
  from { width: 0; }
  to { width: var(--level); }
}

@media (max-width: 768px) {
  .tech-items {
    grid-template-columns: 1fr;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .category-indicator {
    width: 100%;
    height: 1px;
  }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects-section {
  padding: 120px 0;
  background: var(--background-color);
}

.projects-timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.projects-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00ffff, #ff0080);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: rgba(26, 26, 46, 0.8);
  border: 3px solid #00ffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 40px;
}

.marker-icon {
  font-size: 24px;
}

.marker-pulse {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  animation: markerPulse 2s infinite;
}

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

.timeline-content {
  flex: 1;
  max-width: 400px;
}

.project-card {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.project-card:hover::before {
  left: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.project-card.featured {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.3);
}

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

.project-category {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-result {
  background: rgba(255, 0, 128, 0.1);
  color: #ff0080;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.project-card h3 {
  color: var(--default-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.project-card p {
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.project-client {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-info strong {
  color: var(--default-color);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.client-info span {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
}

.project-tech {
  display: flex;
  gap: 8px;
}

.tech-tag {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

.projects-cta {
  text-align: center;
  margin-top: 80px;
}

.cta-content h3 {
  color: var(--default-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(224, 230, 237, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .projects-timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 80px;
  }
  
  .timeline-marker {
    position: absolute;
    left: 0;
    margin: 0;
    width: 60px;
    height: 60px;
  }
  
  .marker-icon {
    font-size: 20px;
  }
  
  .timeline-content {
    max-width: none;
  }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

.faq-visual {
  text-align: center;
}

.tech-animation {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
}

.animation-circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.circle-element {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  animation: counterRotate 20s linear infinite;
  animation-delay: var(--delay);
}

.circle-element:nth-child(1) { top: -20px; left: 50%; transform: translateX(-50%); }
.circle-element:nth-child(2) { top: 50%; right: -20px; transform: translateY(-50%); }
.circle-element:nth-child(3) { bottom: -20px; left: 50%; transform: translateX(-50%); }
.circle-element:nth-child(4) { top: 50%; left: -20px; transform: translateY(-50%); }

.animation-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: centerPulse 3s ease-in-out infinite;
}

.center-icon {
  font-size: 32px;
}

.visual-text {
  color: rgba(224, 230, 237, 0.8);
  font-size: 16px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: rgba(0, 255, 255, 0.3);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(0, 255, 255, 0.05);
}

.accordion-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.accordion-header h3 {
  flex: 1;
  color: var(--default-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.accordion-toggle {
  width: 20px;
  height: 20px;
  position: relative;
}

.toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #00ffff;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.toggle-line:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.active .toggle-line:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  padding: 0 20px 20px 75px;
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin: 0;
}

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

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

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

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tech-animation {
    width: 150px;
    height: 150px;
  }
  
  .animation-center {
    width: 60px;
    height: 60px;
  }
  
  .center-icon {
    font-size: 24px;
  }
  
  .circle-element {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  padding: 120px 0;
  background: var(--background-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.info-card {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.info-card:hover::before {
  left: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.info-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.info-card h3 {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-card p {
  color: #00ffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-label {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form {
  background: rgba(26, 26, 46, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  
}

@media (min-width: 1024px) {
  .contact-form {
    width: 600px;
  }
}


.modern-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(224, 230, 237, 0.5);
}

.input-focus {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff0080);
  transition: width 0.3s ease;
}

.form-input:focus + .input-focus,
.form-select:focus + .input-focus,
.form-textarea:focus + .input-focus {
  width: 100%;
}

.submit-btn {
  position: relative;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-loader,
.btn-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-success {
  font-size: 20px;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

.submit-btn.success .btn-text {
  opacity: 0;
}

.submit-btn.success .btn-success {
  opacity: 1;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Modern Footer
--------------------------------------------------------------*/
.modern-footer {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(10, 10, 15, 0.95) 100%);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .logo-pulse {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.footer-description {
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
  transform: translateY(-3px);
}

.social-icon {
  font-size: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.link-group h4 {
  color: var(--default-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-group a {
  display: block;
  color: rgba(224, 230, 237, 0.8);
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.link-group a:hover {
  color: #00ffff;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-copyright p {
  color: rgba(224, 230, 237, 0.7);
  margin: 0;
  font-size: 14px;
}

.footer-tech {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-tech span {
  color: rgba(224, 230, 237, 0.7);
  font-size: 14px;
}

.tech-badges {
  display: flex;
  gap: 8px;
}

.tech-badge {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Cyber About Section
--------------------------------------------------------------*/
.cyber-about {
  padding: 120px 0;
  background: var(--background-color);
  position: relative;
  overflow: hidden;
}

.about-scanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  animation: scannerMove 3s ease-in-out infinite;
}

.scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
  animation: scannerGlow 2s ease-in-out infinite;
}

.scanner-data {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  opacity: 0.7;
}

.data-stream {
  display: flex;
  gap: 20px;
}

.data-bit {
  animation: dataFlow 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

.about-hud {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hud-panel {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.hud-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  animation: hudScan 4s ease-in-out infinite;
}

.hud-panel.main-panel {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.4);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.panel-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.panel-indicators {
  display: flex;
  gap: 8px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.indicator.online {
  background: #00ff00;
  animation: indicatorPulse 2s ease-in-out infinite;
}

.panel-content {
  padding: 20px;
}

.status-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.status-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.status-info {
  flex: 1;
}

.status-label {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.status-value {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
}

.mission-text {
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mission-stats {
  display: flex;
  gap: 30px;
}

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

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: rgba(224, 230, 237, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.capability-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.capability-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.capability-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.capability-fill {
  height: 100%;
  width: var(--width);
  background: linear-gradient(90deg, #00ffff, #ff0080);
  border-radius: 2px;
  animation: capabilityFill 2s ease-out;
}

.capability-label {
  font-size: 12px;
  color: rgba(224, 230, 237, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes scannerMove {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100vw); }
}

@keyframes scannerGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes dataFlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes hudScan {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes indicatorPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes capabilityFill {
  from { width: 0; }
  to { width: var(--width); }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-about {
    padding: 100px 0;
  }
  
  .about-hud {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .cyber-about {
    padding: 80px 0;
  }
  
  .about-hud {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission-stats {
    gap: 20px;
  }
  
  .hud-panel {
    padding: 20px;
  }
  
  .panel-title {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-about {
    padding: 60px 0;
  }
  
  .about-hud {
    gap: 15px;
  }
  
  .hud-panel {
    padding: 15px;
  }
  
  .panel-title {
    font-size: 12px;
  }
  
  .status-grid {
    gap: 10px;
  }
  
  .status-item {
    padding: 10px;
  }
}

/*--------------------------------------------------------------
# Cyber Features Section
--------------------------------------------------------------*/
.cyber-features {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.features-monitor {
  text-align: center;
  margin-bottom: 80px;
}

.monitor-screen {
  position: relative;
  width: 400px;
  height: 250px;
  margin: 0 auto 30px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  font-family: 'Courier New', monospace;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.screen-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.screen-indicators {
  display: flex;
  gap: 8px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.indicator.active {
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.screen-content {
  padding: 20px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
}

.status-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
}

.status-label {
  color: rgba(224, 230, 237, 0.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-value {
  color: #00ff00;
  font-size: 12px;
  font-weight: 600;
}

.monitor-title {
  color: #00ffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.monitor-subtitle {
  color: rgba(224, 230, 237, 0.7);
  font-size: 14px;
}

.features-interface {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.interface-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(26, 26, 46, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.tab.active {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
}

.tab:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.3);
}

.tab-icon {
  font-size: 24px;
}

.tab-label {
  color: var(--default-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.interface-content {
  position: relative;
}

.content-panel {
  display: none;
}

.content-panel.active {
  display: block;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tech-module {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.tech-module:hover::before {
  left: 100%;
}

.tech-module:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.4);
}

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

.module-icon {
  font-size: 24px;
}

.module-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.module-title {
  color: var(--default-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.module-description {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.module-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-label {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
}

@keyframes radarSweep {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes radarDotPulse {
  0%, 100% { 
    opacity: 0.7; 
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--distance) * 100px)) scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--distance) * 100px)) scale(1.2); 
  }
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-features {
    padding: 100px 0;
  }
  
  .features-monitor {
    margin-bottom: 50px;
  }
  
  .interface-tabs {
    gap: 20px;
  }
  
  .panel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .cyber-features {
    padding: 80px 0;
  }
  
  .radar-screen {
    width: 250px;
    height: 250px;
  }
  
  .interface-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .panel-grid {
    grid-template-columns: 1fr;
  }
  
  .features-interface {
    padding: 0 15px;
  }
  
  .tech-module {
    padding: 20px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-features {
    padding: 60px 0;
  }
  
  .features-monitor {
    margin-bottom: 30px;
  }
  
  .monitor-screen {
    padding: 15px;
  }
  
  .interface-tabs {
    gap: 10px;
  }
  
  .tab {
    padding: 10px 15px;
  }
  
  .tech-module {
    padding: 15px;
  }
  
  .module-title {
    font-size: 14px;
  }
  
  .module-description {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Cyber Projects Section
--------------------------------------------------------------*/
.cyber-projects {
  padding: 120px 0;
  background: var(--background-color);
}

.projects-monitor {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.monitor-screen {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.screen-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.screen-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00ff00;
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.3);
}

.status-dot.active {
  background: #00ff00;
  animation: statusBlink 2s ease-in-out infinite;
}

.screen-content {
  padding: 20px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
}

.mission-log {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.log-entry {
  padding: 10px;
  background: rgba(0, 255, 255, 0.05);
  border-left: 3px solid rgba(0, 255, 255, 0.3);
  border-radius: 5px;
}

.log-time {
  color: rgba(0, 255, 255, 0.7);
  font-size: 10px;
  margin-bottom: 5px;
}

.log-message {
  color: #00ffff;
  font-weight: 600;
  margin-bottom: 3px;
}

.log-details {
  color: rgba(0, 255, 255, 0.8);
  font-size: 11px;
}

.projects-dashboard {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.dashboard-card {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.dashboard-card:hover::before {
  left: 100%;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.4);
}

.dashboard-card.featured {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.4);
}

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

.card-icon {
  font-size: 24px;
}

.card-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.card-title {
  color: var(--default-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-client {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.result-metric {
  font-size: 24px;
  font-weight: 800;
  color: #00ffff;
}

.result-label {
  font-size: 12px;
  color: rgba(224, 230, 237, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-tech {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.tech-chip {
  padding: 4px 8px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 10px;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-quote {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

.projects-command {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.command-center {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.command-title {
  color: #00ffff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.command-subtitle {
  color: rgba(224, 230, 237, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
}

.command-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.command-btn {
  position: relative;
  padding: 15px 30px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  background: transparent;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.command-btn.primary {
  background: linear-gradient(45deg, #00ffff, #ff0080);
  border-color: transparent;
  color: white;
}

.command-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes btnPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-projects {
    padding: 100px 0;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .projects-monitor {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .cyber-projects {
    padding: 80px 0;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .command-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .projects-monitor {
    margin-bottom: 40px;
  }
  
  .mission-card {
    padding: 20px;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  .card-client {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-projects {
    padding: 60px 0;
  }
  
  .projects-monitor {
    margin-bottom: 30px;
  }
  
  .monitor-screen {
    padding: 15px;
  }
  
  .mission-card {
    padding: 15px;
  }
  
  .card-title {
    font-size: 14px;
  }
  
  .card-client {
    font-size: 12px;
  }
  
  .card-quote {
    font-size: 12px;
  }
  
  .command-center {
    padding: 20px;
  }
  
  .command-title {
    font-size: 18px;
  }
  
  .command-subtitle {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Cyber FAQ Section
--------------------------------------------------------------*/
.cyber-faq {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.faq-interface {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.interface-header {
  text-align: center;
  margin-bottom: 40px;
}

.interface-title {
  color: #00ffff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.interface-subtitle {
  color: rgba(224, 230, 237, 0.7);
  font-size: 16px;
}

.faq-console {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  margin-bottom: 40px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.console-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
}

.console-controls {
  display: flex;
  gap: 8px;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.console-body {
  padding: 20px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
}

.console-line {
  margin-bottom: 8px;
}

.prompt {
  color: #00ffff;
  font-weight: 600;
}

.command {
  color: #ffffff;
}

.output {
  color: rgba(0, 255, 255, 0.8);
}

.typing {
  animation: typing 2s infinite;
}

.cursor {
  animation: blink 1s infinite;
}

.faq-commands {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.command-item {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.command-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.command-item:hover::before {
  left: 100%;
}

.command-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.4);
}

.command-item.active {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
}

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

.command-icon {
  font-size: 20px;
}

.command-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.command-item.active .command-status {
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.command-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: lowercase;
  font-family: 'Courier New', monospace;
}

.command-description {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.command-response {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.command-item.active .command-response {
  max-height: 200px;
}

.response-text {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.5;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-faq {
    padding: 100px 0;
  }
  
  .command-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .faq-interface {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .cyber-faq {
    padding: 80px 0;
  }
  
  .command-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-interface {
    margin-bottom: 40px;
  }
  
  .command-item {
    padding: 20px;
  }
  
  .command-title {
    font-size: 14px;
  }
  
  .command-description {
    font-size: 12px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-faq {
    padding: 60px 0;
  }
  
  .faq-interface {
    margin-bottom: 30px;
  }
  
  .command-item {
    padding: 15px;
  }
  
  .command-title {
    font-size: 12px;
  }
  
  .command-description {
    font-size: 11px;
  }
  
  .response-text {
    font-size: 12px;
  }
  
  .faq-console {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Cyber Contact Section
--------------------------------------------------------------*/
.cyber-contact {
  padding: 120px 0;
  background: var(--background-color);
}

.contact-comm {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.comm-interface {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.interface-header {
  text-align: center;
  margin-bottom: 30px;
}

.interface-title {
  color: #00ffff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.interface-subtitle {
  color: rgba(224, 230, 237, 0.7);
  font-size: 14px;
}

.comm-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.channel-item:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.3);
}

.channel-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.channel-info {
  flex: 1;
}

.channel-name {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.channel-address {
  color: var(--default-color);
  font-size: 16px;
  margin-bottom: 8px;
}

.channel-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.3);
}

.status-dot.online {
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.channel-status span {
  color: rgba(224, 230, 237, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-terminal {
  width: 100%;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  font-family: 'Courier New', monospace;
}

.terminal-title {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
}

.terminal-controls {
  display: flex;
  gap: 8px;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.terminal-body {
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-top: none;
  border-radius: 0 0 10px 10px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
}

.terminal-line {
  margin-bottom: 8px;
}

.prompt {
  color: #00ffff;
  font-weight: 600;
}

.command {
  color: #ffffff;
}

.output {
  color: rgba(0, 255, 255, 0.8);
}

.output.success {
  color: #00ff00;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cyber-form {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.field-label {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.field-input {
  position: relative;
}

.cyber-input,
.cyber-select,
.cyber-textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--default-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.cyber-input:focus,
.cyber-select:focus,
.cyber-textarea:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.7);
}

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

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff0080);
  transition: width 0.3s ease;
}

.cyber-input:focus + .input-border,
.cyber-select:focus + .input-border,
.cyber-textarea:focus + .input-border {
  width: 100%;
}

.form-actions {
  text-align: center;
}

.cyber-btn {
  position: relative;
  padding: 15px 40px;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.cyber-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

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

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

.btn-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #00ff00;
  font-size: 18px;
  display: none;
}

.btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-contact {
    padding: 100px 0;
  }
  
  .contact-comm {
    gap: 30px;
  }
  
  .contact-form {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .cyber-contact {
    padding: 80px 0;
  }
  
  .contact-comm {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .comm-channels {
    gap: 15px;
  }
  
  .channel-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-form {
    margin-top: 40px;
  }
  
  .cyber-form {
    padding: 30px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-contact {
    padding: 60px 0;
  }
  
  .contact-comm {
    gap: 20px;
  }
  
  .comm-interface {
    padding: 20px;
  }
  
  .interface-title {
    font-size: 16px;
  }
  
  .interface-subtitle {
    font-size: 12px;
  }
  
  .channel-item {
    padding: 15px;
  }
  
  .contact-form {
    margin-top: 30px;
  }
  
  .cyber-form {
    padding: 20px;
  }
  
  .cyber-btn {
    padding: 12px 30px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Cyber Testimonials Section
---------------------------------------------------------------*/
.cyber-testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.testimonials-interface {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.testimonials-console {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  font-family: 'Courier New', monospace;
}

.console-title {
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
}

.console-controls {
  display: flex;
  gap: 8px;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
}

.console-body {
  padding: 20px;
  color: #00ffff;
  font-size: 12px;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
}

.console-line {
  margin-bottom: 8px;
}

.prompt {
  color: #00ffff;
  font-weight: 600;
}

.command {
  color: #ffffff;
}

.output {
  color: rgba(0, 255, 255, 0.8);
}

.output.success {
  color: #00ff00;
}

.typing {
  animation: typing 2s steps(20) infinite;
}

.cursor {
  animation: blink 1s infinite;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.testimonial-card.featured {
  border-color: rgba(255, 0, 128, 0.3);
  background: rgba(255, 0, 128, 0.05);
}

.testimonial-card.featured:hover {
  border-color: rgba(255, 0, 128, 0.5);
  box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00ffff, #ff0080);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-icon {
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.client-info {
  flex: 1;
}

.client-name {
  color: #00ffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-title {
  color: rgba(224, 230, 237, 0.7);
  font-size: 14px;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 16px;
}

.card-content {
  margin-top: 20px;
}

.testimonial-text {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-tech {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tech-tag {
  padding: 4px 12px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  color: #00ffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .cyber-testimonials {
    padding: 80px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .client-info {
    text-align: center;
  }
  
  .rating-stars {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Navigation Responsive Styles
---------------------------------------------------------------*/
/* Tablet styles */
@media (max-width: 1024px) {
  .floating-nav {
    padding: 15px 20px;
  }
  
  .nav-logo .logo-text {
    font-size: 18px;
  }
  
  .nav-link {
    padding: 8px 12px;
  }
  
  .nav-text {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .floating-nav {
    padding: 10px 15px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-top: 10px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(78, 205, 196, 0.2);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links .nav-link {
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .nav-links .nav-link:hover {
    background: rgba(78, 205, 196, 0.1);
    transform: translateX(5px);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-logo .logo-text {
    font-size: 16px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .floating-nav {
    padding: 8px 10px;
  }
  
  .nav-logo .logo-text {
    font-size: 14px;
  }
  
  .nav-toggle span {
    width: 20px;
    height: 2px;
  }
}

/*--------------------------------------------------------------
# Cyber Details Section
--------------------------------------------------------------*/
.cyber-details {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.details-interface {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.interface-header {
  text-align: center;
  margin-bottom: 60px;
}

.interface-title {
  color: #00ffff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.interface-subtitle {
  color: rgba(224, 230, 237, 0.7);
  font-size: 16px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.detail-card {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.detail-card:hover::before {
  left: 100%;
}

.detail-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.detail-card.active {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.4);
}

.card-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.preview-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.preview-title {
  color: #00ffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1;
  text-align: center;
}

.preview-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.3);
}

.preview-status.online {
  background: #00ff00;
  animation: statusPulse 2s ease-in-out infinite;
}

.card-content {
  padding: 25px;
}

.content-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.content-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.content-title {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-description {
  color: rgba(224, 230, 237, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.content-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.2);
}

.feature-icon {
  font-size: 16px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.feature-text {
  color: rgba(224, 230, 237, 0.9);
  font-size: 13px;
  line-height: 1.4;
}

/* Tablet styles */
@media (max-width: 1024px) {
  .cyber-details {
    padding: 100px 0;
  }
  
  .details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .cyber-details {
    padding: 80px 0;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .card-preview {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .preview-title {
    text-align: center;
  }
  
  .detail-card {
    padding: 20px;
  }
  
  .content-title {
    font-size: 16px;
  }
  
  .content-description {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .cyber-details {
    padding: 60px 0;
  }
  
  .detail-card {
    padding: 15px;
  }
  
  .content-title {
    font-size: 14px;
  }
  
  .content-description {
    font-size: 12px;
  }
  
  .feature-text {
    font-size: 12px;
  }
  
  .interface-title {
    font-size: 18px;
  }
  
  .interface-subtitle {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Section Headers
--------------------------------------------------------------*/
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #00ffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(224, 230, 237, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  padding: 120px 0;
  background: var(--background-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-card {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.about-card:hover::before {
  left: 100%;
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.about-card.main-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-color: rgba(0, 255, 255, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.about-card h3,
.about-card h4 {
  color: var(--default-color);
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 700;
}

.about-card p {
  color: rgba(224, 230, 237, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-stats {
  display: flex;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: rgba(224, 230, 237, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-progress {
  margin-top: 20px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar::before {
  content: '';
  display: block;
  height: 100%;
  width: var(--progress);
  background: linear-gradient(90deg, #00ffff, #ff0080);
  border-radius: 2px;
  animation: progressFill 2s ease-out;
}

@keyframes progressFill {
  from { width: 0; }
  to { width: var(--progress); }
}

@media (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-card.main-card {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-card.main-card {
    grid-column: span 1;
  }
  
  .card-stats {
    gap: 20px;
  }
}

.about {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600; 
  font-size: 16px;
  letter-spacing: 1.2px; 
  padding: 12px 32px; 
  border-radius: 8px; 
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px; 
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

.about .read-more:hover i {
  transform: translateX(6px); 
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.features .icon-box {
  display: flex;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(78, 205, 196, 0.1);
  position: relative;
  overflow: hidden;
}

.features .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.features .icon-box:hover::before {
  left: 100%;
}

.features .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
  border-color: var(--accent-color);
}

.features .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.features .icon-box i {
  font-size: 48px;
  line-height: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
  position: relative;
  z-index: 2;
}

.features .icon-box:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.features .icon-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.feature-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.feature-details .features-item {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 25px;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: all 0.4s ease;
}

.feature-details .features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.feature-details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
}

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.feature-details .features-item ul i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.3));
}

.feature-details .features-item:hover ul i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  box-shadow: var(--shadow-primary);
  box-sizing: content-box;
  padding: 40px 40px 40px 80px;
  margin: 30px 15px;
  min-height: 220px;
  position: relative;
  border-radius: 25px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.testimonials .testimonial-item:hover::before {
  left: 100%;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 15px;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-secondary);
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 8px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 2px;
  font-size: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .stars i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px auto 20px auto;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.success-stories .success-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid rgba(78, 205, 196, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
}

.success-stories .success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.success-stories .success-card:hover::before {
  left: 100%;
}

.success-stories .success-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.success-stories .success-card.featured {
  border-color: var(--heading-color);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 107, 107, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.success-stories .success-card.featured:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
}

.success-stories .success-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-secondary);
  position: relative;
  z-index: 2;
}

.success-stories .success-card:hover .success-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.success-stories .success-icon i {
  font-size: 40px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.success-stories .success-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-stories .success-description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.success-stories .success-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.success-stories .success-author strong {
  display: block;
  font-size: 18px;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.success-stories .success-author span {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
}

.success-stories .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-stories .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--contrast-color);
}

.success-stories .cta-button i {
  transition: transform 0.3s ease;
}

.success-stories .cta-button:hover i {
  transform: translateX(5px);
}



/*--------------------------------------------------------------
# Eco FAQ Section
---------------------------------------------------------------*/
/*--------------------------------------------------------------
# FAQ Section - Redesigned
--------------------------------------------------------------*/
.eco-faq {
  padding: 140px 0;
  background: 
    radial-gradient(ellipse at top left, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(74, 222, 128, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.eco-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(74, 222, 128, 0.03) 50px,
      rgba(74, 222, 128, 0.03) 100px
    ),
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(74, 222, 128, 0.08) 0%, transparent 40%);
  opacity: 1;
  z-index: 1;
  animation: faqPatternMove 20s linear infinite;
}

@keyframes faqPatternMove {
  from { transform: translate(0, 0); }
  to { transform: translate(50px, 50px); }
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(15, 46, 26, 0.7), rgba(26, 77, 46, 0.5));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(74, 222, 128, 0.2);
  border-radius: 25px;
  color: var(--default-color);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-category:hover {
  border-color: rgba(74, 222, 128, 0.5);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
  background: linear-gradient(135deg, rgba(15, 46, 26, 0.9), rgba(26, 77, 46, 0.7));
}

.faq-category.active {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  border-color: var(--medium-green);
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  transform: scale(1.05);
}

.category-icon {
  font-size: 1.2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  display: block;
}

.faq-card {
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 0.85), rgba(26, 77, 46, 0.65)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.05), transparent);
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(74, 222, 128, 0.25);
  border-radius: 28px;
  padding: 36px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(74, 222, 128, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, 
    #22c55e 0%, 
    #4ade80 25%, 
    #86efac 50%, 
    #4ade80 75%, 
    #22c55e 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 25px rgba(74, 222, 128, 0.6);
  animation: faqLineGradient 3s ease infinite;
}

@keyframes faqLineGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.faq-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.faq-card:hover::before {
  transform: scaleX(1);
}

.faq-card:hover::after {
  width: 400px;
  height: 400px;
}

.faq-card:hover {
  border-color: rgba(74, 222, 128, 0.6);
  transform: translateY(-10px) scale(1.03) rotateY(2deg);
  box-shadow: 
    0 25px 70px rgba(34, 197, 94, 0.4),
    0 0 0 3px rgba(74, 222, 128, 0.3),
    inset 0 2px 15px rgba(134, 239, 172, 0.2);
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 0.98), rgba(26, 77, 46, 0.85)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.1));
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.faq-toggle:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.toggle-icon {
  color: var(--contrast-color);
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.open .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.faq-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-categories {
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .faq-category {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-card {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-category {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact .info-item {
  background: linear-gradient(135deg, rgba(15, 46, 26, 0.8), rgba(26, 77, 46, 0.6));
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 2px solid rgba(74, 222, 128, 0.2);
  box-shadow: 0 15px 50px rgba(34, 197, 94, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .info-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(34, 197, 94, 0.3);
  border-color: rgba(74, 222, 128, 0.5);
}

.contact .info-item i {
  font-size: 42px;
  line-height: 0;
  color: var(--medium-green);
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 15px rgba(74, 222, 128, 0.4));
}

.contact .info-item:hover i {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 25px rgba(74, 222, 128, 0.7));
  color: var(--light-green);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: linear-gradient(135deg, rgba(15, 46, 26, 0.85), rgba(26, 77, 46, 0.65));
  backdrop-filter: blur(15px);
  padding: 40px;
  height: 100%;
  border-radius: 28px;
  border: 2px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 15px 50px rgba(34, 197, 94, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .php-email-form:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 25px 70px rgba(34, 197, 94, 0.3);
  border-color: rgba(74, 222, 128, 0.5);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 16px 22px;
  box-shadow: none;
  border-radius: 16px;
  color: var(--default-color);
  background-color: rgba(15, 46, 26, 0.6);
  border: 2px solid rgba(74, 222, 128, 0.25);
  transition: all 0.4s ease;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--medium-green);
  background-color: rgba(15, 46, 26, 0.85);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
  transform: translateY(-3px);
  outline: none;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(167, 243, 167, 0.6);
  font-style: italic;
}

.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: var(--contrast-color);
  border: 0;
  padding: 18px 45px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.contact .php-email-form button[type=submit]::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.6s;
}

.contact .php-email-form button[type=submit]:hover::before {
  left: 100%;
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 45px rgba(34, 197, 94, 0.5);
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  background: var(--background-color);
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: var(--surface-color);
  color: var(--default-color);
  border: none;
  padding: 20px;
  font-family: "Archivo Black", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0; /* Start invisible */
  transform: translateY(30px); /* Slide up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: var(--heading-color);
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: var(--heading-color);
}

/*  New Swiper */
.feature-slider {
  position: relative;
  padding-bottom: 60px;
}

.feature-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.feature-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--heading-color);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-slider .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
}

.feature_example {
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  color: var(--default-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature_example::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.feature_example:hover::before {
  left: 100%;
}

.feature_example:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--heading-color);
}


.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-primary);
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(78, 205, 196, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.feature-content i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.feature-card:hover .feature-content i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 600;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

.read-more::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.5s;
}

.read-more:hover::before {
  left: 100%;
}

.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer div a {
  display: inline-block;
  margin-right: 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

footer div a:last-child {
  margin-right: 0;
}

footer div a:hover {
  color: var(--accent-color);
  background: rgba(78, 205, 196, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}

/* Mobile styles for new elements */
@media (max-width: 768px) {
  .hero-services {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px;
    width: auto;
  }
  
  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-item {
    flex: 1;
    min-width: 120px;
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
  }
  
  /* Removed intro-stats mobile styles */
  
  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-services {
    margin: 10px;
    padding: 15px;
  }
  
  .service-item {
    min-width: 100px;
    padding: 10px 5px;
  }
  
  .service-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
  }
  
  .service-title {
    font-size: 12px;
  }
  
  .service-desc {
    font-size: 10px;
  }
  
  /* Removed intro-stats mobile styles */
}

/*--------------------------------------------------------------
# Eco Benefits Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Benefits Section - Redesigned
--------------------------------------------------------------*/
.eco-benefits { 
  padding: 120px 0;
  background: linear-gradient(180deg, var(--surface-color) 0%, var(--background-color) 100%);
  position: relative;
  overflow: hidden;
}

.eco-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(15, 46, 26, 0.7), rgba(26, 77, 46, 0.5));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(74, 222, 128, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
  border-color: rgba(74, 222, 128, 0.5);
  background: linear-gradient(135deg, rgba(15, 46, 26, 0.9), rgba(26, 77, 46, 0.7));
}

.benefit-icon { 
  font-size: 3.5rem; 
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 5px 15px rgba(74, 222, 128, 0.3));
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 10px 25px rgba(74, 222, 128, 0.5));
}

.benefit-title { 
  font-size: clamp(1.2rem, 2vw, 1.5rem); 
  font-weight: 800; 
  margin-bottom: 16px; 
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
  color: var(--medium-green);
}

.benefit-text { 
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/*--------------------------------------------------------------
# Eco Projects Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Testimonials Section - Creative Redesign
--------------------------------------------------------------*/
.eco-projects { 
  padding: 160px 0;
  background: 
    radial-gradient(ellipse 1300px 900px at 85% 15%, rgba(34, 197, 94, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 1100px 750px at 15% 85%, rgba(74, 222, 128, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 900px 650px at 50% 50%, rgba(22, 163, 74, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--background-color) 0%, rgba(15, 46, 26, 0.65) 100%);
  position: relative;
  overflow: hidden;
}

.eco-projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 45px,
      rgba(74, 222, 128, 0.04) 45px,
      rgba(74, 222, 128, 0.04) 90px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 55px,
      rgba(34, 197, 94, 0.03) 55px,
      rgba(34, 197, 94, 0.03) 110px
    ),
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(74, 222, 128, 0.1) 0%, transparent 45%);
  pointer-events: none;
  animation: testimonialsPattern 18s linear infinite, testimonialsRotate 22s linear infinite;
  z-index: 1;
}

@keyframes testimonialsPattern {
  from { transform: translate(0, 0); }
  50% { transform: translate(60px, 60px); }
  to { transform: translate(0, 0); }
}

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

.eco-projects::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -8%;
  width: 600px;
  height: 600px;
  background: 
    radial-gradient(circle, rgba(74, 222, 128, 0.18) 0%, rgba(34, 197, 94, 0.12) 40%, transparent 70%);
  border-radius: 50%;
  animation: testimonialsFloat 22s ease-in-out infinite, testimonialsPulse 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  filter: blur(35px);
}

@keyframes testimonialsFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% { 
    transform: translate(-90px, -120px) scale(1.25) rotate(120deg);
  }
  66% { 
    transform: translate(50px, -80px) scale(0.9) rotate(240deg);
  }
}

@keyframes testimonialsPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.project-card {
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 0.85), rgba(26, 77, 46, 0.65)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.05), transparent);
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(74, 222, 128, 0.25);
  border-radius: 28px;
  padding: 42px 36px;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(74, 222, 128, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: testimonialReveal 1s ease-out both;
}

.project-card:nth-child(1) { animation-delay: 0.15s; }
.project-card:nth-child(2) { animation-delay: 0.3s; }
.project-card:nth-child(3) { animation-delay: 0.45s; }

@keyframes testimonialReveal {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, 
    #22c55e 0%, 
    #4ade80 25%, 
    #86efac 50%, 
    #4ade80 75%, 
    #22c55e 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 25px rgba(74, 222, 128, 0.6);
  animation: testimonialLineGradient 3s ease infinite;
}

@keyframes testimonialLineGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.project-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover::after {
  width: 500px;
  height: 500px;
}

.project-card:hover {
  transform: translateY(-18px) scale(1.06) rotateY(4deg) rotateZ(1deg);
  box-shadow: 
    0 40px 100px rgba(34, 197, 94, 0.5),
    0 0 0 4px rgba(74, 222, 128, 0.6),
    inset 0 3px 20px rgba(134, 239, 172, 0.3),
    0 0 60px rgba(74, 222, 128, 0.4);
  border-color: rgba(74, 222, 128, 0.7);
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 1), rgba(26, 77, 46, 0.9)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.2), rgba(34, 197, 94, 0.15), rgba(134, 239, 172, 0.1));
}

.project-badge { 
  display: inline-block; 
  background: 
    linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #86efac 100%),
    linear-gradient(45deg, #4ade80, #22c55e);
  background-size: 200% 200%;
  color: var(--contrast-color); 
  padding: 10px 20px; 
  border-radius: 25px; 
  font-size: 0.875rem; 
  margin-bottom: 20px;
  font-weight: 800;
  box-shadow: 
    0 6px 20px rgba(34, 197, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: badgeGradientShift 3s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes badgeGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.project-badge::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;
}

.project-card:hover .project-badge::before {
  left: 100%;
}

.project-card:hover .project-badge {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    0 10px 30px rgba(34, 197, 94, 0.5),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.project-title { 
  color: var(--heading-color); 
  font-weight: 900; 
  margin-bottom: 20px;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  transition: all 0.4s ease;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
  line-height: 1.4;
}

.project-card:hover .project-title {
  color: var(--medium-green);
  text-shadow: 0 0 30px rgba(74, 222, 128, 0.6);
  transform: scale(1.02);
}

.project-text { 
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.05rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/*--------------------------------------------------------------
# Eco About Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About Section - Redesigned
--------------------------------------------------------------*/
.eco-about { 
  padding: 140px 0;
  background: 
    radial-gradient(ellipse at top right, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(74, 222, 128, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.eco-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(74, 222, 128, 0.02) 2px,
      rgba(74, 222, 128, 0.02) 4px
    ),
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: aboutPatternMove 15s linear infinite;
}

@keyframes aboutPatternMove {
  from { transform: translateY(0); }
  to { transform: translateY(100px); }
}

.about-layout { 
  display: grid; 
  grid-template-columns: 1.6fr 1fr; 
  gap: 48px; 
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-title { 
  font-size: clamp(1.8rem, 3vw, 2.5rem); 
  font-weight: 800; 
  color: var(--heading-color); 
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text { 
  color: var(--default-color); 
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-list { 
  color: var(--text-light); 
  padding-left: 20px;
  line-height: 2;
}

.about-list li {
  position: relative;
  padding-left: 8px;
}

.about-list li::marker {
  color: var(--medium-green);
}

.about-card { 
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 0.85), rgba(26, 77, 46, 0.65)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.05), transparent);
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(74, 222, 128, 0.3);
  border-radius: 28px; 
  padding: 52px 36px; 
  text-align: center; 
  box-shadow: 
    0 15px 50px rgba(34, 197, 94, 0.2),
    0 0 0 1px rgba(74, 222, 128, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.about-card:hover::before {
  width: 500px;
  height: 500px;
}

.about-card:hover {
  transform: translateY(-12px) scale(1.04) rotateY(3deg);
  box-shadow: 
    0 30px 80px rgba(34, 197, 94, 0.4),
    0 0 0 3px rgba(74, 222, 128, 0.4),
    inset 0 2px 15px rgba(134, 239, 172, 0.2);
  border-color: rgba(74, 222, 128, 0.6);
}

.about-icon { 
  font-size: 4rem; 
  margin-bottom: 20px;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(74, 222, 128, 0.3));
}

.about-emphasis { 
  color: var(--heading-color); 
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 992px) { 
  .about-layout { grid-template-columns: 1fr; }
  .about-card { margin-top: 32px; }
}

/*--------------------------------------------------------------
# Eco Contact Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact Section - Redesigned
--------------------------------------------------------------*/
.eco-contact { 
  padding: 140px 0;
  background: 
    radial-gradient(ellipse at top left, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(74, 222, 128, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--surface-color) 0%, var(--background-color) 100%);
  position: relative;
  overflow: hidden;
}

.eco-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(74, 222, 128, 0.03) 40px,
      rgba(74, 222, 128, 0.03) 80px
    ),
    radial-gradient(circle at 30% 40%, rgba(34, 197, 94, 0.1) 0%, transparent 40%);
  pointer-events: none;
  animation: contactPatternMove 18s linear infinite;
}

@keyframes contactPatternMove {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(50px, 50px) rotate(5deg); }
}

.contact-layout { 
  display: grid; 
  grid-template-columns: 0.9fr 1.5fr; 
  gap: 48px; 
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info { 
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 0.85), rgba(26, 77, 46, 0.65)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.05), transparent);
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(74, 222, 128, 0.3);
  border-radius: 28px; 
  padding: 36px; 
  box-shadow: 
    0 15px 50px rgba(34, 197, 94, 0.2),
    0 0 0 1px rgba(74, 222, 128, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 
    0 25px 70px rgba(34, 197, 94, 0.3),
    0 0 0 3px rgba(74, 222, 128, 0.3);
  border-color: rgba(74, 222, 128, 0.5);
}

.info-row { 
  display: flex; 
  align-items: flex-start; 
  gap: 16px; 
  color: var(--default-color); 
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(74, 222, 128, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-row:hover {
  background: rgba(74, 222, 128, 0.1);
  transform: translateX(5px);
}

.info-icon { 
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-form { 
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 0.85), rgba(26, 77, 46, 0.65)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.05), transparent);
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(74, 222, 128, 0.3);
  border-radius: 28px; 
  padding: 44px 36px; 
  box-shadow: 
    0 15px 50px rgba(34, 197, 94, 0.2),
    0 0 0 1px rgba(74, 222, 128, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 
    0 25px 70px rgba(34, 197, 94, 0.3),
    0 0 0 3px rgba(74, 222, 128, 0.3);
  border-color: rgba(74, 222, 128, 0.5);
}
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-row label { color: var(--default-color); font-weight: 600; }
.form-row input, .form-row select, .form-row textarea { background: rgba(15, 46, 26, 0.6); color: var(--default-color); border: 2px solid rgba(74, 222, 128, 0.2); border-radius: 12px; padding: 14px; transition: all 0.3s ease; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--medium-green); box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2); transform: translateY(-2px); }
@media (max-width: 992px) { .contact-layout { grid-template-columns: 1fr; } }

/*--------------------------------------------------------------
# Eco Footer
--------------------------------------------------------------*/
.eco-footer { padding: 60px 0 30px; background: #0a1a0f; border-top: 2px solid rgba(74, 222, 128, 0.2); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.footer-brand .brand-name { font-size: 1.25rem; font-weight: 700; color: var(--heading-color); }
.footer-brand .brand-text { color: var(--text-light); margin-top: 6px; }
.footer-links, .footer-legal { display: grid; gap: 8px; }
.footer-links a, .footer-legal a { color: var(--default-color); }
.footer-links a:hover, .footer-legal a:hover { color: var(--nav-hover-color); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; color: var(--text-light); padding-top: 10px; border-top: 1px solid var(--border-light); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

/*--------------------------------------------------------------
# Pricing Tables
--------------------------------------------------------------*/
.pricing-table { width: 100%; border-collapse: collapse; margin: 24px 0; background: var(--surface-color); border-radius: 12px; overflow: hidden; }
.pricing-table th, .pricing-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--border-light); }
.pricing-table th { background: var(--gradient-secondary); color: var(--contrast-color); font-weight: 600; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:first-child { font-weight: 600; color: var(--heading-color); }
.pricing-table .price { font-size: 1.5rem; font-weight: 700; color: var(--accent-color); }
.pricing-table .price-small { font-size: 0.9rem; color: var(--text-light); }

/*--------------------------------------------------------------
# CTA Section - Creative Redesign
--------------------------------------------------------------*/
.cta-section {
  padding: 160px 0;
  background: 
    radial-gradient(ellipse 1500px 1000px at 50% 20%, rgba(34, 197, 94, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 1200px 800px at 50% 80%, rgba(74, 222, 128, 0.15) 0%, transparent 65%),
    radial-gradient(ellipse 1000px 700px at 50% 50%, rgba(22, 163, 74, 0.1) 0%, transparent 70%),
    linear-gradient(135deg, #0a1a0f 0%, #0f2e1a 35%, #1a4d2e 70%, #0f2e1a 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-conic-gradient(from 0deg at 50% 50%, 
      transparent 0deg, 
      rgba(74, 222, 128, 0.04) 1deg, 
      transparent 2deg, 
      rgba(34, 197, 94, 0.03) 3deg, 
      transparent 4deg),
    repeating-radial-gradient(circle at 0 0, 
      transparent 0px, 
      rgba(74, 222, 128, 0.025) 2px, 
      transparent 4px, 
      rgba(34, 197, 94, 0.02) 6px, 
      transparent 8px);
  background-size: 250px 250px, 120px 120px;
  animation: ctaRotate 28s linear infinite, ctaWave 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes ctaRotate {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes ctaWave {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -40px); }
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(34, 197, 94, 0.28) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(74, 222, 128, 0.22) 0%, transparent 55%);
  pointer-events: none;
  animation: ctaPulse 5s ease-in-out infinite, ctaShift 12s ease-in-out infinite;
  z-index: 1;
  filter: blur(1px);
}

@keyframes ctaPulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.75;
    transform: scale(1.08);
  }
}

@keyframes ctaShift {
  0%, 100% { 
    background-position: 30% 40%, 70% 60%;
  }
  50% { 
    background-position: 40% 50%, 60% 50%;
  }
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: ctaContentReveal 1.5s ease-out;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: ctaContentGlow 10s ease-in-out infinite;
  z-index: -1;
  filter: blur(50px);
}

@keyframes ctaContentGlow {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 0.9;
  }
}

@keyframes ctaContentReveal {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.9) rotateX(5deg);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
  }
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 32px;
  background: 
    linear-gradient(135deg, #86efac 0%, #4ade80 30%, #22c55e 60%, #16a34a 100%),
    linear-gradient(45deg, #4ade80, #22c55e);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  animation: ctaTitleGradient 4s ease infinite;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.4));
  text-shadow: 0 0 40px rgba(74, 222, 128, 0.5);
}

.cta-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #4ade80, #22c55e, #4ade80, transparent);
  border-radius: 3px;
  box-shadow: 0 0 25px rgba(74, 222, 128, 0.6);
  animation: ctaLineExpand 1.5s ease-out 0.5s both;
}

@keyframes ctaTitleGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes ctaLineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 150px;
    opacity: 1;
  }
}

.cta-description {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-light);
  margin-bottom: 50px;
  line-height: 1.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-btn, .cta-btn-secondary {
  padding: 22px 45px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.cta-note {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-top: 28px;
  padding: 16px 24px;
  background: rgba(15, 46, 26, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  display: inline-block;
  animation: notePulse 3s ease-in-out infinite;
}

@keyframes notePulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(74, 222, 128, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
  }
}

@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-btn, .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/*--------------------------------------------------------------
# Policy Pages Styles (Cookie, Privacy, Terms)
--------------------------------------------------------------*/
.about.section.light-background {
  background: 
    radial-gradient(ellipse 1200px 800px at 50% 20%, rgba(34, 197, 94, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 1000px 700px at 50% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 60%),
    linear-gradient(135deg, #0a1a0f 0%, #0f2e1a 35%, #1a4d2e 70%, #0f2e1a 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.about.section.light-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(74, 222, 128, 0.02) 60px,
      rgba(74, 222, 128, 0.02) 120px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 70px,
      rgba(34, 197, 94, 0.015) 70px,
      rgba(34, 197, 94, 0.015) 140px
    );
  pointer-events: none;
  animation: policyPatternMove 20s linear infinite;
}

@keyframes policyPatternMove {
  from { transform: translate(0, 0); }
  to { transform: translate(80px, 80px); }
}

.about.section.light-background .section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.about.section.light-background .section-title h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #86efac 0%, #4ade80 30%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -1px;
  filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.3));
}

.about.section.light-background .section-title p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.about.section.light-background .content {
  background: 
    linear-gradient(135deg, rgba(15, 46, 26, 0.9), rgba(26, 77, 46, 0.7)),
    linear-gradient(45deg, rgba(74, 222, 128, 0.05), transparent);
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(74, 222, 128, 0.25);
  border-radius: 28px;
  padding: 50px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(74, 222, 128, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about.section.light-background .content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #22c55e 25%, 
    #4ade80 50%, 
    #22c55e 75%, 
    transparent 100%);
  background-size: 200% 100%;
  animation: policyLineGradient 3s ease infinite;
  border-radius: 28px 28px 0 0;
}

@keyframes policyLineGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.about.section.light-background .content:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 80px rgba(34, 197, 94, 0.4),
    0 0 0 3px rgba(74, 222, 128, 0.3),
    inset 0 2px 10px rgba(134, 239, 172, 0.2);
  border-color: rgba(74, 222, 128, 0.4);
}

.about.section.light-background .content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--heading-color);
  margin: 40px 0 16px 0;
  padding-left: 20px;
  border-left: 4px solid var(--medium-green);
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.about.section.light-background .content h3:first-child {
  margin-top: 0;
}

.about.section.light-background .content h3:hover {
  padding-left: 30px;
  filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.4));
}

.about.section.light-background .content p {
  color: var(--default-color);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about.section.light-background .content p strong {
  color: var(--medium-green);
  font-weight: 700;
}

.about.section.light-background .content ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.about.section.light-background .content ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  color: var(--default-color);
  line-height: 1.8;
  transition: all 0.3s ease;
}

.about.section.light-background .content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
}

.about.section.light-background .content ul li:hover {
  padding-left: 40px;
  color: var(--heading-color);
}

.about.section.light-background .content ul li:hover::before {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.5);
}

.about.section.light-background .content strong {
  color: var(--heading-color);
}

.about.section.light-background .content span {
  color: var(--medium-green);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about.section.light-background {
    padding: 100px 0 60px;
  }
  
  .about.section.light-background .content {
    padding: 30px 24px;
  }
  
  .about.section.light-background .content h3 {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Thanks Page Styles
--------------------------------------------------------------*/
.about.section.light-background .content.text-center {
  text-align: center;
  padding: 80px 50px;
  max-width: 800px;
  margin: 0 auto;
}

.about.section.light-background .content.text-center::before {
  content: '✨';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  animation: thanksIconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(74, 222, 128, 0.4));
}

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

.about.section.light-background .content.text-center p {
  font-size: 1.15rem;
  line-height: 2;
  margin: 30px 0;
}

.about.section.light-background .content.text-center .btn-getstarted {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: var(--contrast-color);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 30px;
  box-shadow: 
    0 10px 30px rgba(34, 197, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(74, 222, 128, 0.3);
  position: relative;
  overflow: hidden;
}

.about.section.light-background .content.text-center .btn-getstarted::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.about.section.light-background .content.text-center .btn-getstarted:hover::before {
  width: 400px;
  height: 400px;
}

.about.section.light-background .content.text-center .btn-getstarted:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(34, 197, 94, 0.6),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
  border-color: rgba(74, 222, 128, 0.6);
}

/*--------------------------------------------------------------
# Policy Pages - Header and Footer Updates
--------------------------------------------------------------*/
#header.header {
  background: linear-gradient(135deg, rgba(10, 26, 15, 0.95), rgba(15, 46, 26, 0.95));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 222, 128, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#footer.footer {
  background: #0a1a0f;
  border-top: 2px solid rgba(74, 222, 128, 0.2);
  padding: 40px 0 20px;
}

.footer h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 12px;
}

.footer p {
  color: var(--text-light);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-links a {
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.footer-links a:hover {
  color: var(--medium-green);
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateY(-2px);
}
