/* ============================================================
   contact.css — Contact Page Styles
   Designed with Premium Apple Aesthetics
   ============================================================ */

.contact-hero {
  background: #000000;
  color: #ffffff;
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero .t-tagline {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #2997ff;
  letter-spacing: 0.23px;
  margin-bottom: 12px;
}

.contact-hero .t-hero {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.28px;
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 20px;
}

.contact-hero .t-lead-airy {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #a1a1a6;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Section */
.contact-section {
  padding: 80px 24px;
  background: #f5f5f7;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  width: 100%;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e3e3e5;
  border-radius: 18px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.contact-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #1d1d1f;
}

.contact-card__title {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.contact-card__value {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: #86868b;
  margin-bottom: 28px;
  word-break: break-all;
}

.contact-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 9999px;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 200px;
}

.contact-card__btn--primary {
  background: #0066cc;
  color: #ffffff;
}

.contact-card__btn--primary:hover {
  background: #0071e3;
}

.contact-card__btn--primary:active {
  transform: scale(0.95);
}

.contact-card__btn--secondary {
  background: #fafafc;
  color: #0066cc;
  border: 1px solid #0066cc;
}

.contact-card__btn--secondary:hover {
  background: rgba(0, 102, 204, 0.04);
}

.contact-card__btn--secondary:active {
  transform: scale(0.95);
}

/* Toast notification bubble style */
.toast-notification {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: rgba(29, 29, 31, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.toast-notification.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-hero .t-hero {
    font-size: 40px;
  }
}
