/* Container and Header */
.custom-contact-section {
  padding: 40px 0;
}

.custom-contact-header {
  margin-bottom: 20px;
}

.custom-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Social Button Base */
.custom-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  color: white !important;
  text-decoration: none !important;
  transition: transform 0.3s ease;
  max-width: 250px;
  width: 100%;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Icon Styling */
.custom-social-btn i {
  margin-right: 12px;
  font-size: 18px;
}

/* Facebook Gradient */
.custom-fb-btn {
  background: linear-gradient(45deg, #1877f2, #145dbf) !important;
}

/* Google Gradient */
.custom-google-btn {
  background: linear-gradient(45deg, #db4437, #b63a2e) !important;
}

/* Hover - Zoom Only (No Color Change) */
.custom-fb-btn:hover,
.custom-fb-btn:focus,
.custom-google-btn:hover,
.custom-google-btn:focus {
  transform: scale(1.08);
}

/* Active - Tap/Click Feedback */
.custom-fb-btn:active,
.custom-google-btn:active {
  transform: scale(0.95);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .custom-social-btn {
    font-size: 14px;
    padding: 12px 18px;
  }

  .custom-social-btn i {
    font-size: 16px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .custom-social-btn {
    font-size: 12px;
    padding: 10px 16px;
  }

  .custom-social-btn i {
    font-size: 14px;
    margin-right: 8px;
  }
}
