/* === CONTACT SECTION === */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

/* === LEFT SIDE === */
.contact-left {
  flex: 2;
  min-width: 300px;
}

.contact-left h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.underline {
  width: 50px;
  height: 2px;
  background: #0b43cc;
  margin-bottom: 25px;
}

/* === FORM === */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px 30px;
}

.form-group label {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  color: #111;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0b43cc;
  box-shadow: 0 0 3px rgba(11, 67, 204, 0.2);
  outline: none;
}

.form-group.full {
  grid-column: 1 / -1;
}

/* === BUTTON === */
.form-actions .btn-send {
  border: 1px solid #0b43cc;
  background: transparent;
  color: #0b43cc;
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-actions .btn-send:hover {
  background: #0b43cc;
  color: #fff;
}

.form-actions {
  text-align: center;
  margin-top: 20px;
}

/* === RIGHT SIDE (INFO) === */
.contact-right {
  flex: 1;
  min-width: 260px;
}

.contact-right h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-list {
  list-style: none;
  margin-top: 20px;
}

.info-list li {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-list a {
  color: #0b43cc;
  text-decoration: none;
}

.info-list a:hover {
  text-decoration: underline;
}

/*.icon {
  margin-right: 8px;
  font-size: 1.1rem;
  color: #0b43cc;
  vertical-align: middle;
}*/

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}