/*contact.html */
.contact-feedback-section {
  background-color: #f9fafb;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-feedback-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}
/* FEEDBACK FORM CARD */
.feedback-card {
  background: #fef6f6;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feedback-card h2 {
  color: #dc2626;
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.feedback-form label {
  display: block;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 6px;
  color: #111827;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  background-color: #fff;
}

.feedback-form textarea {
  resize: none;
}

.feedback-form button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.feedback-form button:hover {
  background: linear-gradient(to right, #1e40af, #1d4ed8);
  transform: scale(1.02);
}

/* CONTACT CARD */
.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-bottom: 3px solid #2563eb;
  padding-bottom: 8px;
}

.contact-card p {
  margin: 12px 0;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.contact-card i {
  color: #2563eb;
  font-size: 1.1rem;
  width: 25px;
  text-align: center;
}

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

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

.social-links {
  margin: 20px 0;
}

.social-links a {
  color: #2563eb;
  margin-right: 15px;
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #1e40af;
  transform: scale(1.1);
}

/* MAP */
.map-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}

.map-frame iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-feedback-container {
    grid-template-columns: 1fr;
  }
}