/* Success Icon Styles */
.success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--main-green), var(--deep-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(89, 195, 164, 0.3);
  animation: successPulse 2s ease-in-out infinite;
}

.success-circle i {
  font-size: 2.5rem;
  color: white;
  animation: checkmark 0.6s ease-in-out;
}

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

@keyframes checkmark {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  50% { transform: scale(0.8) rotate(45deg); opacity: 0.8; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Contact Info Card */
.contact-info-card {
  border: 2px solid rgba(89, 195, 164, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.info-item i {
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
}

/* Section Title */
.section-title {
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 2rem;
}

/* Messenger Button Styles */
.messenger-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.messenger-button a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #006AFF, #0084FF);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 106, 255, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
}

.messenger-button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 106, 255, 0.6);
  color: white;
  text-decoration: none;
}

.messenger-button i {
  font-size: 1.4rem;
}

.messenger-button span {
  font-size: 0.95rem;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .messenger-button {
    bottom: 15px;
    right: 15px;
  }

  .messenger-button a {
    padding: 10px 10px;
  }

  .messenger-button span {
    display: none;
  }

  .messenger-button i {
    font-size: 1.6rem;
  }

  .success-circle {
    width: 80px;
    height: 80px;
  }

  .success-circle i {
    font-size: 2rem;
  }
}
