/* ============================================================
   CONTACT PAGE — contact.css
   ============================================================ */

/* HERO */
.contact-hero {
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  background: white;
}
.contact-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.contact-symbol-bg {
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0.08;
}
.contact-symbol-bg img { width: 180px; height: 180px; }
.contact-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800; color: var(--blue);
  line-height: 1.05; margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.contact-direct { display: flex; flex-direction: column; gap: 8px; }
.contact-link {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; color: var(--blue);
  transition: opacity 0.2s;
}
.contact-link:hover { opacity: 0.7; }

/* DISCOVERY MARQUEE */
.discovery-marquee {
  overflow: hidden; background: white;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 12px 0;
  cursor: pointer;
}
.marquee-track { display: flex; }
.marquee-content {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marquee-scroll 12s linear infinite;
  padding-right: 32px;
}
.marquee-text {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800; color: var(--gray-light);
  letter-spacing: -0.03em;
  line-height: 1;
}
.marquee-arrow-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #c8b8f8, #f0b0c0);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: white;
  flex-shrink: 0;
}
.discovery-marquee:hover .marquee-content { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FORM SECTION */
.contact-form-section {
  background: var(--blue); padding: 80px 48px;
}
.contact-form-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-form-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; color: white; margin-bottom: 20px;
}
.contact-form-sub {
  font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7;
}
.contact-calendly-box { margin-top: 48px; }
.contact-calendly-label {
  font-size: 16px; font-weight: 700; color: white; margin-bottom: 16px;
}

/* FORM */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.form-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.03em; }
.form-input {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.3);
  color: white; font-family: var(--font); font-size: 16px; font-weight: 400;
  padding: 12px 0; outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus { border-bottom-color: white; }
.form-textarea { resize: none; }
.form-disclaimer {
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 28px;
}
.form-submit {
  border-color: rgba(255,255,255,0.5); color: white;
  font-size: 14px; padding: 12px 28px;
}
.form-submit:hover { background: rgba(255,255,255,0.15); }
.form-success {
  font-size: 16px; color: white; font-weight: 600;
  padding: 24px 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-hero { padding: calc(var(--nav-h) + 40px) 32px 60px; }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-symbol-bg { display: none; }
  .contact-form-section { padding: 60px 32px; }
  .contact-form-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .contact-hero { padding: calc(var(--nav-h) + 28px) 20px 48px; }
  .contact-form-section { padding: 48px 20px; }
  .marquee-text { font-size: 40px; }
  .marquee-arrow-circle { width: 56px; height: 56px; font-size: 22px; }
}
