/* ================= ENHANCED CONTACT SECTION ================= */
.contact-section {
  background: #f8f9fa;
  color: #333;
}
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.contact-icon-wrapper {
  text-align: center;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff, #6610f2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.contact-icon i {
  color: white;
  font-size: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-info:hover .contact-icon {
  transform: scale(1.1);
}

.hours-list {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

.info-card {
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.bg-gradient-info {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.social-section {
  background: rgba(0,0,0,0.03);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.social-links-large {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link.instagram {
  background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877F2, #0C5FCD);
}

.social-link.twitter {
  background: linear-gradient(135deg, #1DA1F2, #0C85D0);
}

.social-link.youtube {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-links-large {
    gap: 15px;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .contact-info-cards {
    margin-top: 20px;
  }
  
  .info-card {
    margin-bottom: 15px;
  }
}
