.contact-section {
  background: linear-gradient(180deg, #dfe1f3 0%, #d7d9f0 100%);
}

.contact-wrapper {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 20px 45px rgba(56, 65, 110, 0.10);
  backdrop-filter: blur(10px);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #5a5ae6;
  font-size: 14px;
  font-weight: 700;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #1c2230;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #4f5a6d;
  max-width: 850px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(160, 168, 210, 0.35);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(61, 76, 125, 0.08);
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(61, 76, 125, 0.12);
}

.contact-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(160, 168, 210, 0.28);
}

.contact-card-top h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #1d2433;
}

.contact-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #6d5df6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 10px 20px rgba(73, 83, 227, 0.22);
}

.contact-card-body {
  padding: 24px;
}

.contact-card-body p {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #243047;
  line-height: 1.8;
}

.contact-card-body p:last-child {
  margin-bottom: 0;
}

.time-row {
  display: flex;
  justify-content: space-between;
 
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(160, 168, 210, 0.22);
  font-size: 1.08rem;
  color: #33405f;
}

.time-row:last-child {
  border-bottom: none;
}

.contact-link {
  color: #1f2a44;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.contact-link:hover {
  color: #5a5ae6;
}

.contact-cta {
  display: flex;
  justify-content: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffc107, #ffb300);
  color: #1e2430;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 193, 7, 0.28);
  transition: all 0.25s ease;
}

.contact-btn:hover {
  color: #1e2430;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(255, 193, 7, 0.35);
}

@media (max-width: 767.98px) {
  .contact-wrapper {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-card-top h3 {
    font-size: 1.5rem;
  }

  .contact-card-body p,
  .time-row {
    font-size: 1rem;
  }

  .time-row {
    flex-direction: row;
    gap: 4px;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}