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

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
html { scroll-behavior: smooth; }
body { background: white; color: #171717; line-height: 1.5; }

/* Navigation */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.08); }
nav > div { max-width: 1024px; margin: 0 auto; }
nav > div > div { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; }
.nav-links { display: flex; gap: 16px; align-items: center; }
.nav-links button, .nav-links a { font-size: 14px; color: #737373; background: none; border: none; cursor: pointer; transition: color 0.2s; }
.nav-links button:hover, .nav-links a:hover { color: #104066; }
.btn { padding: 12px 24px; border-radius: 9999px; font-size: 14px; font-weight: 500; text-decoration: none; display: inline-block; cursor: pointer; border: none; transition: all 0.2s; }
.btn-ghost { background: #e5e5e5; color: #104066; }
.btn-ghost:hover { background: #d4d4d4; }
.btn-primary { background: #104066; color: white; }
.btn-primary:hover { background: #0d3554; }

/* Hero */
.hero { padding: 128px 24px 64px; }
.hero-content { max-width: 768px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(36px, 5vw, 48px); font-weight: 600; color: #171717; line-height: 1.1; letter-spacing: -0.02em; }
.hero .subtitle { font-size: 20px; color: #104066; font-weight: 500; margin-top: 16px; }
.hero p { font-size: 18px; color: #525252; margin-top: 24px; line-height: 1.6; }

/* Form Section */
.form-section { padding: 64px 24px; }
.form-container { max-width: 672px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: #404040; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; font-size: 16px; transition: all 0.2s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #104066; box-shadow: 0 0 0 3px rgba(16,64,102,0.1); }
.form-group textarea { resize: none; }
.btn-submit { width: 100%; padding: 16px 32px; font-size: 16px; font-weight: 500; color: white; background: #104066; border: none; border-radius: 9999px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: #0d3554; }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.privacy-text { font-size: 12px; color: #737373; text-align: center; margin-top: 16px; }

/* Success State */
.success-box { text-align: center; padding: 48px; background: #d1fae5; border-radius: 16px; border: 1px solid #a7f3d0; }
.success-icon { width: 64px; height: 64px; color: #059669; margin: 0 auto 24px; }
.success-box h2 { font-size: 24px; font-weight: 600; color: #064e3b; margin-bottom: 8px; }
.success-box p { color: #047857; margin-bottom: 32px; }

/* Alternative Contact */
.alt-contact { padding: 64px 24px; background: #fafafa; }
.alt-contact-content { max-width: 1024px; margin: 0 auto; }
.alt-contact h2 { font-size: 24px; font-weight: 600; color: #171717; text-align: center; margin-bottom: 48px; }
.alt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }
.alt-item { text-align: center; padding: 24px; }
.alt-item-icon { width: 48px; height: 48px; background: rgba(16,64,102,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.alt-item-icon svg { width: 24px; height: 24px; stroke: #104066; fill: none; stroke-width: 1.5; }
.alt-item h3 { font-size: 16px; font-weight: 500; color: #171717; margin-bottom: 8px; }
.alt-item p { font-size: 14px; color: #525252; }
.alt-item a { color: #104066; text-decoration: none; }
.alt-item a:hover { text-decoration: underline; }

/* Footer */
footer { padding: 48px 24px; border-top: 1px solid rgba(0,0,0,0.08); }
footer > div { max-width: 1024px; margin: 0 auto; }
footer .footer-content { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 768px) {
  footer .footer-content { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-logo { display: flex; align-items: center; }
.footer-right { display: flex; flex-direction: column; gap: 24px; align-items: center; }
@media (min-width: 768px) {
  .footer-right { flex-direction: row; align-items: center; gap: 24px; }
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; font-size: 14px; }
.footer-links button, .footer-links a { background: none; border: none; color: #737373; cursor: pointer; text-decoration: none; }
.footer-links button:hover, .footer-links a:hover { color: #104066; }
.copyright { color: #a3a3a3; font-size: 14px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* Spinner */
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.spinner { animation: spin 1s linear infinite; }
