/* contact-redesign.css - Modern Contact-Us Promo Section */

.contact-hero-redesign {
  background: #111827 !important;
  padding: 80px 20px 160px;
  text-align: center;
  color: #ffffff;
}

.contact-hero-redesign h2 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-hero-redesign p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-promo-wrapper {
  margin-bottom: 20px;
  margin-top: -100px; /* Overlap the hero section */
  position: relative;
  z-index: 2;
}

.contact-card-modern {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: left !important;
}

.contact-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(23, 92, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: #175cff;
}

.contact-card-icon-wrap i {
  font-size: 1.5rem;
}

.contact-card-modern h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.contact-card-modern p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.contact-card-link-modern {
  color: #175cff;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.contact-card-link-modern:hover {
  gap: 12px;
  color: #004dff;
}

.contact-card-link-modern i {
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .contact-hero-redesign {
    padding: 60px 0 120px;
  }
  .contact-hero-redesign h2 {
    font-size: 2.2rem;
  }
  .contact-promo-wrapper {
    margin-top: -60px;
  }
  .contact-card-modern {
    padding: 30px;
  }
}
