/* Contact Card Styles */
.contact-card {
  background-color: #1a1a1a;
  color: white;
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.contact-card-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact-card-item {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.contact-card-icon {
  color: #ffc107;
  font-size: 1.8rem;
  margin-right: 1.5rem;
  width: 40px;
  text-align: center;
}

.contact-card-text {
  font-size: 1.2rem;
}

.contact-card-text a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card-text a:hover {
  color: #ffc107;
}

.contact-card-divider {
  height: 1px;
  width: 100%;
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  margin: 1.5rem 0;
}

.contact-card-bubble {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-color: #ffc107;
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
}

.contact-card-bubble::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: #ffc107;
  border-radius: 50%;
  opacity: 0.6;
}

.contact-card-bubble::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -80px;
  width: 70px;
  height: 70px;
  background-color: #ffc107;
  border-radius: 50%;
  opacity: 0.4;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid #ffc107;
  border-radius: 50%;
  color: #ffc107;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: #ffc107;
  color: #1a1a1a;
}

/* Responsive styles */
@media (max-width: 768px) {
  .contact-card {
    padding: 2rem;
  }
  
  .contact-card-title {
    font-size: 2.5rem;
  }
  
  .contact-card-icon {
    font-size: 1.5rem;
  }
  
  .contact-card-text {
    font-size: 1rem;
  }
}
