/* Modern Support Section Styles */
.modern-support-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.modern-support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.modern-section-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #1b3ac6, #55e3e3, #1b3ac6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modern-section-subtitle {
  font-size: 1.3rem;
  color: #666;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 60px;
  position: relative;
}

.modern-section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1b3ac6, #55e3e3);
  border-radius: 2px;
}

.modern-support-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.modern-support-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modern-support-card.social-card {
  position: relative;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
}

.social-card .card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.8;
}

.social-card .card-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 58, 198, 0.8), rgba(85, 227, 227, 0.8));
  z-index: -1;
}

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

.modern-support-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1b3ac6, #55e3e3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 35px;
  color: white;
  box-shadow: 0 10px 30px rgba(27, 58, 198, 0.3);
  transition: all 0.3s ease;
}

.modern-support-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(27, 58, 198, 0.4);
}

.modern-support-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.social-card h3 {
  color: white;
}

.modern-support-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #666;
}

.social-card p {
  color: rgba(255, 255, 255, 0.9);
}

.modern-support-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.modern-support-card .feature-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #666;
  font-weight: 500;
}

.social-card .feature-list li {
  color: rgba(255, 255, 255, 0.9);
}

.modern-support-card .feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.1rem;
}

.social-card .feature-list li::before {
  color: #55e3e3;
}

.support-options {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.support-option {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.support-option:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-option h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.support-option p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #666;
  line-height: 1.5;
}

.btn-modern-flashy {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 300% 300%;
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: gradientShift 3s ease infinite;
}

.btn-modern-flashy.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-modern-flashy:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
  animation: gradientShift 1s ease infinite;
}

.btn-modern-flashy .btn-icon {
  transition: transform 0.3s ease;
}

.btn-modern-flashy:hover .btn-icon {
  transform: translateX(3px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .modern-section-title {
    font-size: 2.5rem;
  }
  
  .modern-support-card {
    padding: 30px 25px;
  }
  
  .support-options {
    gap: 20px;
  }
  
  .modern-support-card .card-icon {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }
} 