/* Section Animations - Removed to prevent navbar area animations */
.section {
  /* Remove opacity and transform animations */
  padding: 6rem 0;
  position: relative; /* Added to ensure proper stacking context */
  z-index: 1; /* Added to ensure sections are above hero background */
  background: var(--bg-primary); /* Use CSS variable for proper light/dark mode support */
}

/* Minimal Animated Backgrounds for Sections */
.section {
  position: relative;
  overflow: hidden;
}

/* Remove animated backgrounds from sections - only hero should have animations */
.section::before {
  display: none; /* Remove animated backgrounds */
}

.services-section::before {
  display: none; /* Remove animated backgrounds */
}

.section:nth-child(even)::before {
  display: none; /* Remove animated backgrounds */
}

/* Light Mode Section Backgrounds */
[data-theme="light"] .section {
  background: var(--surface);
}

[data-theme="light"] .services-section {
  background: var(--surface-elevated);
}

[data-theme="light"] .section:nth-child(even) {
  background: var(--surface-elevated);
  }

[data-theme="light"] .section:nth-child(odd) {
  background: var(--surface);
  }

/* Light Mode Service Cards */
[data-theme="light"] .service-card,
[data-theme="light"] .home-service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.438) 0%, rgba(255, 255, 255, 0.603) 100%);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-sm);
  }

