.discord-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success-color);
  box-shadow: 0 0 10px var(--success-color);
  animation: statusPulse 2s ease-in-out infinite;
}

.status-text {
  font-size: 1.4rem;
  color: var(--success-color);
  font-weight: 600;
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Enhanced Discord Features */
.enhanced-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: featuresSlideIn 1s ease 1.4s both;
}

.enhanced-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.enhanced-feature:hover {
  background: rgba(var(--main-color-rgb), 0.1);
  border-color: rgba(var(--main-color-rgb), 0.3);
  transform: translateY(-3px);
}

.feature-icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(var(--main-color-rgb), 0.2);
  color: var(--main-color);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enhanced-feature:hover .icon-bg {
  opacity: 1;
}

.enhanced-feature:hover .feature-icon-wrapper {
  color: white;
  transform: scale(1.1);
}

.feature-text {
  font-size: 1.4rem;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.enhanced-feature:hover .feature-text {
  color: var(--main-color);
}

.feature-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(var(--main-color-rgb), 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.enhanced-feature:hover .feature-glow {
  opacity: 1;
}

@keyframes featuresSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Discord CTA */
.enhanced-discord-cta {
  animation: ctaSlideIn 1s ease 1.6s both;
}

.enhanced-discord-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.8rem 3rem;
  background: linear-gradient(135deg, var(--discord-color), #4752c4);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
  border: none;
  cursor: pointer;
}

.btn-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4752c4, #3c4aae);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.enhanced-discord-btn:hover .btn-shine-effect {
  left: 100%;
}

.enhanced-discord-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
}

.enhanced-discord-btn:hover .btn-background {
  opacity: 1;
}

.enhanced-discord-btn i {
  font-size: 2.2rem;
  transition: transform 0.3s ease;
}

.enhanced-discord-btn:hover i {
  transform: scale(1.2) rotate(5deg);
}

.btn-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  opacity: 0;
  animation: btnPulse 3s ease-out infinite;
}

@keyframes ctaSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes btnPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

/* Contact Animation Lines */
.contact-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 25px;
  overflow: hidden;
}

.contact-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
  opacity: 0.6;
}

.line-1 {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  animation: lineMove1 4s ease-in-out infinite;
}

.line-2 {
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--main-color), transparent);
  animation: lineMove2 4s ease-in-out infinite 1s;
}

.line-3 {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  animation: lineMove3 4s ease-in-out infinite 2s;
}

.line-4 {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--main-color), transparent);
  animation: lineMove4 4s ease-in-out infinite 3s;
}

@keyframes lineMove1 {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes lineMove2 {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
}

@keyframes lineMove3 {
  0%, 100% { transform: translateX(100%); }
  50% { transform: translateX(-100%); }
}

@keyframes lineMove4 {
  0%, 100% { transform: translateY(100%); }
  50% { transform: translateY(-100%); }
}

/* Enhanced Secondary Contact */
.enhanced-secondary-contact {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  animation: secondaryContactSlide 1s ease 1s both;
}

@keyframes secondaryContactSlide {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Contact Cards */
.enhanced-contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.enhanced-contact-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(var(--main-color-rgb), 0.3);
  transform: translateY(-5px);
}

.card-bg-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.enhanced-contact-card:hover .card-bg-effect {
  opacity: 1;
}

/* Enhanced Card Header */
.enhanced-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.enhanced-contact-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.enhanced-card-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  position: relative;
}

.title-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--main-color);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.enhanced-contact-card:hover .title-underline {
  width: 100%;
}

/* Enhanced Card Features */
.enhanced-card-features .card-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.enhanced-card-features .card-feature:last-child {
  border-bottom: none;
}

.enhanced-card-features .card-feature:hover {
  padding-left: 1rem;
  background: rgba(var(--main-color-rgb), 0.05);
  border-radius: 8px;
}

