/* Modern Contact Section Styles */
.contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F85C70, #e74c3c, #F85C70);
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.contact-main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #F85C70, #e74c3c);
  border-radius: 2px;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-message-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(248, 92, 112, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-message-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F85C70, #e74c3c);
}

.contact-message-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-description {
  background: rgba(248, 92, 112, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid #F85C70;
}

.contact-description p {
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}


.contact-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(248, 92, 112, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F85C70, #e74c3c);
}

.contact-info-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(248, 92, 112, 0.02);
  border: 1px solid rgba(248, 92, 112, 0.05);
}

.contact-info-item:hover {
  background: rgba(248, 92, 112, 0.05);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #F85C70, #e74c3c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.contact-details a {
  color: #F85C70;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #e74c3c;
}

.contact-details p {
  color: #6c757d;
  margin: 0;
  font-size: 0.95rem;
}

.contact-services {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
}

.contact-services h5 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.services-list li:hover {
  background: rgba(248, 92, 112, 0.05);
  transform: translateX(5px);
}

.services-list li i {
  color: #F85C70;
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

.services-list li {
  color: #495057;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact {
    padding: 3rem 0;
  }
  
  .contact-main-title {
    font-size: 2rem;
  }
  
  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
