/* =============================
   CONTACT SECTION
   ============================= */

.contact-section {
  padding: 48px 20px;
  background: #f4f5f7;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===================================================
   ONE shared card: form (left) + map (right)
   overflow:hidden clips map flush to rounded corners
   =================================================== */
.main-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  overflow: hidden;
  min-height: 560px;
  background: #fff;
}

/* ── Form Side ── */
.form-side {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.form-heading {
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #1a1a1a;
  font-weight: 700;
}

.form-heading .highlight {
  color: #bf023f;
}

.form-subtitle {
  font-size: 16px;
  color: #121111;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 380px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.form-fields input,
.form-fields textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.21px solid rgba(127, 127, 127, 1);
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-fields input::placeholder,
.form-fields textarea::placeholder {
  color: #bbb;
}

.form-fields input:focus,
.form-fields textarea:focus {
  border-color: #bf023f;
  box-shadow: 0 0 0 3px rgba(191,2,63,0.08);
}

.form-fields textarea {
  resize: vertical;
  min-height: 110px;
}

.submit-btn {
    width: 240px;
    height: 46px;
    gap: 10px;
    border: 1px solid #d0d0d0;
    border-radius: 85px;
    background: transparent;
    color: #bf023f;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0px 3.9px 3.9px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.submit-btn:hover {
  border-color: #bf023f;
  background: #bf023f;
  color: #fff;
}

.submit-btn .arrow {
  display: inline-block;
  font-size: 18px;
  transition: transform 0.25s;
}

.submit-btn:hover .arrow {
  transform: translateX(5px);
}

/* ── Map Side: padding creates margin around the map ── */
.map-side {
  position: relative;
  padding: 20px;
  background: #fff;
}

.map-side iframe {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 0;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

/* ── Info Bar ── */
.info-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.info-chip {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.chip-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chip-icon.phone    { background: #e8f5e9; }
.chip-icon.email    { background: #e3f2fd; }
.chip-icon.location { background: #fce4ec; }

.chip-icon svg { width: 22px; height: 22px; }

.chip-icon.phone    svg { fill: #2e7d32; }
.chip-icon.email    svg { fill: #1565c0; }
.chip-icon.location svg { fill: #bf023f; }

.chip-text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  font-weight: 400;
}

/* Clickable chips (anchor tags) */
a.info-chip {
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

a.info-chip:hover {
  box-shadow: 0 6px 24px rgba(191,2,63,0.13);
  transform: translateY(-2px);
}

a.info-chip:hover .chip-text {
  color: #bf023f;
}

/* ===========================
   TABLET
   =========================== */
@media (max-width: 992px) {
  .info-bar { grid-template-columns: 1fr 1fr; }
  .info-chip:last-child { grid-column: 1 / -1; }
  .form-side { padding: 40px 32px; }
  .form-heading { font-size: 38px; }
}

/* ===========================
   MOBILE — Order: Form > Chips > Map
   =========================== */
@media (max-width: 768px) {
  .contact-section { padding: 28px 16px; }
  .contact-wrapper { gap: 16px; }

  .main-card { display: contents; }

  .form-side {
    order: 1;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    padding: 32px 24px 28px;
  }

  .map-side {
    order: 3;
    min-height: 300px;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    position: relative;
    background: #fff;
    padding: 16px;
  }

  .map-side iframe {
    position: absolute;
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border-radius: 12px;
  }

  .info-bar {
    order: 2;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-chip:last-child { grid-column: auto; }
  .info-chip { padding: 16px 20px; }
  .form-heading { font-size: 32px; }
  .form-subtitle { margin-bottom: 20px; }
  .submit-btn { width: 100%; justify-content: center; }
}