/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-hero {
  background: linear-gradient(135deg, #faf7f2 0%, #f5f0e8 50%, #ede8df 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
}

.contact-hero-center {
  text-align: center;
  position: relative;
  z-index: 2;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-slate-600);
  margin-bottom: 16px;
}

.response-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  color: var(--color-slate-900);
  margin-bottom: 12px;
}

.contact-hero-desc {
  font-size: 15px;
  color: var(--color-slate-500);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.scroll-indicator {
  margin-top: 32px;
  color: var(--color-slate-400);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.contact-hero-vials-left,
.contact-hero-vials-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 16px;
}

.contact-hero-vials-left {
  left: 0;
}

.contact-hero-vials-right {
  right: 0;
}

.contact-vial {
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
  opacity: 0.7;
  transform: rotate(-8deg);
}

.contact-vial.v2 {
  transform: rotate(5deg);
  margin-top: 40px;
}

.contact-vial.v3 {
  transform: rotate(8deg);
}

.contact-vial.v4 {
  transform: rotate(-5deg);
  margin-top: 40px;
}

/* Tracking Section */
.contact-tracking {
  padding: 32px 0;
  background: var(--color-slate-50);
}

/* FAQ Section */
.contact-faq {
  padding: 60px 0 80px;
  background: var(--color-white);
}

.contact-faq .faq-list {
  max-width: 720px;
  margin: 0 auto;
}

/* Still Have Questions */
.still-questions-card {
  max-width: 520px;
  margin: 48px auto 0;
  text-align: center;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.sq-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid var(--color-slate-200);
  color: var(--color-slate-500);
}

.still-questions-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.still-questions-card p {
  font-size: 13px;
  color: var(--color-slate-500);
  margin-bottom: 20px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .contact-hero-vials-left,
  .contact-hero-vials-right {
    opacity: 0.3;
  }

  .contact-vial {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .contact-hero-vials-left,
  .contact-hero-vials-right {
    display: none;
  }

  .contact-hero {
    padding: 40px 0 60px;
  }
}
