/* 🌟 Contact Section Base */
.contact-section {
  background: linear-gradient(to bottom right, #f8f8f8, #ececec);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.title-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: #dc2626;
  margin: 10px auto 30px auto;
  border-radius: 2px;
}

.contact-subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 60px;
}

/* 🔘 Contact Info (Horizontal Cards) */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.contact-card {
  background: #fff;
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(164,0,42,0.25);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #dc2626;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-card:hover .card-icon {
  background: #dc2626;
  color: #fff;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.card-content p {
  font-size: 16px;
  color: #555;
}
.email-link {
  display: inline-block;
  margin-top: 10px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  word-break: break-all;
}


/* 🔗 Quick Links */
.quick-links {
  margin-bottom: 50px;
}

.quick-links-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #111;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.quick-links ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  color: #111;
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.quick-links ul li a i {
  color: #dc2626;
}

.quick-links ul li a:hover {
  background: #000000;
  color: #fff;
}

.quick-links ul li a:hover i {
  color: #fff;
}

/* 🌐 Social Media */
.social-links {
  margin-top: 40px;
}

.social-links-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.social-icons a {
  font-size: 28px;
  margin: 0 15px;
  color: #a4002a;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #000000;
  transform: scale(1.2);
}
