/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section {
  background: #fff;
  padding: 80px 0 90px;
}

/* Info Block */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid #dde4ed;
  border-radius: 10px;
  overflow: hidden;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid #eef1f6;
  transition: background 0.2s;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item:hover { background: #fafbfc; }

.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(224,90,43,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { font-size: 16px; color: #E05A2B; }

.contact-info-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #03173E;
  margin-bottom: 6px;
}
.contact-info-item p {
  font-size: 14px;
  color: #5a6a7a;
  line-height: 1.7;
  margin: 0;
}
.contact-info-item a {
  color: #5a6a7a;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-item a:hover { color: #E05A2B; }

/* Map */
.contact-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dde4ed;
  line-height: 0;
}
.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* Form Wrap */
.contact-form-wrap {
  background: #f7f9fc;
  border: 1px solid #dde4ed;
  border-radius: 10px;
  padding: 40px 40px 44px;
  height: 100%;
  border-top: 3px solid #E05A2B;
}
.contact-form-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #03173E;
}
.contact-form-header p {
  font-size: 14px;
  color: #8899aa;
  line-height: 1.7;
}

/* Form Fields */
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cf-field label {
  font-size: 13px;
  font-weight: 600;
  color: #03173E;
  letter-spacing: 0.2px;
}
.cf-field label span { color: #E05A2B; margin-left: 2px; }

.cf-field input,
.cf-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #dde4ed;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #03173E;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  resize: none;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #bbc5d0; }
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: #E05A2B;
  box-shadow: 0 0 0 3px rgba(224,90,43,0.10);
}
.cf-input-error {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.10) !important;
}

/* Error text */
.cf-error {
  display: none;
  font-size: 12px;
  color: #e53935;
  font-weight: 500;
}

/* Submit button */
.cf-submit {
  min-width: 220px;
  padding: 14px 28px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cf-submit .fab { font-size: 17px; }

/* Responsive */
@media (max-width: 991px) {
  .contact-section { padding: 60px 0; }
  .contact-form-wrap { padding: 28px 24px 32px; }
  .contact-form-header h2 { font-size: 24px; }
}
@media (max-width: 575px) {
  .contact-map iframe { height: 200px; }
}