[data-theme="light"] .service-card:hover,
[data-theme="light"] .home-service-card:hover {
  background: var(--surface-hover);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

/* Light Mode Service Icons */
[data-theme="light"] .service-icon {
  background: var(--gradient-primary);
  color: var(--surface);
  box-shadow: var(--shadow-md);
}

[data-theme="light"] .service-card:hover .service-icon {
  box-shadow: var(--shadow-lg);
}

/* Light Mode Process Cards */
[data-theme="light"] .process-card {
  background: var(--surface-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.section-title {
  font-family: var(--font-audiowide), 'Audiowide', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Console Brand Text */
.xbox-text {
  color: var(--xbox-green);
  transition: color 0.3s ease;
}

.ps-text {
  color: var(--ps-blue);
  transition: color 0.3s ease;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section - Clean Glass Morphism Cards */
.services-section {
  background: var(--surface-elevated);
  position: relative;
  padding: 6rem 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 100%;
}

.services-grid.transitioning {
  opacity: 0;
}

/* Service Card Wrapper for Animations */
.service-card-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Sequential Loading Animation - Cascade Effect */
.service-card-wrapper:nth-child(1) { transition-delay: 0.1s; }
.service-card-wrapper:nth-child(2) { transition-delay: 0.15s; }
.service-card-wrapper:nth-child(3) { transition-delay: 0.2s; }
.service-card-wrapper:nth-child(4) { transition-delay: 0.25s; }
.service-card-wrapper:nth-child(5) { transition-delay: 0.3s; }
.service-card-wrapper:nth-child(6) { transition-delay: 0.35s; }
.service-card-wrapper:nth-child(7) { transition-delay: 0.4s; }
.service-card-wrapper:nth-child(8) { transition-delay: 0.45s; }
.service-card-wrapper:nth-child(9) { transition-delay: 0.5s; }
.service-card-wrapper:nth-child(10) { transition-delay: 0.55s; }
.service-card-wrapper:nth-child(11) { transition-delay: 0.6s; }
.service-card-wrapper:nth-child(12) { transition-delay: 0.65s; }

/* Services CTA Button */
.services-cta {
  text-align: center;
  margin-top: 3rem;
}

.services-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  text-decoration: none;
  background: var(--gradient-primary);
  color: var(--surface);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.services-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-primary);
}

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

/* Tablet responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .services-cta {
    margin-top: 2rem;
  }
  
  .services-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}



/* Homepage Service Cards */
.home-service-card {
  background: var(--surface-elevated);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
  min-height: 160px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);

}

.service-card:hover,
.home-service-card:hover {
  transform: translateY(-8px);
  background: var(--surface-hover);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

/* Enhanced Service Card Animations */
.service-card-wrapper:hover {
  transform: scale(1.02);
}

.service-card-wrapper .service-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
}

.service-card-wrapper:hover .service-card {
  transform: translateY(-8px);
  background: var(--surface-hover);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

/* Service Card Slide In Animation */
@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  50% {
    opacity: 0.8;
    transform: translateY(15px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Service Icon Animation Enhancement */
.service-card-wrapper:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Improved Service Card Loading State */
.service-card {
  background: var(--surface-elevated);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
  min-height: 200px;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

/* Badge-ek a jobb felső sarokban */
.service-badges {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 10;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-featured {
  background: rgba(255, 193, 7, 0.9);
  color: #000;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.badge-promotional {
  background: rgba(255, 152, 0, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

/* Kiemelt szolgáltatás erősebb világító effekt */
.service-card.featured-service {
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 193, 7, 0.5);
}

.service-card.featured-service:hover {
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.4), 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 193, 7, 0.7);
  transform: translateY(-2px);
}

.service-card.featured-service::before {
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
}

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

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

.service-icon-container {
  margin-bottom: 1.5rem;
}

.home-service-card .service-icon-container {
  margin-bottom: 1rem;
}

/* Base Service Icon Styles */
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: none; /*Itt az ikon*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.651);
  margin: 0 auto;
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: none;
}

.service-title {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.home-service-card .service-title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 280px;
}

.home-service-card .service-description {
  text-align: center;
  margin: 0 auto;
  max-width: 240px;
}

.service-highlight {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
  margin-top: 1rem;
}

.service-card:hover .service-highlight {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Platform-specific styles */
.service-card[data-platform="xbox"] .service-icon {
  background: none;
  color: var(--xbox-green);
  box-shadow: none;
}

.service-card[data-platform="ps5"] .service-icon {
  background: none;
  color: var(--ps-blue);
  box-shadow: none;
}

.service-card[data-platform="nintendo"] .service-icon {
  background: none;
  color: var(--nintendo-red);
  box-shadow: none;
}

.service-card[data-platform="xbox"]:hover .service-icon {
  color: var(--xbox-green);
  transform: scale(1.1);
}

.service-card[data-platform="ps5"]:hover .service-icon {
  color: var(--ps-blue);
  transform: scale(1.1);
}

.service-card[data-platform="nintendo"]:hover .service-icon {
  color: var(--nintendo-red);
  transform: scale(1.1);
}

.service-card[data-platform="xbox"] .service-highlight {
  background: linear-gradient(135deg, var(--xbox-green) 0%, #0E6A0E 100%);
  border-color: var(--xbox-green);
}

.service-card[data-platform="ps5"] .service-highlight {
  background: linear-gradient(135deg, var(--ps-blue) 0%, #0054B4 100%);
  border-color: var(--ps-blue);
}

.service-card[data-platform="nintendo"] .service-highlight {
  background: linear-gradient(135deg, var(--nintendo-red) 0%, #CC0010 100%);
  border-color: var(--nintendo-red);
}

/* Xbox-specific border and price styles */
.service-card[data-platform="xbox"] {
  border-color: rgba(16, 124, 16, 0.2);
}

.service-card[data-platform="xbox"]:hover {
  border-color: var(--xbox-green);
  box-shadow: 
    0 12px 30px rgba(16, 124, 16, 0.15),
    0 4px 16px rgba(16, 124, 16, 0.1);
}

.service-card[data-platform="xbox"] .service-price {
  color: var(--xbox-green);
  border-top-color: rgba(16, 124, 16, 0.2);
}

.service-card[data-platform="xbox"] .service-price-link {
  color: var(--xbox-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card[data-platform="xbox"] .service-price-link:hover {
  color: #0E6A0E;
}

/* PlayStation-specific border and price styles */
.service-card[data-platform="ps5"] {
  border-color: rgba(0, 111, 205, 0.2);
}

.service-card[data-platform="ps5"]:hover {
  border-color: var(--ps-blue);
  box-shadow: 
    0 12px 30px rgba(0, 111, 205, 0.15),
    0 4px 16px rgba(0, 111, 205, 0.1);
}

.service-card[data-platform="ps5"] .service-price {
  color: var(--ps-blue);
  border-top-color: rgba(0, 111, 205, 0.2);
}

.service-card[data-platform="ps5"] .service-price-link {
  color: var(--ps-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card[data-platform="ps5"] .service-price-link:hover {
  color: #0054B4;
}

/* Nintendo-specific border and price styles */
.service-card[data-platform="nintendo"] {
  border-color: rgba(230, 0, 18, 0.2);
}

.service-card[data-platform="nintendo"]:hover {
  border-color: var(--nintendo-red);
  box-shadow: 
    0 12px 30px rgba(230, 0, 18, 0.15),
    0 4px 16px rgba(230, 0, 18, 0.1);
}

.service-card[data-platform="nintendo"] .service-price {
  color: var(--nintendo-red);
  border-top-color: rgba(230, 0, 18, 0.2);
}

.service-card[data-platform="nintendo"] .service-price-link {
  color: var(--nintendo-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card[data-platform="nintendo"] .service-price-link:hover {
  color: #CC0010;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  background: var(--surface-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: var(--shadow-sm);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.feature:hover::before {
  opacity: 0.05;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(46, 189, 168, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(46, 189, 168, 0.3);
  background: rgba(255, 255, 255, 0.25);
}

/* Base Feature Icon Styles */
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  box-shadow: 
    0 8px 25px rgba(46, 189, 168, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature:hover .feature-icon {
  transform: scale(1.1) rotateY(5deg);
  box-shadow: 
    0 15px 35px rgba(46, 189, 168, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.feature-title {
  font-family: var(--font-audiowide), 'Audiowide', cursive;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-top: 0;
}

/* Expanded state */
.feature.expanded .feature-description {
  max-height: 200px;
  opacity: 1;
  margin-top: 1rem;
}

.feature.expanded {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(46, 189, 168, 0.4);
}

.feature.expanded::before {
  opacity: 0.08;
}

/* Expand indicator */
.feature::after {
  content: '+';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  background: rgba(46, 189, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
  z-index: 3;
}

.feature.expanded::after {
  content: '−';
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}

.feature:hover::after {
  background: rgba(46, 189, 168, 0.2);
  transform: scale(1.1);
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

/* Progress Bar with Xbox Green and PlayStation Blue */
.process-grid::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 4px;
  background: linear-gradient(90deg,
    var(--xbox-green) 0%,
    var(--xbox-green) 20%,
    var(--ps-blue) 40%,
    var(--ps-blue) 60%,
    var(--xbox-green) 80%,
    var(--xbox-green) 100%);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: progressFlow 3s ease-in-out infinite;
  box-shadow: 
    0 0 10px rgba(16, 124, 16, 0.3),
    0 0 20px rgba(0, 111, 205, 0.3);
}
[data-theme="light"] .process-grid::after {
  background: linear-gradient(90deg,
  rgb(83, 202, 83) 0%,
  rgb(83, 202, 83) 20%,
  rgb(118, 191, 255) 40%,
  rgb(118, 191, 255)60%,
  rgb(83, 202, 83) 80%,
  rgb(83, 202, 83) 100%);
}

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

/* Simple Progress Dots */
.process-grid::before {
  display: none;
}

/* Process Steps with Gentle Fade-In */
.process-step {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(15px);
  animation: gentleFadeIn 0.5s ease-out forwards;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.process-step:nth-child(1) { 
  animation-delay: 0.4s; 
}
.process-step:nth-child(2) { 
  animation-delay: 0.7s; 
}
.process-step:nth-child(3) { 
  animation-delay: 1.0s; 
}
.process-step:nth-child(4) { 
  animation-delay: 1.3s; 
}

/* Connection Lines Between Steps */
.process-step:not(:last-child)::after {
  display: none;
}

@keyframes gentleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-card {
  background: var(--surface-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary) 50%, 
    transparent 100%);
  transition: left 0.6s ease;
  border-radius: 20px;
  opacity: 0.1;
}

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

.process-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
  background: var(--surface-hover);
}

/* Base Process Number Styles */
.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  font-size: 1.375rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-md);
}

.process-card:hover .process-number {
  transform: scale(1.15) rotateY(10deg);
  box-shadow: var(--shadow-lg);
}

/* Process Content */
.process-title {
  font-family: var(--font-audiowide), 'Audiowide', cursive;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-card:hover .process-title {
  color: var(--primary);
}

.process-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-card:hover .process-description {
  color: var(--text-primary);
}

/* Progress Indicators */
.process-step::after {
  content: '';
  position: absolute;
  top: 60px;
  right: -1rem;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border: 3px solid var(--surface);
  border-radius: 50%;
  z-index: 4;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

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

.process-card:hover + .process-step::after,
.process-step:hover::after {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  padding-left: 1.5rem;
}

.testimonial-content::before {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  position: absolute;
  top: -0.5rem;
  left: 0;
  opacity: 0.4;
  font-weight: bold;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

/* Base Testimonial Avatar Styles */
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.testimonial:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.testimonial-author-info {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Simple Testimonial Rating Stars */
.testimonial-star {
  color: #fbbf24;
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

/* Ultra Modern CTA Section - Light Theme */
.cta-section-ultra {
  background: #000000; /* Static black background */
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

/* Remove Moving Dots Animation */
.cta-section-ultra::after {
  display: none; /* Remove animated dots */
}

/* CTABorder Lines animations */
.cta-section-ultra .border-top::after,
.cta-section-ultra .border-bottom::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
  var(--xbox-green) 0%,
  var(--xbox-green) 45%,
  var(--ps-blue) 55%,
  var(--ps-blue) 100%);
  background-size: 200% auto;
  animation: gradient-scroll 6s linear infinite;
  z-index: 4;
  pointer-events: none;
}

.cta-section-ultra .border-top {
  top: 0;
}

.cta-section-ultra .border-bottom {
  bottom: 0;
}

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

.cta-ultra-container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Subtle Light Background Elements */
.cta-ultra-bg {
  display: none; /* Remove problematic background */
}

/* Base CTA Particle Styles */
.cta-particle {
  display: none; /* Remove problematic particles */
}

/* Simple CTA Icon */
.cta-ultra-icon .icon {
  font-size: 3.5rem;
  color: var(--primary);
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 4px 20px rgba(46, 189, 168, 0.3));
}

.icon-pulse {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid rgba(46, 189, 168, 0.4);
  border-radius: 50%;
  animation: iconPulse 3s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Simple CTA Buttons */
.cta-ultra-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 120px;
  box-shadow: 
    0 12px 40px rgba(46, 189, 168, 0.25),
    0 4px 16px rgba(46, 189, 168, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-ultra-primary:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 60px rgba(46, 189, 168, 0.35),
    0 8px 30px rgba(46, 189, 168, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-ultra-secondary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 189, 168, 0.2);
  min-width: 200px;
  justify-content: center;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cta-ultra-secondary:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  border-color: rgba(46, 189, 168, 0.4);
  color: var(--primary);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 20px rgba(46, 189, 168, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Simple Guarantee Line */
.cta-ultra-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  background:  #2626260d;
  backdrop-filter: blur(15px);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 12px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cta-ultra-guarantee .icon {
  color: var(--primary);
  font-size: 1.125rem;
}

/* Simple Clean Footer - REMOVED - now handled in footer.css */

/* Content Styling */
.cta-ultra-content {
  position: relative;
  z-index: 5;
}

/* CTA Icon Container */
.cta-ultra-icon {
  position: relative;
  margin: 0 auto 2.5rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(46, 189, 168, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.cta-ultra-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50%;
  pointer-events: none;
}

[data-theme="dark"] .cta-ultra-icon {
  background: rgba(24, 24, 24, 0.08);
  border: 1px solid rgba(80, 80, 80, 0.25);
  color: #72dde0;
  border-radius: 50%;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(75, 75, 75, 0.178),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .cta-ultra-icon::before {
  background: linear-gradient(135deg, rgba(34, 34, 34, 0.418) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.cta-ultra-title {
  font-family: var(--font-audiowide), 'Audiowide', cursive;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-ultra-subtitle {
  font-size: 1.375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Action Buttons */
.cta-ultra-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.cta-ultra-arrow {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  transition: all 0.3s ease;
  margin-left: 1.5rem;
}

.cta-ultra-primary:hover .cta-ultra-arrow {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.cta-ultra-secondary .icon {
  font-size: 1.25rem;
  color: var(--primary);
}

/* ====================================
   SERVICES PAGE STYLES - SIMPLE
   ==================================== */

/* Services Page Container */
.services-page {
  padding: 120px 0 60px;
  background: var(--surface);
  min-height: calc(100vh - 120px);
}

/* Page Header */
.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header h1 {
  font-family: var(--font-audiowide), 'Audiowide', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.services-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Quick Info */
.services-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Category Tabs */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

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

.tab-btn:hover::before {
  left: 100%;
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-btn[data-category="xbox"]:hover {
  background: rgba(16, 124, 16, 0.05);
  border-color: rgba(16, 124, 16, 0.3);
  color: var(--xbox-green);
}

.tab-btn[data-category="ps5"]:hover {
  background: rgba(0, 111, 205, 0.05);
  border-color: rgba(0, 111, 205, 0.3);
  color: var(--ps-blue);
}

.tab-btn[data-category="nintendo"]:hover {
  background: rgba(230, 0, 18, 0.05);
  border-color: rgba(230, 0, 18, 0.3);
  color: var(--nintendo-red);
}

.tab-btn.active[data-category="xbox"] {
  background:rgba(16, 124, 16, 0.719);
  border-color: var(--xbox-green);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 124, 16, 0.103);
}

.tab-btn.active[data-category="ps5"] {
  background: rgba(0, 109, 205, 0.781);
  border-color: var(--ps-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 111, 205, 0.2);
}

.tab-btn.active[data-category="nintendo"] {
  background: rgba(230, 0, 18, 0.781);
  border-color: var(--nintendo-red);
  color: white;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.2);
}

/* Services Table */
.services-table {
  margin: 0 auto 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

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

.services-table.switching {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--surface-elevated);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 280px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.4s ease-out forwards;
}

/* Reset animation for new content */
.services-table:not(.switching) .service-row:nth-child(1) { animation-delay: 0.05s; }
.services-table:not(.switching) .service-row:nth-child(2) { animation-delay: 0.1s; }
.services-table:not(.switching) .service-row:nth-child(3) { animation-delay: 0.15s; }
.services-table:not(.switching) .service-row:nth-child(4) { animation-delay: 0.2s; }
.services-table:not(.switching) .service-row:nth-child(5) { animation-delay: 0.25s; }
.services-table:not(.switching) .service-row:nth-child(6) { animation-delay: 0.3s; }
.services-table:not(.switching) .service-row:nth-child(7) { animation-delay: 0.35s; }
.services-table:not(.switching) .service-row:nth-child(8) { animation-delay: 0.4s; }
.services-table:not(.switching) .service-row:nth-child(9) { animation-delay: 0.45s; }
.services-table:not(.switching) .service-row:nth-child(10) { animation-delay: 0.5s; }
.services-table:not(.switching) .service-row:nth-child(11) { animation-delay: 0.55s; }

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

.service-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.service-icon {
  width: 36px;
  height: 36px;
  background: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
}

.service-details {
  flex: 1;
}

.service-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.service-description {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-price {
  background: rgba(46, 189, 168, 0.1);
  border: 1px solid rgba(46, 189, 168, 0.2);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  text-align: center;
  margin-top: auto;
}

/* Contact CTA */
.services-contact {
  text-align: center;
  background: var(--surface-elevated);
  padding: 3rem 2rem;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.services-contact h3 {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.services-contact p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-header h1 {
    font-size: 2rem;
  }
  
  .services-info {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .services-tabs {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .tab-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .services-table {
    justify-content: center;
    gap: 1rem;
  }
  
  .service-row {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  
  .service-header {
    justify-content: center;
  }
  
  .service-name {
    justify-content: center;
    text-align: center;
  }
  
  .service-description {
    text-align: center;
  }
  
  .service-price {
    margin: 0 auto;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .service-row {
    max-width: 280px;
    padding: 1rem;
  }
  
  .service-description {
    font-size: 0.75rem;
  }
} 

/* Full Screen Sections */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

/*.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}*/

/* Simplified About Us Section */
.about-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-simple-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(46, 189, 168, 0.08);
}

.about-simple-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(46, 189, 168, 0.3);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(46, 189, 168, 0.15);
}

.about-simple-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 25px rgba(46, 189, 168, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about-simple-card:hover .about-simple-icon {
  transform: scale(1.1) rotateY(5deg);
  box-shadow: 
    0 12px 35px rgba(46, 189, 168, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.about-simple-title {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.about-simple-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
} 

/* Subcategory Filters */
.subcategory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
  justify-content: center;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--surface-elevated);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(46, 189, 168, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 189, 168, 0.1), transparent);
  transition: left 0.4s ease;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 189, 168, 0.15);
}

/* Xbox filter button styles - more subtle */
[data-category="xbox"] .filter-btn:hover {
  background: rgba(16, 124, 16, 0.03);
  color: var(--text-primary);
  transform: translateY(-1px);
  border-color: rgba(16, 124, 16, 0.15);
}

[data-category="xbox"] .filter-btn.active {
  background: rgba(16, 124, 16, 0.1);
  color: var(--xbox-green);
  border-color: rgba(16, 124, 16, 0.2);
  box-shadow: 0 2px 8px rgba(16, 124, 16, 0.1);
}

/* PlayStation filter button styles - more subtle */
[data-category="ps5"] .filter-btn:hover {
  background: rgba(0, 111, 205, 0.03);
  color: var(--text-primary);
  transform: translateY(-1px);
  border-color: rgba(0, 111, 205, 0.15);
}

[data-category="ps5"] .filter-btn.active {
  background: rgba(0, 111, 205, 0.1);
  color: var(--ps-blue);
  border-color: rgba(0, 111, 205, 0.2);
  box-shadow: 0 2px 8px rgba(0, 111, 205, 0.1);
}

/* Nintendo filter button styles - more subtle */
[data-category="nintendo"] .filter-btn:hover {
  background: rgba(230, 0, 18, 0.03);
  color: var(--text-primary);
  transform: translateY(-1px);
  border-color: rgba(230, 0, 18, 0.15);
}

[data-category="nintendo"] .filter-btn.active {
  background: rgba(230, 0, 18, 0.1);
  color: var(--nintendo-red);
  border-color: rgba(230, 0, 18, 0.2);
  box-shadow: 0 2px 8px rgba(230, 0, 18, 0.1);
}

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

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: none; /*Itt az ikon*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.651);
  margin: 0 auto;
  flex-shrink: 0;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.service-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.service-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
}

.service-price {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.125rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(46, 189, 168, 0.1);
  text-align: center;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .subcategory-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr); /* Four rows for single column */
    gap: 1rem;
  }

  .service-card {
    padding: 1rem;
  }

  /* Responsive badge styles */
  .service-badges {
    top: 0.5rem;
    right: 0.5rem;
    gap: 0.125rem;
  }

  .badge {
    padding: 0.125rem 0.375rem;
    font-size: 0.625rem;
  }
} 

/* Dark Mode Styles for Sections */

/* Dark Mode Section Backgrounds - All sections now have static black background */
[data-theme="dark"] .section::before {
  display: none; /* Remove all animated backgrounds in dark mode */
}

[data-theme="dark"] .services-section::before {
  display: none; /* Remove animated backgrounds in dark mode */
}

[data-theme="dark"] .section:nth-child(even)::before {
  display: none; /* Remove animated backgrounds in dark mode */
}

/* Dark Mode Services Section */
[data-theme="dark"] .services-section {
  background: var(--bg-services);
}

/* Dark Mode CTA Section */
[data-theme="dark"] .cta-section-ultra {
  background: #000000; /* Static black background */
}

/* Dark Mode Service Cards */
[data-theme="dark"] .home-service-card {
  background: rgba(0, 0, 0, 0.17);
  border: 1px solid rgba(58, 58, 58, 0.274);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.658),
    inset 0 1px 0 rgba(0, 0, 0, 0.158);
}

[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .home-service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Dark Mode Service Icons */
[data-theme="dark"] .service-icon {
  background: none;
  color: var(--text-secondary);
  box-shadow: none;
}

[data-theme="dark"] .service-card[data-platform="xbox"] .service-icon {
  color: var(--xbox-green);
}

/* Dark Mode Badge Styles */
[data-theme="dark"] .badge-featured {
  background: rgba(255, 193, 7, 0.8);
  color: #000;
  border: 1px solid rgba(255, 193, 7, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .badge-promotional {
  background: rgba(255, 152, 0, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 152, 0, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Dark Mode Featured Service Styles */
[data-theme="dark"] .service-card.featured-service {
  box-shadow: 
    0 0 20px rgba(255, 193, 7, 0.2), 
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 193, 7, 0.4);
}

[data-theme="dark"] .service-card.featured-service:hover {
  box-shadow: 
    0 0 30px rgba(255, 193, 7, 0.3), 
    0 8px 24px rgba(0, 0, 0, 0.6),
    0 4px 16px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 193, 7, 0.6);
}

[data-theme="dark"] .service-card.featured-service::before {
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.05), transparent);
}

[data-theme="dark"] .service-card[data-platform="ps5"] .service-icon {
  color: var(--ps-blue);
}

[data-theme="dark"] .service-card[data-platform="nintendo"] .service-icon {
  color: var(--nintendo-red);
}

[data-theme="dark"] .service-card:hover .service-icon {
  box-shadow: none;
}

/* Dark Mode Features */
[data-theme="dark"] .feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .feature::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

[data-theme="dark"] .feature:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
}

/* Dark Mode Process Cards */
[data-theme="dark"] .process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .process-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .process-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

[data-theme="dark"] .process-card:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
}

/* Dark Mode Process Numbers */
[data-theme="dark"] .process-number {
  background: var(--gradient-primary);
  color: var(--surface);
}

/* Dark Mode Testimonials */
[data-theme="dark"] .testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .testimonial:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .cta-ultra-bg {
  background: none;
  border: none;
}

[data-theme="dark"] .cta-ultra-primary {
  background: linear-gradient(135deg, #ffffff28 0%, #bebebe18 100%);
  border: 1px solid rgba(255, 255, 255, 0.445);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .cta-ultra-primary:hover {
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .cta-ultra-secondary {
  background: rgba(0, 0, 0, 0.212);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.425);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.178),
    inset 0 1px 0 rgba(0, 0, 0, 0.479);
}

[data-theme="dark"] .cta-ultra-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .services-page {
  background: linear-gradient(135deg, #000000 0%, #111111 100%);
}


[data-theme="dark"] .service-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dark Mode About Cards */
[data-theme="dark"] .about-simple-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .about-simple-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .about-simple-icon {
  background: var(--gradient-primary);
  color: var(--surface);
}

/* Dark Mode Buttons */
[data-theme="dark"] .btn-primary {
  background: var(--gradient-primary);
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btn-primary:hover {
  background: var(--gradient-primary);
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .btn-tertiary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Dark Mode icons */
[data-theme="dark"] .stat-icon {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .stat-icon:hover {
  color: var(--text-secondary);
}

[data-theme="dark"] .problem-option.selected {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .problem-option.hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .problem-option.active {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .problem-option.selected.hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow-lg);
}

/* Dark Mode Platform-specific styles */
[data-theme="dark"] .service-card[data-platform="xbox"] {
  border-color: rgba(16, 124, 16, 0.3);
}

[data-theme="dark"] .service-card[data-platform="xbox"]:hover {
  border-color: var(--xbox-green);
  box-shadow: 
    0 12px 30px rgba(16, 124, 16, 0.25),
    0 4px 16px rgba(16, 124, 16, 0.15);
}

[data-theme="dark"] .service-card[data-platform="xbox"] .service-price {
  color: var(--xbox-green);
  border-top-color: rgba(16, 124, 16, 0.3);
}

[data-theme="dark"] .service-card[data-platform="xbox"] .service-price-link {
  color: var(--xbox-green);
}

[data-theme="dark"] .service-card[data-platform="xbox"] .service-price-link:hover {
  color: #2D9D1D;
}

[data-theme="dark"] .service-card[data-platform="ps5"] {
  border-color: rgba(0, 111, 205, 0.3);
}

[data-theme="dark"] .service-card[data-platform="ps5"]:hover {
  border-color: var(--ps-blue);
  box-shadow: 
    0 12px 30px rgba(0, 111, 205, 0.25),
    0 4px 16px rgba(0, 111, 205, 0.15);
}

[data-theme="dark"] .service-card[data-platform="ps5"] .service-price {
  color: var(--ps-blue);
  border-top-color: rgba(0, 111, 205, 0.3);
}

[data-theme="dark"] .service-card[data-platform="ps5"] .service-price-link {
  color: var(--ps-blue);
}

[data-theme="dark"] .service-card[data-platform="ps5"] .service-price-link:hover {
  color: #2D8FE5;
}

[data-theme="dark"] .service-card[data-platform="nintendo"] {
  border-color: rgba(230, 0, 18, 0.3);
}

[data-theme="dark"] .service-card[data-platform="nintendo"]:hover {
  border-color: var(--nintendo-red);
  box-shadow: 
    0 12px 30px rgba(230, 0, 18, 0.25),
    0 4px 16px rgba(230, 0, 18, 0.15);
}

[data-theme="dark"] .service-card[data-platform="nintendo"] .service-price {
  color: var(--nintendo-red);
  border-top-color: rgba(230, 0, 18, 0.3);
}

[data-theme="dark"] .service-card[data-platform="nintendo"] .service-price-link {
  color: var(--nintendo-red);
}

[data-theme="dark"] .service-card[data-platform="nintendo"] .service-price-link:hover {
  color: #FF0000;
} 

/* Repair Request Form Section */
.repair-request-section {
  margin: 4rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.repair-request-header {
  text-align: center;
  margin-bottom: 2rem;
}

.repair-request-header h2 {
  font-family: var(--font-audiowide), 'Audiowide', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.repair-request-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.repair-request-form {
  width: 100%;
}

.repair-request-form .form-container {
  background: linear-gradient(135deg, 
    rgba(52, 160, 202, 0.123) 0%, 
    rgba(248, 250, 252, 0.11) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 110, 255, 0.089);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 500px;
  position: relative;
  z-index: 10;
}

[data-theme="dark"] .repair-request-form .form-container {
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.452) 0%, 
    rgba(17, 17, 17, 0.082) 100%);
  border: 1px solid rgba(255, 255, 255, 0.123);
  box-shadow: 0 8px 32px rgba(92, 92, 92, 0.116);
}

/* Responsive Design for Repair Request Form */
@media (max-width: 768px) {
  .repair-request-section {
    margin: 2rem 0;
  }
  
  .repair-request-header h2 {
    font-size: 1.5rem;
  }
  
  .repair-request-header p {
    font-size: 1rem;
  }
  
  .repair-request-form .form-container {
    padding: 1.25rem;
    border-radius: 12px;
  }
}

/* Choice Buttons Styles */
.choice-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.choice-button {
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, 
    rgba(52, 160, 202, 0.1) 0%, 
    rgba(248, 250, 252, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 110, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  position: relative;
  z-index: 20;
}

.choice-button:hover {
  background: linear-gradient(135deg, 
    rgba(52, 160, 202, 0.15) 0%, 
    rgba(248, 250, 252, 0.1) 100%);
  border-color: rgba(0, 110, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 110, 255, 0.15);
}

.choice-button:active {
  transform: translateY(0);
}

.choice-button svg {
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.choice-button:hover svg {
  transform: scale(1.1);
}

.choice-button-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.choice-button-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.choice-button-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.choice-button .chevron-right {
  color: var(--text-secondary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.choice-button:hover .chevron-right {
  color: var(--primary-color);
  transform: translateX(4px);
}

[data-theme="dark"] .choice-button {
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.3) 0%, 
    rgba(17, 17, 17, 0.1) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .choice-button:hover {
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.4) 0%, 
    rgba(17, 17, 17, 0.2) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Simple Message Form Styles */
.message-textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 110, 255, 0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  resize: vertical;
  transition: all 0.3s ease;
}

.message-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.1);
}

[data-theme="dark"] .message-textarea {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .message-textarea:focus {
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

/* Responsive Design for Choice Buttons */
@media (max-width: 768px) {
  .choice-button {
    padding: 1.25rem;
    font-size: 1rem;
    gap: 0.75rem;
  }
  
  .message-textarea {
    min-height: 100px;
    padding: 0.75rem;
  }
} 

/* ÁSZF Page Styles */
.aszf-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.aszf-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.aszf-hero .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aszf-hero .hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.aszf-content {
  max-width: 900px;
  margin: 0 auto;
}

.aszf-card {
  margin-bottom: 2rem;
}

.aszf-section {
  margin-bottom: 2.5rem;
}

.aszf-section:last-child {
  margin-bottom: 0;
}

.aszf-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.aszf-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.aszf-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.aszf-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.aszf-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.aszf-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.company-info {
  background: var(--surface-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.company-info h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.company-info ul {
  list-style: none;
  padding: 0;
}

.company-info li {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}

.service-list {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.service-item {
  background: var(--surface-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.2s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-item h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Privacy Page Styles */
.privacy-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.privacy-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.privacy-hero .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-hero .hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-card {
  margin-bottom: 2rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.privacy-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.privacy-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.privacy-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.privacy-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.authority-info,
.contact-info {
  background: var(--surface-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.authority-info h3,
.contact-info h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.authority-info ul,
.contact-info ul {
  list-style: none;
  padding: 0;
}

.authority-info li,
.contact-info li {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .aszf-page,
  .privacy-page {
    padding-top: 5rem;
  }
  
  .aszf-hero .hero-content h1,
  .privacy-hero .hero-content h1 {
    font-size: 2rem;
  }
  
  .aszf-hero .hero-content p,
  .privacy-hero .hero-content p {
    font-size: 1rem;
  }
  
  .aszf-content,
  .privacy-content {
    padding: 0 1rem;
  }
  
  .aszf-section h2,
  .privacy-section h2 {
    font-size: 1.3rem;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
  
  .company-info,
  .authority-info,
  .contact-info {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .aszf-hero .hero-content h1,
  .privacy-hero .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .aszf-section h2,
  .privacy-section h2 {
    font-size: 1.2rem;
  }
  
  .service-item {
    padding: 1rem;
  }
} 






















/* About Page Styles */
.about-page {
  min-height: 100vh;
  padding: 160px 0 60px; /* Increased top padding to account for navbar height and sticky state */
  background: var(--bg-about);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

/* Beautiful Background with Minimal Moving Elements */
.about-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Subtle gradient overlay */
.background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(46, 189, 168, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(29, 209, 161, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(108, 233, 233, 0.04) 0%, transparent 70%);
  animation: gradientShift 20s ease-in-out infinite;
}

/* Floating geometric shapes - minimal movement */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46, 189, 168, 0.1), rgba(108, 233, 233, 0.1));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 189, 168, 0.2);
  opacity: 0.6;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation: float1 25s ease-in-out infinite;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 25%;
  right: 15%;
  animation: float2 30s ease-in-out infinite;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation: float3 28s ease-in-out infinite;
}

.shape-4 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: 25%;
  animation: float4 22s ease-in-out infinite;
}

.shape-5 {
  width: 90px;
  height: 90px;
  top: 60%;
  left: 50%;
  animation: float5 35s ease-in-out infinite;
}

/* Subtle grid pattern */
.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(46, 189, 168, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 189, 168, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: gridMove 40s linear infinite;
}

/* Ambient light effects */
.ambient-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.light {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 189, 168, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  -webkit-filter: blur(20px);
}

.light-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation: lightPulse1 15s ease-in-out infinite;
}

.light-2 {
  width: 250px;
  height: 250px;
  bottom: 15%;
  right: 10%;
  animation: lightPulse2 18s ease-in-out infinite;
}

.light-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 60%;
  animation: lightPulse3 20s ease-in-out infinite;
}

/* Dark mode adjustments for background */
[data-theme="dark"] .background-gradient {
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.015) 0%, transparent 70%);
}

[data-theme="dark"] .shape {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .grid-pattern {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

[data-theme="dark"] .light {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

/* Background animations - minimal and smooth */
@keyframes gradientShift {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% { 
    transform: scale(1.05) rotate(1deg);
    opacity: 0.8;
  }
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -15px) rotate(5deg); }
  50% { transform: translate(-10px, 10px) rotate(-3deg); }
  75% { transform: translate(15px, -5px) rotate(2deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-15px, 20px) rotate(-5deg); }
  66% { transform: translate(10px, -10px) rotate(3deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-20px, -10px) rotate(-2deg); }
  50% { transform: translate(15px, 15px) rotate(4deg); }
  75% { transform: translate(-5px, -20px) rotate(-1deg); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(25px, -15px) rotate(6deg); }
}

@keyframes float5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-30px, 10px) rotate(-4deg); }
  40% { transform: translate(20px, -25px) rotate(3deg); }
  60% { transform: translate(-15px, 20px) rotate(-2deg); }
  80% { transform: translate(25px, -10px) rotate(5deg); }
}

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

@keyframes lightPulse1 {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes lightPulse2 {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.5;
  }
  50% { 
    transform: scale(1.15);
    opacity: 0.7;
  }
}

@keyframes lightPulse3 {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.4;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.6;
  }
}

/* Performance optimizations and accessibility */
@media (prefers-reduced-motion: reduce) {
  .background-gradient,
  .shape,
  .grid-pattern,
  .light {
    animation: none !important;
  }
  
  .shape {
    opacity: 0.3;
  }
  
  .light {
    opacity: 0.2;
  }
}

/* Mobile optimizations - reduced animations for better performance */
@media (max-width: 768px) {
  .about-background {
    position: absolute;
  }
  
  .shape {
    display: none;
  }
  
  .light {
    display: none;
  }
  
  .grid-pattern {
    background-size: 30px 30px;
    animation: gridMove 60s linear infinite;
  }
  
  .background-gradient {
    animation: gradientShift 30s ease-in-out infinite;
  }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
  .shape-4,
  .shape-5 {
    display: none;
  }
  
  .light-3 {
    display: none;
  }
  
  .grid-pattern {
    background-size: 40px 40px;
    animation: gridMove 50s linear infinite;
  }
}

/* High-performance mode for devices with limited resources */
@media (max-width: 480px) {
  .about-background {
    display: none;
  }
  
  .about-page {
    background: var(--bg-about);
  }
}

/* Ensure smooth scrolling and hardware acceleration */
.about-background {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.shape,
.light {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Home page about section styles */
.about-content-home {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.about-highlight {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, 
    rgba(62, 170, 233, 0.05) 0%,
    rgba(68, 128, 207, 0.05) 100%
  );
  border-radius: 1rem;
  border: 1px solid rgba(46, 189, 168, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.about-highlight p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* Mobile styles for home about section */
@media (max-width: 768px) {
  .about-content-home {
    padding: 1rem 0;
  }

  .about-text {
    font-size: 1rem;
    text-align: center;
  }

  .about-highlight {
    margin: 2rem 0;
    padding: 1.5rem;
  }

  .about-highlight p {
    font-size: 1.125rem;
  }
}

/* Ensure the page is visible and loading properly */
.about-page {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  background: transparent !important; /* Remove old background to let new one show */
}

/* Remove old background patterns - replaced by new beautiful background */
/* .about-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(46, 189, 168, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(29, 209, 161, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
} */

/* Page Header - Ensure it's visible */
.about-header {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 2rem; /* Increased safety margin */
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.about-header h1 {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  opacity: 1 !important;
  visibility: visible !important;
}

.about-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Stats Section - Enhanced hover effects */
.about-stats {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  visibility: visible !important;
  display: grid !important;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 189, 168, 0.1), transparent);
  transition: left 0.6s ease;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--surface-hover);
  border-color: var(--primary);
  box-shadow: 
    0 20px 40px rgba(46, 189, 168, 0.15),
    0 8px 20px rgba(46, 189, 168, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

/* Dark Mode Stat Items - Enhanced */
[data-theme="dark"] .stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 12px 25px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  overflow: hidden;
}

.stat-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.15) rotateY(10deg);
  box-shadow: 
    0 12px 30px rgba(46, 189, 168, 0.3),
    0 4px 12px rgba(46, 189, 168, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-item:hover .stat-icon::before {
  width: 80px;
  height: 80px;
}

.stat-value {
  display: block;
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-value {
  transform: scale(1.05);
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--text-primary);
  font-weight: 600;
}

/* Content Blocks - Enhanced hover effects */
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.content-block {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

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

.content-block:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--surface-hover);
  border-color: var(--primary);
  box-shadow: 
    0 25px 60px rgba(46, 189, 168, 0.15),
    0 10px 30px rgba(46, 189, 168, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.content-block:hover::before {
  transform: scaleX(1);
}

/* Dark Mode Content Blocks - Enhanced */
[data-theme="dark"] .content-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .content-block:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.block-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: white;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 25px rgba(46, 189, 168, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

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

.content-block:hover .block-icon {
  transform: scale(1.15) rotateY(15deg);
  box-shadow: 
    0 20px 40px rgba(46, 189, 168, 0.4),
    0 8px 20px rgba(46, 189, 168, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.content-block:hover .block-icon::after {
  left: 100%;
}

.content-block h2 {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.content-block:hover h2 {
  color: var(--primary);
  transform: translateX(5px);
}

.content-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.content-block:hover p {
  color: var(--text-primary);
}

/* Service Highlights - Enhanced hover effects */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 5rem 0;
  position: relative;
  z-index: 1;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.highlight-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(46, 189, 168, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.highlight-item:hover {
  transform: translateY(-6px) scale(1.03);
  background: var(--surface-hover);
  border-color: var(--primary);
  box-shadow: 
    0 20px 40px rgba(46, 189, 168, 0.15),
    0 8px 20px rgba(46, 189, 168, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.highlight-item:hover::before {
  opacity: 1;
}

/* Dark Mode Highlight Items - Enhanced */
[data-theme="dark"] .highlight-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .highlight-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 12px 25px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.highlight-item svg {
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.highlight-item:hover svg {
  transform: scale(1.2) rotateY(10deg);
  filter: drop-shadow(0 4px 8px rgba(46, 189, 168, 0.3));
}

.highlight-item h3 {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.highlight-item:hover h3 {
  color: var(--primary);
  transform: translateY(-2px);
}

.highlight-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.highlight-item:hover p {
  color: var(--text-primary);
}

.highlight-box {
  background: rgba(46, 189, 168, 0.1);
  border: 1px solid rgba(46, 189, 168, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 2rem;
}

/* CTA Section - Enhanced hover effects */
.about-cta {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  box-shadow: var(--glass-shadow);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(46, 189, 168, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-cta:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 60px rgba(46, 189, 168, 0.1),
    0 10px 30px rgba(46, 189, 168, 0.05);
}

.about-cta:hover::before {
  opacity: 1;
}

/* Dark Mode CTA - Enhanced */
[data-theme="dark"] .about-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-cta h2 {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.about-cta:hover h2 {
  color: var(--primary);
  transform: scale(1.02);
}

.about-cta p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.about-cta:hover p {
  color: var(--text-primary);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Enhanced button hover effects */
.btn {
  min-width: 200px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(46, 189, 168, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: rgba(46, 189, 168, 0.1);
  border-color: rgba(46, 189, 168, 0.3);
  transform: translateY(-3px) scale(1.02);
  color: var(--primary);
  box-shadow: 
    0 12px 25px rgba(46, 189, 168, 0.2),
    0 4px 10px rgba(46, 189, 168, 0.1);
}

/* Story Timeline */
.story-timeline {
  margin: 5rem 0;
  position: relative;
  z-index: 1;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.timeline-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  gap: 1rem;
}

.timeline-navigation::before {
  display: none; /* Remove horizontal line completely */
}

.timeline-point {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
  flex: 1;
}

.timeline-point.active {
  color: var(--primary);
  transform: translateY(-2px);
}

.timeline-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-width: 100px;
  text-align: center;
  gap: 0.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

.timeline-point:hover .timeline-indicator {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 189, 168, 0.15);
  border-color: rgba(46, 189, 168, 0.3);
}

.timeline-point:hover .timeline-indicator::before {
  left: 100%;
}

[data-theme="dark"] .timeline-indicator {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
}

.timeline-point.active .timeline-indicator {
  background: var(--gradient-primary);
  border-color: rgba(46, 189, 168, 0.8);
  color: #ffffff;
  box-shadow: 
    0 8px 25px rgba(46, 189, 168, 0.3),
    0 4px 12px rgba(46, 189, 168, 0.2);
  transform: translateY(-3px);
}

[data-theme="dark"] .timeline-point.active .timeline-indicator {
  background: var(--gradient-primary);
  border-color: rgba(46, 189, 168, 0.8);
  color: #ffffff;
  box-shadow: 
    0 8px 25px rgba(46, 189, 168, 0.3),
    0 4px 12px rgba(46, 189, 168, 0.2);
}

.timeline-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-point:hover .timeline-icon {
  transform: scale(1.1) rotateY(10deg);
}

.timeline-point.active .timeline-icon {
  color: #ffffff;
  transform: scale(1.1);
}

[data-theme="dark"] .timeline-point.active .timeline-icon {
  color: #000000;
}

.timeline-label {
  font-size: 0.7rem;
  color: inherit;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  opacity: 0.7;
}

.timeline-point:hover .timeline-label {
  opacity: 1;
  font-weight: 600;
}

.timeline-point.active .timeline-label {
  color: #000000;
  font-weight: 600;
  opacity: 1;
}

[data-theme="dark"] .timeline-point.active .timeline-label {
  color: #000000;
  font-weight: 600;
  opacity: 1;
}

.timeline-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-text h2 {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.timeline-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.125rem;
}

/* Timeline Image - Enhanced hover effects */
.timeline-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(46, 189, 168, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 16 / 9;
}

.timeline-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(46, 189, 168, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.timeline-img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-image:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 12px 30px rgba(46, 189, 168, 0.15);
}

.timeline-image:hover .timeline-img {
  transform: scale(1.08);
}

.timeline-image:hover::before {
  opacity: 1;
}

/* Personal Quote - Enhanced hover effects */
.personal-quote {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  margin: 5rem auto;
  max-width: 900px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.personal-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(46, 189, 168, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.personal-quote:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 60px rgba(46, 189, 168, 0.1),
    0 10px 30px rgba(46, 189, 168, 0.05);
}

.personal-quote:hover::before {
  opacity: 1;
}

.quote-icon {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--surface);
  background: var(--gradient-primary);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.personal-quote:hover .quote-icon {
  transform: translateX(-50%) scale(1.1) rotateY(10deg);
  box-shadow: 
    0 15px 35px rgba(46, 189, 168, 0.3),
    0 6px 15px rgba(46, 189, 168, 0.2);
}

.personal-quote blockquote {
  font-size: 1.5rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin: 2rem 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.personal-quote:hover blockquote {
  color: var(--primary);
}

.quote-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.author-name {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.personal-quote:hover .author-name {
  color: var(--primary);
  transform: translateX(5px);
}

.author-title {
  color: var(--primary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.personal-quote:hover .author-title {
  color: var(--text-primary);
}

/* Work Gallery */
.work-gallery {
  margin: 5rem 0;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.work-gallery h2 {
  font-family: var(--font-orbitron), 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
}

.gallery-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-img {
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 20px rgba(46, 189, 168, 0.15);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Modal */
.modal-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  max-width: 1200px;
  max-height: 800px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  animation: scaleIn 0.3s ease-out forwards;
}

.modal-img {
  transition: transform 0.3s ease;
}

/* Responsive Design */
@media (min-width: 1400px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-stats,
  .service-highlights,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-text {
    order: 2;
  }

  .timeline-image {
    order: 1;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 140px 0 40px; /* Increased mobile top padding */
  }

  .about-header {
    margin-bottom: 3rem;
    max-width: 100%;
  }

  .about-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .about-stats,
  .service-highlights,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
  }

  .timeline-navigation {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    margin-left: 0;
    max-width: 100%;
  }

  .timeline-navigation::before {
    display: none; /* Already removed, but keeping for consistency */
  }

  .timeline-point {
    width: 100%;
  }

  .timeline-indicator {
    min-width: auto;
    width: 100%;
    padding: 1rem 1.25rem; /* Slightly more padding on mobile for better touch targets */
  }

  .timeline-icon {
    width: 18px; /* Slightly smaller on mobile */
    height: 18px;
  }

  .personal-quote {
    padding: 3rem 1.5rem;
    max-width: 100%;
  }

  .personal-quote blockquote {
    font-size: 1.25rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .timeline-image {
    aspect-ratio: 16 / 12;
  }

  .gallery-image-container {
    aspect-ratio: 16 / 12;
  }

  .about-cta {
    max-width: 100%;
    padding: 3rem 1.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}

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