
/* ===== CONTACT SECTION ===== */
.contact-section {
  width: 100%;
  height: auto;
  background-color: var(--off-white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}
.contact-container {
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.contact-itme {
  max-width: 600px;
  min-width: 200px;
  flex-grow: 1;
  flex-basis: 200;
}
.contact-itme h2 {
  line-height: 50px;
}
.contact-itme p {
  color: var(--text-muted);
  line-height: 40px;
  font-size: 14px;
}
/* contact-info */
.contact-info {
  margin-top: 50px;
}
.contact-info-container {
  display: flex;
  gap: 20px;
  padding: 20px;
}

/* contact-icon */
.contact-icon {
  background: rgba(0,86,167,0.08);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--primary-blue);
}
.contact-icon .icons-svg {
  width: 25px;
}
.contact-info-container-itme h3 {
  color: var(--primary-blue);
}

/* contact-form */
.contact-form {
  box-shadow: var(--shadow-md);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-box {
  display: flex;
  flex-direction: column;
}
.contact-box input , textarea {
  border-radius: 7px;
  border: 1px solid var(--text-muted);
  outline: none;
  padding: 10px;
}
.contact-box input:hover , textarea:hover {
  border: 1px solid var(--primary-blue);
  background: #0058aa07;
}
.contact-box label {
  color: var(--text-muted);
}
.contact-box input {
  width: 100%;
  height: 30px;
}
.contact-box textarea {
  resize: none;
  height: 190px;
}
#contact-btn {
  border: none;
  height: 30px;
  border-radius: 5px;
  background: var(--primary-blue);
  color: var(--light-bg);
  font-size: 1rem;
  font-weight: 500;
}
#contact-btn:hover {
  background: #00417d;
}



.form-status {
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
}

.form-status.success {
  background: #e8f7ee;
  color: #166534;
  border: 1px solid #b7e4c7;
}

.form-status.error {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}
