/* Gesplitste contactsectie styling */
.contact-split-section {
  background: linear-gradient(120deg, #b993f4 0%, #8ca6db 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact-split-card {
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  background: #fff;
  min-height: 420px;
}
.contact-split-left {
  background: #00bcd4;
  min-width: 320px;
  max-width: 400px;
  flex: 1 1 320px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-split-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-split-left p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.contact-split-right {
  background: #fff;
  flex: 2 1 400px;
  border-radius: 0 18px 18px 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-split-right h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #22223b;
}
.contact-split-right form .form-label {
  font-weight: 600;
  color: #22223b;
}
.contact-split-right .form-control {
  border-radius: 8px;
  background: #f5f7fa;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}
.contact-split-right .form-control:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 0 2px rgba(0,188,212,0.08);
}
.contact-split-right textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
.contact-submit-btn {
  background: #00bcd4;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,188,212,0.10);
}
.contact-submit-btn:hover, .contact-submit-btn:focus {
  background: #0097a7;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,188,212,0.18);
}
@media (max-width: 991.98px) {
  .contact-split-card {
    flex-direction: column;
    min-height: unset;
  }
  .contact-split-left, .contact-split-right {
    border-radius: 18px 18px 0 0;
    max-width: 100%;
    min-width: unset;
    padding: 2.5rem 1.5rem;
  }
  .contact-split-right {
    border-radius: 0 0 18px 18px;
  }
}
@media (max-width: 575.98px) {
  .contact-split-section {
    padding: 1rem 0;
  }
  .contact-split-card {
    border-radius: 10px;
  }
  .contact-split-left, .contact-split-right {
    padding: 1.5rem 0.5rem;
    border-radius: 10px 10px 0 0;
  }
  .contact-split-right {
    border-radius: 0 0 10px 10px;
  }
  .contact-split-left h2 {
    font-size: 1.5rem;
  }
}

.section-gray {
  background: #f8f9fb !important;
} 