/* ===================== CONTACT ===================== */
.contact {
  position: relative;
  padding: clamp(70px, 8vw, 120px) clamp(20px, 4vw, 60px);
  background: #ffffff;
  overflow: hidden;
}
.ct-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

/* ---------- Left ---------- */
.ct-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #16202f;
}
.ct-title .grad {
  background: linear-gradient(100deg, #5b8def 0%, #2f6bd8 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ct-sub {
  margin-top: 20px;
  max-width: 460px;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  font-weight: 300;
  line-height: 1.7;
  color: #5a6478;
}

.ct-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 34px;
}
.ct-chip {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(40, 60, 110, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(40, 60, 110, 0.14);
}
.ct-chip-ic {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #2f6bd8;
  background: linear-gradient(160deg, #dbe8ff, #c6daff);
}
.ct-chip-ic svg { width: 18px; height: 18px; }
.ct-chip p {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  color: #2a3550;
}

/* ---------- Right card ---------- */
.ct-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(20px, 2vw, 28px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(120, 150, 210, 0.18);
  box-shadow: 0 40px 90px rgba(40, 60, 110, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ct-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(40, 60, 110, 0.07);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.ct-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(40, 60, 110, 0.14);
}
.ct-ic {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
}
.ct-ic svg { width: 26px; height: 26px; }
.ic-blue   { background: linear-gradient(150deg, #5b9bf5, #2f6bd8); }
.ic-green  { background: linear-gradient(150deg, #34d399, #10b981); }
.ic-orange { background: linear-gradient(150deg, #fbbf3c, #f59331); }

.ct-row-tx { min-width: 0; }
.ct-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8a94a8;
  margin-bottom: 3px;
}
.ct-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  color: #1a2336;
  word-break: break-word;
}

/* Contact button */
.ct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding: 19px;
  border-radius: 16px;
  background: linear-gradient(120deg, #5b9bf5, #2f6bd8);
  color: #fff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 16px 34px rgba(47, 107, 216, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.ct-btn svg { width: 22px; height: 22px; }
.ct-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 44px rgba(47, 107, 216, 0.5);
}
.ct-btn:active { transform: scale(0.99); }

/* ---------- Reveal ---------- */
.contact .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact .ct-card.reveal { transition-delay: 0.1s; }
.contact .reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .ct-inner { grid-template-columns: 1fr; gap: 36px; }
  .ct-chip p { max-width: none; }
}
@media (max-width: 460px) {
  .ct-chips { flex-direction: column; }
  .ct-chip { width: 100%; }
}
