/* 
 * B2B Enterprises - Contact Form Styles
 * Simple and clean design matching effconint
 */

/* Contact section styling */
.contact {
  padding: 4rem 0;
  background-color: #f5f5f5;
  min-height: 80vh;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #424242;
  font-weight: 300;
}

.section-intro {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

/* Form layout styling */
.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Form alerts */
.card-panel {
  border-radius: 5px;
  padding: 15px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.card-panel i.material-icons {
  margin-right: 10px;
}

/* Button styling */
.contact-form .btn-large {
  margin-top: 15px;
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Contact info styling */
.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-info .contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-info .contact-item i {
  font-size: 24px;
  color: #1565c0;
  margin-right: 15px;
  margin-top: 3px;
}

.contact-info .contact-item span {
  font-size: 16px;
  line-height: 1.5;
}

/* Social media icon styling */
.social-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0;
  object-fit: contain;
}

.contact-item.social-media {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-item.social-media .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: transparent;
  border: none;
  padding: 8px;
  border-radius: 50%;
  text-decoration: none;
}

.contact-item.social-media .social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Better mobile layout */
@media only screen and (max-width: 600px) {
  .contact {
    padding: 2rem 0;
  }
  
  .contact h2 {
    font-size: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-form .btn-large {
    width: 100%;
    margin-bottom: 15px;
    margin-left: 0 !important;
  }
}