

/* HEADER */
.site-header {
  background: #0a3d62;
  padding: 16px 0;
  color: #fff;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

/* CONTACT LAYOUT */
.contact-section {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.left {
  flex: 1;
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.left h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.lang-switch {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

.lang-switch button {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f2f5f9;
  cursor: pointer;
}

.lang-switch button.active {
  background: #0a3d62;
  color: #fff;
  border-color: #0a3d62;
}

/* FORM INPUTS */
.form-row {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d8e2ec;
  background: #fbfdff;
  font-size: 15px;
  border-radius: 10px;
  transition: 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #0a3d62;
  box-shadow: 0 0 0 3px rgba(10,61,98,0.25);
  outline: none;
}

textarea {
  min-height: 120px;
}

.two-cols {
  display: flex;
  gap: 16px;
}

.two-cols div {
  flex: 1;
}

/* BUTTONS */
.btn {
  padding: 12px 22px;
  background: #0a3d62;
  border: none;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}

.btn:hover {
  background: #072f4a;
}

.btn-secondary {
  background: #eef3f7;
  color: #0a3d62;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* RIGHT SIDEBAR */
.right {
  width: 320px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.card h3 {
  color: #0a3d62;
  margin-bottom: 10px;
}

.card.map iframe {
  width: 100%;
  height: 240px;
  border: none;
  border-radius: 10px;
}

/* FOOTER */
.site-footer {
  background: #dfe7ef;
  padding: 16px 0;
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .contact-section {
    flex-direction: column;
  }
  .right {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .two-cols {
    flex-direction: column;
  }
  .actions {
    flex-direction: column;
  }
  .btn,
  .btn-secondary {
    width: 100%;
  }
}