/* =========================
   CONTACT PAGE ONLY
========================= */

.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 90px;
}

/* ===== HERO ===== */
.contact-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 45px;
}

.contact-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 12px;
  color: #222;
}

.contact-subtext {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
}

/* ===== MAIN SECTION ===== */
.contact-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 40px;
}

/* LEFT CARD */
.contact-left {
  background: #1B2A41;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-logo {
  width: 500px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.social-block {
  text-align: center;
}

.social-title {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
}

/* social icons row */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.social-icons a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f2f2f2;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  filter: brightness(0.95);
}

.social-icons img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* link list */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin: 8px 0;
}

.social-links a {
  color: #7a003c;
  text-decoration: none;
  font-weight: 700;
}

.social-links a:hover {
  text-decoration: underline;
}

/* RIGHT CARD (FORM) */
.contact-right {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Two inputs side-by-side */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #7a003c;
}

/* Send button */
.btn-send {
  margin-top: 6px;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  background: #7a003c;
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  width: fit-content;
}

.btn-send:hover {
  filter: brightness(0.92);
}

/* ===== INFO SECTION ===== */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 24px;
}

.info-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 900;
  color: #222;
}

.info-card p {
  margin: 0;
  color: #444;
  line-height: 1.75;
  font-size: 1.05rem;
}

.info-card a {
  color: #7a003c;
  text-decoration: none;
  font-weight: 800;
}

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

/* ===== MAP ===== */
.contact-map .map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .contact-main {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-send {
    width: 100%;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}
