/* ============================================
   Contact Bright — Light Theme Contact Form
   ============================================ */

.contact-bright {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 60px;
}

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

/* ---------- Left: Info ---------- */
.contact-bright__heading {
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.contact-bright__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 36px;
}

.contact-bright__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-bright__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-bright__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E0F2FE;
  color: #0EA5E9;
  border-radius: 10px;
}

.contact-bright__detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  margin: 0 0 4px;
}

.contact-bright__detail-value {
  font-size: 1rem;
  color: #1E293B;
  margin: 0;
  font-weight: 500;
}

.contact-bright__detail-value a {
  color: #0EA5E9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-bright__detail-value a:hover {
  color: #0284C7;
}

/* ---------- Social ---------- */
.contact-bright__social {
  padding-top: 8px;
}

.contact-bright__social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.contact-bright__social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F5F9;
  color: #475569;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.contact-bright__social-link:hover {
  background: #0EA5E9;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ---------- Right: Form ---------- */
.contact-bright__form-wrap {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 6px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
}

.contact-bright__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-bright__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-bright__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.contact-bright__required {
  color: #EF4444;
}

.contact-bright__input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1E293B;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.contact-bright__input::placeholder {
  color: #94A3B8;
}

.contact-bright__input:focus {
  border-color: #0EA5E9;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.contact-bright__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.contact-bright__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-bright__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #FFFFFF;
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 4px;
}

.contact-bright__submit:hover {
  background: linear-gradient(135deg, #38BDF8, #0EA5E9);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.contact-bright__submit:active {
  transform: translateY(0);
}

/* ---------- Success State ---------- */
.contact-bright__success {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}

.contact-bright__success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

.contact-bright__success p {
  font-size: 1.05rem;
  color: #475569;
  margin: 0;
}

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

  .contact-bright__form-wrap {
    padding: 28px 24px;
  }

  .contact-bright__heading {
    font-size: 1.6rem;
  }
}
