/* =============================================
   SOS — CONTACT PAGE STYLES
   ============================================= */

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: var(--frost);
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 0 72px;
  z-index: 100;
}
.nav-logo img { width: 160px; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  color: var(--slate);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.nav-link.active {
  color: var(--ink);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}
.nav-btn {
  background-color: #1549D4;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
}

/* CONTACT SECTION */
.contact-section {
  background: var(--frost);
  padding: 120px 72px 80px;
}
.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}
.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 16px;
}
.contact-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 16px;
}
.contact-underline {
  width: 48px;
  height: 3px;
  background: var(--blue);
  margin-bottom: 32px;
}
.contact-body {
  font-size: 20px;
  line-height: 1.85;
  color: rgba(13,19,33,0.88);
  margin-bottom: 20px;
}
.section-divider {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 40px 0;
}

/* FORM PLACEHOLDER */
.form-placeholder {
  background: var(--white);
  border: 2px dashed #D0D5DE;
  border-radius: 10px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 32px;
}
.form-placeholder-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 8px;
}
.form-placeholder-sub {
  font-size: 15px;
  color: var(--slate);
}

/* PHONE */
.contact-phone {
  text-align: center;
  margin-bottom: 40px;
}
.phone-label {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 6px;
}
.phone-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}

/* WHAT TO EXPECT */
.expect-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.expect-list li {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(13,19,33,0.88);
  padding-left: 20px;
  position: relative;
}
.expect-list li::before {
  content: '•';
  color: var(--blue);
  font-size: 20px;
  position: absolute;
  left: 0;
}

/* FOOTER */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(94,110,130,0.15);
  padding: 40px 48px;
  text-align: center;
}
.footer-inner { max-width: 760px; margin: 0 auto; }
.footer-logo {
  height: 32px;
  width: auto;
  margin: 0 auto 12px;
  display: block;
}
.footer-descriptor {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--slate);
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 16px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--slate);
}
.footer-nav a:hover { color: var(--white); }
.footer-phone {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 20px;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(94,110,130,0.15);
  margin-bottom: 16px;
}
.footer-legal {
  font-size: 12px;
  color: #3D4E63;
}
.footer-legal a { color: #3D4E63; }

.blue { color: var(--blue); }