.feature-bullet {
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.card-feature:hover .feature-bullet {
  background: var(--secondary-color);
  transform: scale(1.5);
}

/* Enhanced Social Grid */
.enhanced-social-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.enhanced-social-item {
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.enhanced-social-item:hover {
  transform: translateY(-8px);
}

.enhanced-social-link {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: white;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.social-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.instagram-bg {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.twitter-bg {
  background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.enhanced-social-link:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.enhanced-social-link:hover .social-bg {
  transform: scale(1.1);
}

.social-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.enhanced-social-link:hover .social-ripple {
  opacity: 1;
}

.social-label {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.enhanced-social-item:hover .social-label {
  color: var(--main-color);
}

.social-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
}

.instagram-glow {
  background: radial-gradient(circle, #e1306c 0%, transparent 70%);
}

.twitter-glow {
  background: radial-gradient(circle, #1da1f2 0%, transparent 70%);
}

.enhanced-social-item:hover .social-glow {
  opacity: 0.3;
}

/* Enhanced Email Section */
.enhanced-email-section {
  background: rgba(var(--main-color-rgb), 0.05);
  border: 1px solid rgba(var(--main-color-rgb), 0.2);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.enhanced-email-section:hover {
  background: rgba(var(--main-color-rgb), 0.1);
  border-color: rgba(var(--main-color-rgb), 0.4);
}

.email-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.email-header i {
  font-size: 2rem;
  color: var(--main-color);
}

.email-text {
  font-size: 1.4rem;
  color: rgba(var(--text-color-rgb), 0.8);
  margin: 0;
}

.enhanced-email-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--main-color);
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.enhanced-email-link:hover {
  background: rgba(var(--main-color-rgb), 0.1);
  border-color: var(--main-color);
  transform: translateY(-2px);
}

.email-copy-icon {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.enhanced-email-link:hover .email-copy-icon {
  transform: scale(1.2);
}

.email-shine {
  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;
}

.enhanced-email-link:hover .email-shine {
  left: 100%;
}

.email-copied-notification {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: var(--success-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 10;
}

.email-copied-notification.show {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.email-copied-notification::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--success-color);
}

/* Enhanced Response Notice */
.enhanced-response-notice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(var(--warning-color), 0.1);
  border: 2px solid rgba(var(--warning-color), 0.3);
  border-radius: 15px;
  padding: 2rem;
  overflow: hidden;
  animation: noticeSlideIn 1s ease 1.8s both;
}

.notice-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(var(--warning-color), 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.enhanced-response-notice:hover .notice-bg {
  opacity: 1;
}

.notice-icon-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--warning-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-icon {
  font-size: 2.4rem;
  color: white;
  animation: noticeIconSpin 2s ease-in-out infinite;
}

.notice-icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--warning-color);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(10px);
  animation: noticeGlow 2s ease-in-out infinite;
}

@keyframes noticeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes noticeIconSpin {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
}

@keyframes noticeGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.enhanced-notice-text {
  font-size: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.time-highlight {
  color: var(--warning-color);
  font-weight: 700;
  background: rgba(var(--warning-color), 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}

.notice-accent {
  color: var(--main-color);
  font-weight: 600;
}

.notice-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--warning-color);
  border-radius: 15px;
  opacity: 0;
  animation: noticePulse 3s ease-out infinite;
}

@keyframes noticePulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.05);
    opacity: 0;
  }
}

/* Contact Stats */
.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  animation: statsSlideIn 1s ease 2s both;
}

.contact-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-stats .stat-item:hover {
  background: rgba(var(--main-color-rgb), 0.1);
  border-color: rgba(var(--main-color-rgb), 0.3);
  transform: translateY(-5px);
}

.contact-stats .stat-icon {
  width: 40px;
  height: 40px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.contact-stats .stat-item:hover .stat-icon {
  transform: scale(1.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 0.5rem;
  font-family: 'Courier New', monospace;
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(var(--text-color-rgb), 0.8);
  font-weight: 500;
}

@keyframes statsSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Contact Elements */
.floating-contact-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(var(--main-color-rgb), 0.1);
  border: 2px solid rgba(var(--main-color-rgb), 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--main-color);
  backdrop-filter: blur(10px);
  animation: floatingElementMove 15s ease-in-out infinite;
}

.element-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.element-2 {
  bottom: 30%;
  right: 20%;
  animation-delay: -5s;
}

.element-3 {
  top: 60%;
  left: 15%;
  animation-delay: -10s;
}

.element-4 {
  bottom: 15%;
  left: 25%;
  animation-delay: -7s;
}

@keyframes floatingElementMove {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
    opacity: 0.8;
  }
}

/* Success Modal */
.contact-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.contact-success-modal.show {
  opacity: 1;
  visibility: visible;
}

.success-modal-content {
  background: var(--second-bg-color);
  border: 2px solid var(--success-color);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.contact-success-modal.show .success-modal-content {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: successBounce 0.6s ease;
}

.success-icon i {
  font-size: 3rem;
  color: white;
}

@keyframes successBounce {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.success-modal-content h3 {
  font-size: 2.4rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.success-modal-content p {
  font-size: 1.6rem;
  color: rgba(var(--text-color-rgb), 0.8);
  margin-bottom: 2rem;
}

.close-success-modal {
  background: var(--success-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-success-modal:hover {
  background: #37a872;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .enhanced-contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .enhanced-features {
    grid-template-columns: 1fr;
  }
  
  .contact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 8rem 4% 6rem;
  }
  
  .enhanced-heading {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }
  
  .enhanced-contact-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .enhanced-social-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .floating-contact-elements {
    display: none;
  }
  
  .contact-particles {
    opacity: 0.5;
  }
  
  .enhanced-primary-contact,
  .enhanced-contact-card {
    padding: 2rem;
  }
  
  .discord-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .discord-icon-main {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 6rem 3% 4rem;
  }
  
  .enhanced-features {
    gap: 1rem;
  }
  
  .enhanced-feature {
    padding: 1rem;
  }
  
  .contact-stats {
    gap: 1rem;
  }
  
  .contact-stats .stat-item {
    padding: 1rem;
  }
  
  .enhanced-discord-btn {
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
  
  .enhanced-social-link {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .floating-element {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .contact-particle,
  .contact-geometric-bg,
  .floating-element,
  .contact-lines {
    display: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .contact {
    background: var(--bg-color);
  }
  
  .enhanced-heading {
    background: var(--text-color);
    -webkit-background-clip: text;
    background-clip: text;
  }
  
  .enhanced-contact-card,
  .enhanced-primary-contact {
    border-width: 3px;
  }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
  .enhanced-contact-card {
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .enhanced-primary-contact {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .enhanced-feature,
  .enhanced-contact-card,
  .enhanced-social-link {
    transition: transform 0.2s ease;
  }
  
  .enhanced-feature:active {
    transform: translateY(-2px) scale(0.98);
  }
  
  .enhanced-contact-card:active {
    transform: translateY(-3px) scale(1.02);
  }
  
  .enhanced-social-link:active {
    transform: scale(0.95);
  }
}
  /* Enhanced Contact Section Styles */

/* Contact Section Base */
.contact {
  position: relative;
  min-height: 100vh;
  padding: 10rem 6% 8rem;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--second-bg-color) 100%);
  overflow: hidden;
}

/* Animated Particles Background */
.contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.contact-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--main-color);
  border-radius: 50%;
  opacity: 0.4;
  animation: contactParticleFloat 20s infinite linear;
}

.contact-particle:nth-child(1) {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.contact-particle:nth-child(2) {
  top: 70%;
  left: 85%;
  animation-delay: -8s;
  animation-duration: 22s;
}

.contact-particle:nth-child(3) {
  top: 30%;
  left: 75%;
  animation-delay: -15s;
  animation-duration: 28s;
}

.contact-particle:nth-child(4) {
  top: 80%;
  left: 25%;
  animation-delay: -12s;
  animation-duration: 24s;
}

.contact-particle:nth-child(5) {
  top: 50%;
  left: 50%;
  animation-delay: -5s;
  animation-duration: 26s;
}

@keyframes contactParticleFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translate(100px, -100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Geometric Background Elements */
.contact-geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-geo-shape {
  position: absolute;
  opacity: 0.08;
  animation: contactGeometricFloat 25s infinite ease-in-out;
}

.contact-geo-circle-1 {
  width: 150px;
  height: 150px;
  border: 3px solid var(--main-color);
  border-radius: 50%;
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.contact-geo-triangle-1 {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(var(--main-color-rgb), 0.4);
  bottom: 25%;
  left: 10%;
  animation-delay: -8s;
}

.contact-geo-square-1 {
  width: 100px;
  height: 100px;
  border: 3px solid var(--secondary-color);
  transform: rotate(45deg);
  top: 70%;
  right: 30%;
  animation-delay: -15s;
}

.contact-geo-circle-2 {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  top: 40%;
  left: 20%;
  animation-delay: -20s;
}

@keyframes contactGeometricFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
  }
}

/* Enhanced Section Header */
.enhanced-section-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.header-decoration {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
  margin: 0 auto;
  border-radius: 2px;
  opacity: 0;
  animation: decorationSlide 1s ease 0.5s both;
}

.top-decoration {
  margin-bottom: 2rem;
}

.bottom-decoration {
  margin-top: 2rem;
  animation-delay: 1s;
}

@keyframes decorationSlide {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Enhanced Heading */
.enhanced-heading {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

.heading-word {
  display: inline-block;
  background: linear-gradient(135deg, var(--text-color), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: headingSlideIn 0.8s ease both;
  position: relative;
}

.heading-word:nth-child(1) {
  animation-delay: 0.2s;
}

.highlight-word {
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation-delay: 0.4s;
  position: relative;
}

.highlight-word::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(var(--main-color-rgb), 0.3) 0%, transparent 70%);
  opacity: 0;
  animation: highlightPulse 2s ease-in-out infinite 1.5s;
  pointer-events: none;
}

.heading-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
  border-radius: 2px;
  animation: underlineGrow 1s ease 0.8s both;
}

@keyframes headingSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

.enhanced-subtitle {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: rgba(var(--text-color-rgb), 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: subtitleFadeIn 1s ease 0.6s both;
  position: relative;
}

.subtitle-highlight {
  color: var(--main-color);
  font-weight: 600;
  position: relative;
}

.subtitle-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--main-color), transparent);
  opacity: 0.7;
}

.subtitle-decoration {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--main-color);
  margin: 1rem auto 0;
  border-radius: 1px;
  opacity: 0;
  animation: decorationAppear 0.8s ease 1.2s both;
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes decorationAppear {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.enhanced-contact-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.enhanced-primary-contact {
  position: relative;
  background: rgba(var(--main-color-rgb), 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(var(--main-color-rgb), 0.2);
  border-radius: 25px;
  padding: 3rem;
  overflow: hidden;
  animation: primaryContactSlide 1s ease 0.8s both;
}

.primary-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.enhanced-primary-contact:hover .primary-contact-bg {
  opacity: 1;
}

.primary-contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(var(--main-color-rgb), 0.1) 0%, transparent 70%);
  opacity: 0.5;
  filter: blur(40px);
  z-index: -1;
  animation: primaryGlowPulse 4s ease-in-out infinite;
}

@keyframes primaryContactSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes primaryGlowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Enhanced Contact Header */
.enhanced-contact-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: headerSlideIn 1s ease 1s both;
}

.discord-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--discord-color), #4752c4);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-icon-main {
  font-size: 4rem;
  color: white;
  z-index: 2;
  animation: iconBounce 2s ease-in-out infinite;
}

.icon-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 3px solid var(--discord-color);
  border-radius: 20px;
  opacity: 0;
  animation: iconPulse 2s ease-out infinite;
}

.icon-pulse-ring.delayed {
  animation-delay: 1s;
}

@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes iconPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Enhanced Primary Title */
.enhanced-primary-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  position: relative;
}

.title-decoration {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--discord-color);
  border-radius: 2px;
  animation: titleDecorationGrow 0.8s ease 1.5s both;
}

