/* ══════════════════════════════════════════
   CONTACT INFO BLOCK
══════════════════════════════════════════ */
.cinfo-section {
  padding: 100px 0;
  background: #f7f5f0;
  overflow: hidden;
}

.cinfo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Info cards column ── */
.cinfo-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fafafa;
  transition: all 0.3s ease;
}

.cinfo-card:hover {
  border-color: rgba(4, 157, 191, 0.25);
  background: #fff;
  box-shadow: 0 8px 32px rgba(4, 157, 191, 0.08);
  transform: translateX(4px);
}

.cinfo-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(4, 157, 191, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinfo-card__icon img,
.cinfo-card__icon svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.cinfo-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cinfo-card__label {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.cinfo-card__value {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

a.cinfo-card__value:hover {
  color: var(--blue);
}

.cinfo-card__sub {
  color: #999;
  margin-top: 2px;
}

/* ── Map column ── */
.cinfo-map {
  position: sticky;
  top: 120px;
}

.cinfo-map__frame {
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  position: relative;
}

.cinfo-map__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Placeholder map */
.cinfo-map__placeholder {
  background: #eef2f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinfo-map__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.cinfo-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 16, 57, 0.25);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cinfo-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .cinfo-section {
    padding: 80px 0;
  }
  .cinfo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cinfo-map {
    position: static;
  }
  .cinfo-map__frame {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .cinfo-section {
    padding: 60px 0;
  }
  .cinfo-map__frame {
    height: 260px;
  }
  .cinfo-card {
    padding: 20px;
  }
}