/* ==============================
   CONTACT HERO
============================== */
.contact-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 44px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

.contact-hero .lead {
  max-width: 620px;
  margin: auto;
  color: var(--muted);
}

/* ==============================
   CONTACT INFO CARD
============================== */
.contact-info-card {
  padding: 2rem;
  border-radius: 18px;
}

.info-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: .5rem;
  font-family: 'Poppins', sans-serif;
}

.info-sub {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--gold);
  background: rgba(238,187,87,0.15);
  padding: .7rem;
  border-radius: 12px;
}

.info-item h6 {
  margin: 0;
  font-weight: 600;
}

.info-item p {
  margin: 0;
  color: var(--muted);
}

/* ==============================
   CONTACT FORM CARD
============================== */
.contact-form-card {
  padding: 2rem;
  border-radius: 18px;
}

.contact-form-card h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.contact-form-card label {
  font-weight: 600;
  color: var(--text);
}

.contact-form-card .form-control {
  min-height: 45px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text);
}

/* ==============================
   MAP SECTION
============================== */
.map-card {
  padding: 0;
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

html.theme-dark iframe {
  filter: brightness(0.8);
}

/* ==============================
   RESPONSIVENESS
============================== */
@media (max-width: 992px) {
  .contact-hero h1 { font-size: 34px; }
  .contact-form-card, .contact-info-card { padding: 1.5rem; }
}

@media (max-width: 576px) {
  .contact-hero h1 { font-size: 28px; }
  .info-item { gap: .8rem; }
  .info-item i { font-size: 1.1rem; padding: .6rem; }
}
