/* ============================================================
   LONGEVITY ATHLETICS — GET-STARTED.CSS
   Get Started / Join page styles
   ============================================================ */

/* ── GET STARTED HERO ─────────────────────────────────────── */
.gs-hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
    url('https://longevityathletics.com/wp-content/uploads/elementor/thumbs/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--dark-1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 30px 80px;
}

.gs-form-wrapper {
  width: 100%;
  max-width: 640px;
}

.gs-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.gs-form-logo {
  text-align: center;
  margin-bottom: 28px;
}

.gs-form-logo img {
  height: 60px;
  width: auto;
  margin: 0 auto;
}

.gs-form-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-1);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.2;
}

.gs-form-limited {
  text-align: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gs-form-limited::before,
.gs-form-limited::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,175,239,0.3);
}

/* ── Checklist ────────────────────────────────────────────── */
.gs-checklist {
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #555;
  font-family: var(--font-heading);
  font-weight: 500;
}

.gs-check-item .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  color: white;
}

/* ── Form Section Label ───────────────────────────────────── */
.gs-section-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--mid-gray);
  text-align: center;
  margin: 24px 0 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--border-color);
}

/* ── Fields ───────────────────────────────────────────────── */
.gs-field {
  margin-bottom: 14px;
}

.gs-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 5px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gs-field input,
.gs-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  color: var(--dark-1);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.gs-field input:focus,
.gs-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,175,239,0.1);
}

.gs-field textarea {
  resize: vertical;
  min-height: 90px;
}

.gs-field-phone {
  display: flex;
  gap: 8px;
}

.gs-field-phone .phone-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  background: var(--light-gray);
  color: var(--dark-1);
  white-space: nowrap;
  cursor: default;
}

.gs-field-phone input {
  flex: 1;
}

/* ── Consent ──────────────────────────────────────────────── */
.gs-consent {
  margin: 14px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gs-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}

.gs-consent label {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.5;
  cursor: pointer;
}

.gs-consent label a {
  color: var(--accent);
}

/* ── Submit ───────────────────────────────────────────────── */
.gs-submit {
  width: 100%;
  margin-top: 20px;
  padding: 17px;
  font-size: 1.05rem;
  justify-content: center;
}

/* ── GHL placeholder note ─────────────────────────────────── */
.ghl-note {
  font-size: 0.78rem;
  color: var(--accent);
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── QUOTE BANNER ─────────────────────────────────────────── */
.quote-banner {
  background: var(--dark-1);
  padding: 64px 30px;
  text-align: center;
}

.quote-banner blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.45;
}

.quote-banner blockquote::before {
  content: '"';
  color: var(--accent);
  font-size: 3em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
  font-family: Georgia, serif;
}

.quote-banner blockquote::after {
  content: '"';
  color: var(--accent);
  font-size: 3em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 4px;
  font-family: Georgia, serif;
}

/* ── GS STEPS ─────────────────────────────────────────────── */
.gs-steps-section {
  padding: 80px 30px;
  background: var(--white);
}

/* ── LOCATION BAR ─────────────────────────────────────────── */
.gs-location-bar {
  background: var(--accent);
  padding: 48px 30px;
  text-align: center;
}

.gs-location-bar h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.gs-location-bar p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
}

.gs-location-bar a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gs-location-bar a:hover {
  color: var(--white);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .gs-hero {
    padding: 100px 16px 60px;
  }

  .gs-form-card {
    padding: 32px 20px;
  }

  .gs-form-title {
    font-size: 1.35rem;
  }
}
