/* ============================================================
   CONTACT PAGE
   - .contact-page, .contact-page__container, .contact-page__grid
   - .contact-left, .contact-right
   - .contact-card, .contact-row, .contact-map
   ============================================================ */

/* page bg like FINKI sections */
.contact-page{
  background:#f5f5f5;
  padding: 0;
}

/* same width rule as your site */
.contact-page__container{
  width: var(--layout-width, min(86vw, 1688px));
  margin: 0 auto;
  padding: 18px 0 60px;
}

/* title */
.contact-page__title{
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 700;
  color:#111;
}

/* ============================================================
   LAYOUT: 50/50, equal-height columns
   ============================================================ */
.contact-page__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;   /* both columns share the tallest height */
}

@media (max-width: 900px){
  .contact-page__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* columns fill the row height */
.contact-left,
.contact-right{
  min-width: 0;
  height: 100%;
}

/* ============================================================
   CARDS
   ============================================================ */
.contact-card{
  background:#fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 40px rgba(0,0,0,.04);
  border-radius: 0; /* FINKI sharp look */
}

/* ===== INFO CARD (LEFT) ===== */
.contact-card--info{
  padding: 0 18px;            /* horizontal only; vertical comes from rows */
  height: 100%;               /* stretch to match the map */
  display: flex;
  flex-direction: column;
  justify-content: center;    /* center rows vertically in the tall card */
}

/* rows */
.contact-row{
  display:grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  padding: 20px 0;
}
.contact-row + .contact-row{
  border-top: 1px solid #f1f1f1;
}

/* first and last rows: match the inter-row gap exactly */
.contact-row:first-child{
  padding-top: 12px;
}
.contact-row:last-child{
  padding-bottom: 12px;
}

/* icons */
.contact-ico img{
  width: 22px;
  height: 22px;
  display:block;
  object-fit: contain;
}

/* text */
.contact-txt{
  font-size: 13.5px;
  line-height: 1.35;
  color:#222;
}

/* meta */
.contact-title{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color:#111;
  margin: 0 0 4px;
}

.contact-info{
  font-size: 13.5px;
  line-height: 1.35;
  color:#2b92d0;
  text-decoration: none;
  display:inline-block;
}
a.contact-info:hover{
  color:#2b92d0;
  text-decoration: none;
}

/* ============================================================
   MAP CARD (RIGHT)
   ============================================================ */
.contact-card--map{
  height: 100%;
  overflow: hidden;
}

.contact-map{
  position: relative;
  height: 100%;
  min-height: 400px;   /* floor so it never collapses on short content */
  overflow: hidden;
  background:#e9e9e9;
}

/* iframe fills the whole map card, follows the row height */
.contact-map-iframe,
.contact-map iframe{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
  z-index: 1;
}

/* gradient overlay (like the mock) */
.contact-map::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(43,146,208,0.2) 0%,
    rgba(44,49,121,0.2) 100%
  );
}

/* map button */
.contact-map-btn{
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 5;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 22px;

  border-radius: 999px;
  text-decoration: none;

  font-weight: 600;
  font-size: 14px;
  letter-spacing: .4px;
  color: #fff;

  background: linear-gradient(90deg,#2b92d0 0%, #2c3179 100%);
  box-shadow: 0 8px 22px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-map-btn:hover,
a.contact-map-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  color: #fff;
  text-decoration: none;
}