/* Support page specific fixes for better visibility */

/* New Support Options Section Styles */
.support-options-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.support-options-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(163, 230, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.support-options-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8 0%, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.support-options-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 400;
  opacity: 0.9;
}

/* Support Cards */
.support-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #a3e635);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.support-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
}

/* Card Header */
.support-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.support-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.8rem;
  color: #ffffff;
}

.support-card-live .support-icon-wrapper {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

.support-card-email .support-icon-wrapper {
  background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
  box-shadow: 0 8px 24px rgba(163, 230, 53, 0.4);
}

.support-card-knowledge .support-icon-wrapper {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* Pulse Ring Animation */
.pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #38bdf8;
  border-radius: 20px;
  animation: pulse 2s infinite;
}

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

/* Status Indicator */
.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: blink 2s infinite;
}

.status-dot.email-dot {
  background: #f59e0b;
}

.status-dot.knowledge-dot {
  background: #8b5cf6;
}

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

.status-text {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* Card Body */
.support-card-body {
  margin-bottom: 1.5rem;
}

.support-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.8rem;
}

.support-card-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.support-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* Card Footer */
.support-card-footer {
  margin-top: auto;
}

.support-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Live Chat Button - Blue */
.support-card-live .support-card-btn {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
}

.support-card-live .support-card-btn:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
}

/* Email Button - Green */
.support-card-email .support-card-btn {
  background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
  box-shadow: 0 4px 16px rgba(163, 230, 53, 0.3);
}

.support-card-email .support-card-btn:hover {
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
  box-shadow: 0 8px 20px rgba(163, 230, 53, 0.4);
}

/* Knowledge Base Button - Orange */
.support-card-knowledge .support-card-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.support-card-knowledge .support-card-btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.support-card-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.5s ease;
}

.support-card-btn:hover {
  transform: translateY(-2px);
}

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

.support-card-btn i {
  transition: transform 0.3s ease;
}

.support-card-btn:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .support-options-title {
    font-size: 2rem;
  }
  
  .support-card {
    padding: 1.5rem;
  }
  
  .support-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .support-options-title {
    font-size: 1.8rem;
  }
  
  .support-options-subtitle {
    font-size: 1rem;
  }
  
  .support-card {
    padding: 1.2rem;
  }
  
  .support-card-title {
    font-size: 1.2rem;
  }
  
  .support-card-description {
    font-size: 0.9rem;
  }
  
  .support-card-features {
    gap: 0.3rem;
  }
  
  .feature-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
}

/* Override feature card styles for better contrast */
.features-alt .feature-card-new {
  background: rgba(15, 35, 23, 0.8) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  backdrop-filter: blur(10px);
}

.features-alt .feature-card-new h5 {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.features-alt .feature-card-new p {
  color: #e2e8f0 !important;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.features-alt .feature-card-new a,
.features-alt .feature-card-new span {
  color: #ffffff !important;
  font-weight: 500;
  text-decoration: none;
}

.features-alt .feature-card-new a:hover {
  color: #38bdf8 !important;
  text-decoration: underline;
}

/* Enhanced icon styling */
.features-alt .feature-icon-new {
  color: #38bdf8 !important;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(163, 230, 53, 0.3)) !important;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4) !important;
  border: 2px solid rgba(56, 189, 248, 0.5) !important;
  font-size: 2rem !important;
  width: 70px !important;
  height: 70px !important;
  transition: all 0.3s ease;
}

.features-alt .feature-icon-new:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.6) !important;
}

/* Enhanced Button styling - Modern Design */
.features-alt .feature-card-new .btn-neon {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 25%, #0284c7 50%, #0369a1 75%, #075985 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
  box-shadow: 
    0 4px 16px rgba(56, 189, 248, 0.4),
    0 2px 8px rgba(163, 230, 53, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  border-radius: 50px !important;
  padding: 0.75rem 1.5rem !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer !important;
}

.features-alt .feature-card-new .btn-neon::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  transition: left 0.6s ease !important;
}

.features-alt .feature-card-new .btn-neon:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 
    0 8px 25px rgba(56, 189, 248, 0.6),
    0 4px 12px rgba(163, 230, 53, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 25%, #7dd3fc 50%, #a3e635 75%, #84cc16 100%) !important;
  color: #ffffff !important;
}

.features-alt .feature-card-new .btn-neon:hover::before {
  left: 100% !important;
}

.features-alt .feature-card-new .btn-neon:active {
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 
    0 4px 16px rgba(56, 189, 248, 0.5),
    0 2px 8px rgba(163, 230, 53, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* Card hover effects */
.features-alt .feature-card-new:hover {
  background: rgba(15, 35, 23, 0.9) !important;
  border-color: rgba(56, 189, 248, 0.6) !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.2) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-alt .feature-icon-new {
    font-size: 1.5rem !important;
    width: 50px !important;
    height: 50px !important;
  }
  
  .features-alt .feature-card-new h5 {
    font-size: 1.1rem;
  }
  
  .features-alt .feature-card-new p {
    font-size: 0.9rem;
  }
  
  .features-alt .feature-card-new .btn-neon {
    font-size: 0.8rem !important;
    padding: 0.6rem 1.2rem !important;
  }
} 