@keyframes titleDecorationGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Enhanced Primary Subtitle */
.enhanced-primary-subtitle {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: rgba(var(--text-color-rgb), 0.8);
  margin: 0;
  position: relative;
}

.subtitle-accent {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1.2em;
  animation: accentPulse 1.5s ease-in-out infinite;
}

@keyframes accentPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Enhanced Discord Info Card */
.enhanced-discord-info {
  background: rgba(var(--discord-color), 0.1);
  border: 2px solid rgba(var(--discord-color), 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  animation: discordInfoSlide 1s ease 1.2s both;
}

.enhanced-discord-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: infoCardShine 3s ease-in-out infinite;
}

@keyframes discordInfoSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes infoCardShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.discord-username-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.username-icon {
  width: 40px;
  height: 40px;
  background: var(--discord-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.discord-username {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: 'Courier New', monospace;
}

.username-badge {
  background: var(--success-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.discord-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Mobile Responsiveness - Additional Styles */
@media (max-width: 768px) {
  /* Base contact section adjustments */
  .contact {
    padding: 6rem 4% 4rem;
  }
  
  /* Header adjustments */
  .enhanced-section-header {
    margin-bottom: 4rem;
  }
  
  .enhanced-heading {
    font-size: clamp(2.8rem, 8vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  
  .enhanced-subtitle {
    font-size: 1.4rem;
    max-width: 90%;
  }
  
  /* Contact container layout */
  .enhanced-contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Primary contact card */
  .enhanced-primary-contact {
    padding: 2rem;
    border-radius: 20px;
  }
  
  /* Discord header */
  .enhanced-contact-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .header-text {
    text-align: center;
  }
  
  .title-decoration {
    left: 50%;
    transform: translateX(-50%);
    width: 80% !important;
  }
  
  /* Discord features grid */
  .enhanced-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .enhanced-feature {
    padding: 1.2rem;
  }
  
  /* Discord CTA button */
  .enhanced-discord-btn {
    padding: 1.5rem;
    font-size: 1.6rem;
  }
  
  /* Secondary contact cards */
  .enhanced-contact-card {
    padding: 1.8rem;
  }
  
  .enhanced-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .title-underline {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Social grid */
  .enhanced-social-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .enhanced-social-link {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  /* Email section */
  .enhanced-email-section {
    padding: 1.5rem;
  }
  
  .enhanced-email-link {
    font-size: 1.3rem;
    padding: 1rem;
  }
  
  /* Response notice */
  .enhanced-response-notice {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .notice-icon-wrapper {
    margin: 0 auto;
  }
  
  /* Stats grid */
  .contact-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1.2rem;
  }
  
  /* Hide floating elements on mobile */
  .floating-contact-elements {
    display: none;
  }
  
  /* Success modal */
  .success-modal-content {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  /* Further adjustments for very small screens */
  .contact {
    padding: 5rem 3% 3rem;
  }
  
  .enhanced-heading {
    font-size: 2.5rem;
  }
  
  .enhanced-subtitle {
    font-size: 1.3rem;
  }
  
  /* Discord info card */
  .enhanced-discord-info {
    padding: 1.5rem;
  }
  
  .discord-username-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .username-badge {
    margin-top: 0.5rem;
  }
  
  /* Stats grid */
  .contact-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  /* Email link text */
  .enhanced-email-link span {
    font-size: 1.2rem;
    word-break: break-all;
  }
  
  /* Response notice text */
  .enhanced-notice-text {
    font-size: 1.3rem;
  }
}

/* Specific adjustments for landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .contact {
    padding: 5rem 4% 3rem;
  }
  
  .enhanced-contact-container {
    grid-template-columns: 1fr;
  }
  
  .enhanced-features {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
  /* Increase tap targets */
  .enhanced-feature,
  .enhanced-social-link,
  .enhanced-email-link,
  .enhanced-discord-btn {
    min-height: 44px; /* Apple's recommended minimum tap target size */
  }
  
  /* Ensure text is readable */
  .feature-text,
  .card-feature .feature-text,
  .enhanced-notice-text,
  .email-text {
    font-size: 1.3rem !important;
  }
  
  /* Adjust icon sizes */
  .feature-icon-wrapper,
  .username-icon,
  .stat-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.6rem !important;
  }
  
  .card-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.8rem !important;
  }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  /* Reduce animation intensity */
  .status-dot,
  .icon-pulse-ring,
  .btn-pulse-ring,
  .notice-pulse {
    animation-duration: 3s;
  }
  
  .contact-line {
    animation-duration: 6s;
  }
  
  /* Disable some decorative animations */
  .primary-contact-glow,
  .feature-glow,
  .social-glow,
  .card-bg-effect {
    animation: none !important;
    opacity: 0.3 !important;
  }
}