/* ========== Contact Section ========== */

section {
  padding: 60px 20px;
  /* background-color: #f9fafb; */
  font-family: 'Segoe UI', sans-serif;
}

.wrap {
  max-width: 1200px;
  margin: auto;
}

/* ========== Headings ========== */
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  width: 30%;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #2563eb;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-ghost {
  background-color: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
}

.btn-ghost:hover {
  background-color: #eff6ff;
}

/* ========== Grid Layout ========== */

.grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .grid {
    flex-direction: row;
    gap: 40px;
  }
}

/* ========== Card Styles ========== */

.card {
  background: #0c19d113;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
}

/* ========== Form Styles ========== */

form label {
  display: block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

form input,
form select,
form textarea {
  width: 93%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #d5d6d8;
  border-radius: 6px;
  font-size: 1rem;
  /* background-color: #3343ef; */
  color: #000000;
  transition: border-color 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

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

@media (min-width: 600px) {
  .row {
    flex-direction: row;
  }

  .row > div {
    flex: 1;
  }
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.note {
  font-size: 0.875rem;
  color: #ffffff;
  margin-top: 15px;
}

/* ========== Contact Info Sidebar ========== */

.contact-info .info-item {
  margin-bottom: 20px;
}

.contact-info strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.contact-info .small {
  font-size: 0.95rem;
  color: #6b7687;
}

.contact-info a {
  color: #2563eb;
  text-decoration: none;
}

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

/* ========== Social Links ========== */

.socials {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social {
  background-color: #f3f4f6;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
}

.social:hover {
  background-color: #e0e7ff;
}

/* ========== Map ========== */

.map {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 10px;
}

iframe {
  width: 100%;
  border: none;
  border-radius: 10px;
}

/* ========== Alerts ========== */

#formAlert {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #16a34a; /* green for success; you can change dynamically with JS */
}
