/* =====================================================
   Contact form styles - opruimingsdienst-inboedel.be
   Brand colors (#f4d1c2, #2c3e50, #e8a88a)
   ===================================================== */

.contact-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-box > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-methods-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(244, 209, 194, 0.1);
  border-radius: 15px;
  border-left: 4px solid #f4d1c2;
  transition: all 0.3s ease;
}

.contact-method-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(244, 209, 194, 0.3);
}

.method-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-details-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.method-details-box p {
  color: #666;
  font-size: 1.1rem;
}

.method-details-box a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.method-details-box a:hover {
  color: #e8a88a;
}

.contact-form-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.cf-form-group {
  display: flex;
  flex-direction: column;
}

.cf-form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 1rem;
}

.cf-form-group input,
.cf-form-group textarea {
  padding: 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  font-family: inherit;
}

.cf-form-group input:focus,
.cf-form-group textarea:focus {
  outline: none;
  border-color: #f4d1c2;
  box-shadow: 0 0 0 3px rgba(244, 209, 194, 0.2);
  background: white;
}

.cf-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.cf-recaptcha-container {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

#recaptcha {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 2px dashed #dee2e6;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

.cf-btn-primary {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
  width: 100%;
}

.cf-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(44, 62, 80, 0.4);
  background: linear-gradient(135deg, #34495e, #2c3e50);
}

.cf-btn-primary:active {
  transform: translateY(-1px);
}

#formMessage {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 30px 25px;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }

  .cf-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-method-item {
    padding: 20px;
  }

  .method-icon-box {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 0 15px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 25px 20px;
  }

  .contact-info-box h2 {
    font-size: 1.8rem;
  }
}
