/* ===========================
   CONTACT PAGE
   =========================== */
body {
  background: #fff;
  overflow-x: hidden;
}

.contact-wrapper {
  margin-top: 65px;
  padding: 56px 80px 72px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */
.contact-header {
  margin-bottom: 48px;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.contact-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.8;
  max-width: 440px;
}

/* CONTENT LAYOUT */
.contact-content {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: start;
}

/* INFO CARDS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(26, 86, 255, 0.12);
  border-radius: 16px;
  padding: 24px 24px 22px;
  box-shadow: 0 4px 24px rgba(26, 86, 255, 0.07), 0 1px 4px rgba(0,0,0,0.04);
}

.info-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.info-card-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 14px;
}

.info-card-sub {
  font-size: 13px;
  color: #666;
  margin-top: -10px;
  margin-bottom: 0;
}

/* WA BUTTON */
.wa-btn {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26, 86, 255, 0.25);
}

.wa-btn:hover {
  background: var(--blue-dark, #0b30c0);
  box-shadow: 0 6px 20px rgba(26, 86, 255, 0.35);
}

/* MAP */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 86, 255, 0.12);
  box-shadow: 0 4px 24px rgba(26, 86, 255, 0.07), 0 1px 4px rgba(0,0,0,0.04);
  height: 420px;
}

.contact-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .contact-wrapper { padding: 32px 16px 56px; }
  .contact-title { font-size: 26px; }
  .contact-header { margin-bottom: 28px; }
  .contact-content {
    grid-template-columns: 1fr;
  }
  .contact-map { height: 260px; }
  .info-card { padding: 20px 18px; }
}

@media (max-width: 480px) {
  .contact-wrapper { padding: 24px 14px 48px; }
  .contact-title { font-size: 22px; }
  .contact-map { height: 220px; }
}