/* ===== Page: Liên hệ ===== */

.page-contact {
  background: #fff;
}

.ct-crumb {
  background: #eef3fb;
}
.ct-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-size: 14px;
  color: #6b7280;
}
.ct-breadcrumb a {
  color: #6b7280;
  transition: color 0.2s;
}
.ct-breadcrumb a:hover {
  color: var(--blue);
}
.ct-breadcrumb span:last-child {
  color: #374151;
  font-weight: 700;
}

.ct-map-section {
  padding: 28px 0 56px;
}
.ct-map-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: clamp(420px, 58vw, 640px);
  background: #e8eef5;
  box-shadow: 0 12px 36px rgba(29, 64, 182, 0.08);
}

.ct-map {
  position: absolute;
  inset: 0;
}
.ct-map iframe,
.ct-map-img,
.ct-map-placeholder {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.ct-map-img {
  object-fit: cover;
}
.ct-map-placeholder {
  background:
    linear-gradient(180deg, rgba(232, 238, 245, 0.2), rgba(232, 238, 245, 0.55)),
    #d7e0ec;
}

.ct-card {
  position: absolute;
  top: 50%;
  right: clamp(18px, 3vw, 40px);
  transform: translateY(-50%);
  z-index: 2;
  width: min(420px, calc(100% - 48px));
  padding: clamp(28px, 3vw, 40px);
  border-radius: 24px;
  background: #ffffffde;
  box-shadow: 0 18px 48px rgba(20, 40, 90, 0.14);
}
.ct-card-title {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: Fraunces, Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.ct-card-desc {
  margin: 0 0 28px;
  color: #6b7280;
  line-height: 1.55;
}
.ct-card-info {
  margin: 0 0 20px;
}
.ct-company {
  margin: 0 0 5px;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.4;
}
.ct-row {
  margin: 0 0 2px;
  color: #374151;
  line-height: 1.55;
}
.ct-row:last-child {
  margin-bottom: 0;
}
.ct-label {
  font-weight: 700;
  color: #111827;
}
.ct-row a {
  color: inherit;
  text-decoration: none;
}
.ct-row a:hover {
  color: var(--blue);
}

.ct-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ct-social-link {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.ct-social-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.ct-social-link:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.05);
}

.page-contact .site-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .ct-map-section {
    padding: 20px 0 40px;
  }
  .ct-map-frame {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .ct-map {
    position: relative;
    min-height: 280px;
    flex: 0 0 auto;
  }
  .ct-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: auto;
    margin: 16px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .ct-map {
    min-height: 220px;
  }
  .ct-card {
    margin: 12px;
    padding: 22px 20px;
  }
  .ct-card-title {
    font-size: 26px;
  }
  .ct-card-desc {
    margin-bottom: 20px;
  }
}
