/* ===== CO-CREATE SECTION ===== */
.cocreate-section {
  padding: 96px 0;
  background-color: #f9f9f9;
}

/* ===== WRAPPER ===== */
.cocreate-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 25px 50px 0px #00000040;
}

/* ===== LEFT PANEL ===== */
.cocreate-left {
  background-color: #006e25;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cocreate-title {
  font-size: 2.25rem;
  color: #ffffff;
  line-height: 125%;
  margin-bottom: 32px;
}

.cocreate-desc {
  font-size: 1rem;
  color: #ffffff;
  line-height: 150%;
  margin-bottom: 64px;
}

/* ===== CONTACT DETAILS ===== */
.cocreate-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cocreate-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.2s ease;
  line-height: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.cocreate-contact-item:hover {
  color: #ffffff;
}

/* ===== RIGHT PANEL ===== */
.cocreate-right {
  background-color: #ffffff;
  padding: 64px;
}

.cocreate-form .form-group {
  margin-bottom: 20px;
}

/* ===== FORM LABELS ===== */
.cocreate-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #878787;
  margin-bottom: 8px;
}

/* ===== FORM INPUTS ===== */
.cocreate-input {
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #181c20;
  background-color: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  line-height: 100%;
}

.cocreate-input:focus {
  border-color: #006e25;
  box-shadow: 0 0 0 3px rgba(0, 110, 37, 0.12);
  outline: none;
}

.cocreate-input::placeholder {
  color: #878787;
}

/* Select arrow color fix */
.form-select.cocreate-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23006E25' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

/* ===== BOOTSTRAP VALIDATION OVERRIDES ===== */
.cocreate-input.is-valid {
  border-color: #006e25;
  background-image: none;
}

.cocreate-input.is-invalid {
  border-color: #dc3545;
  background-image: none;
}

.invalid-feedback {
  font-size: 0.78rem;
  color: #dc3545;
}

/* ===== SUBMIT BUTTON ===== */
.cocreate-submit {
  background: linear-gradient(135deg, #006e25 0%, #28a745 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 12px;
  letter-spacing: 0.3px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  margin-top: 20px;
  font-family: "Inter", sans-serif;
}

.cocreate-submit:hover {
  opacity: 0.92;
  color: #ffffff;
  transform: translateY(-1px);
}

.cocreate-submit:active {
  transform: translateY(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .cocreate-title {
    font-size: 1.6rem;
  }

  .cocreate-left {
    padding: 40px 30px;
  }

  .cocreate-right {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .cocreate-section {
    padding: 60px 0;
  }

  .cocreate-wrapper {
    grid-template-columns: 1fr; /* Stack on mobile */
    border-radius: 16px;
  }

  .cocreate-left {
    padding: 36px 28px;
    border-radius: 16px 16px 0 0;
  }

  .cocreate-right {
    border: 1.5px dashed #c5ddc9;
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 36px 28px;
  }

  .cocreate-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cocreate-section {
    padding: 48px 0;
  }

  .cocreate-title {
    font-size: 1.3rem;
  }

  .cocreate-left {
    padding: 28px 20px;
  }

  .cocreate-right {
    padding: 28px 20px;
  }
}
