/* =========================================================
   THE DOG TEACH - FRONT-END STYLESHEET
   Public-facing stylesheet for:
   - index.php
   - prospect.php
   - thankyou.php
   Admin/CRM styles now live in admin-style.css
   ========================================================= */

/* =========================================================
   1) DESIGN TOKENS
   ========================================================= */
:root {
  --bg: #0f1411;
  --bg-elevated: #151c18;
  --bg-panel: #1a231f;
  --bg-soft: #202b26;

  --card: rgba(24, 33, 29, 0.92);
  --card-strong: rgba(20, 27, 24, 0.96);
  --card-border: rgba(194, 163, 92, 0.18);

  --text: #f5f1e7;
  --text-soft: #d7d0c2;
  --text-muted: #b3ab9b;

  --gold: #caa45b;
  --gold-bright: #e3c07a;
  --gold-deep: #9b7840;

  --green: #567a4f;
  --green-bright: #6d965f;
  --green-deep: #415d3d;

  --red: #a84f4f;
  --red-soft: rgba(168, 79, 79, 0.12);

  --white: #ffffff;
  --black: #000000;

  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 18px 42px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.22);
  --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.16);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --site-max: 1200px;
  --content-max: 860px;

  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(202, 164, 91, 0.28);

  --font-sans: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

/* =========================================================
   2) RESET / BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(202, 164, 91, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(86, 122, 79, 0.10), transparent 24%),
    linear-gradient(180deg, #0d120f 0%, #111713 48%, #0d120f 100%);
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(202, 164, 91, 0.26);
  color: var(--white);
}

/* =========================================================
   3) GLOBAL LAYOUT HELPERS
   ========================================================= */
.site-wrap,
.page-wrap,
.wrap {
  width: min(calc(100% - 32px), var(--site-max));
  margin: 0 auto;
}

.page-wrap {
  padding: 44px 0 72px;
}

.wrap {
  padding: 40px 0 72px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.muted {
  color: var(--text-muted);
}

.full {
  grid-column: 1 / -1;
}

/* =========================================================
    3.0 SITE HEADER / BRAND BAR
   ========================================================= */

/* =========================================================
   SITE HEADER / BRAND BAR
   ========================================================= */

.site-header {
  width: 100%;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(90deg,
      #07140f 0%,
      #1a3a28 24%,
      #cfa23a 50%,
      #1a3a28 76%,
      #07140f 100%);

  border-top: 1px solid rgba(255, 214, 105, 0.42);
  border-bottom: 1px solid rgba(255, 214, 105, 0.42);

  box-shadow:
    0 0 12px rgba(214, 166, 66, 0.28),
    inset 0 0 22px rgba(0, 0, 0, 0.45);

  z-index: 10;
}

.site-header::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(110deg,
      transparent 0%,
      transparent 42%,
      rgba(255, 238, 170, 0.16) 50%,
      transparent 58%,
      transparent 100%);

  transform: translateX(-120%);
  animation: dogteach-shimmer 7s ease-in-out infinite;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;

  background: linear-gradient(90deg, transparent, #ffe08a, transparent);
  opacity: 0.55;
}

.site-header__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
}
/* =HEADER CSS FONT== */
.site-header__brand {
  color: #caa45b; /* gold */
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  /* BLACK OUTLINE */
  -webkit-text-stroke: 1px #000;

  /* DEPTH */
  text-shadow:
    0 1px 0 rgba(0,0,0,0.9),
    0 3px 10px rgba(0,0,0,0.6);
}
.site-header__brand:hover {
  color: #ffffff;
}

@keyframes dogteach-shimmer {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  42% {
    transform: translateX(120%);
    opacity: 0.85;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

/* =========================================================
   3.1) FOOTER ADD-ONS
   ========================================================= */

.site-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(202, 164, 91, 0.22);
  background: linear-gradient(180deg, rgba(202, 164, 91, 0.16), rgba(155, 120, 64, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-footer-inner {
  width: min(calc(100% - 32px), var(--site-max));
  margin: 0 auto;
  padding: 18px 0 22px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #1a1307;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

/* =========================================================
   4) GLOBAL TYPOGRAPHY
   ========================================================= */
h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  line-height: 1.15;
  color: var(--white);
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: -0.03em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

p {
  margin: 0 0 14px;
  color: var(--text-soft);
}

.lead {
  font-size: 1.08rem;
  margin-top: 10px;
  color: #ece5d8;
}

/* =========================================================
   5) SHARED BUTTONS / LINKS
   ========================================================= */
.btn,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.social-link:focus-visible,
.top-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(227, 192, 122, 0.85);
  outline-offset: 2px;
}

.btn,
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1307;
  box-shadow: 0 12px 24px rgba(202, 164, 91, 0.22);
}

.btn:hover,
.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(202, 164, 91, 0.28);
}

/* =========================================================
   GOLD SECONDARY BUTTONS
   ========================================================= */

.btn-secondary {
  background: linear-gradient(135deg, #d8b36a, var(--gold));
  color: #1a1307; /* black/dark text */
  border: 1px solid transparent;
  box-shadow: 0 10px 22px rgba(202, 164, 91, 0.20);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(202, 164, 91, 0.28);
}

/* Slightly smaller buttons still look clean */
.btn-secondary.btn-sm {
  padding: 8px 14px;
  min-height: 40px;
}

.btn.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1307;
  border-color: transparent;
}

/* =========================================
   GOLD DIVIDER
========================================= */
.gold-divider {
  width: min(500px, 82vw);
  height: 2px;
  margin: 16px auto 26px;

  background: linear-gradient(
    90deg,
    transparent 0%,
    #d4af37 20%,
    #ffd700 50%,
    #d4af37 80%,
    transparent 100%
  );

  box-shadow:
    0 0 6px rgba(212, 175, 55, 0.55),
    0 0 12px rgba(255, 215, 0, 0.35);
}

/* =========================================================
   6) INDEX.PHP
   ========================================================= */
main.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 40px 0 64px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.hero-copy,
.hero-panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: clamp(30px, 4vw, 54px);
}

.hero-copy h1 {
  max-width: 18ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 14px;
  width: 100%;
}

.hero-copy .cta-row .btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
  font-size: 1.05rem;
  padding: 14px 24px;
  box-shadow: 0 18px 36px rgba(202, 164, 91, 0.28);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.point {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}

.point strong {
  color: var(--white);
}

.hero-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.steps {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.steps li + li {
  margin-top: 12px;
}

/* =========================================================
   7.1) SOCIAL PROOF PANEL INDEX.PHP
   ========================================================= */

.social-proof-panel {
  display: flex;
  flex-direction: column;
  max-width: 980px;
  margin: 0 auto;
  gap: 20px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.platform-card h2,
.platform-card h3 {
  margin-bottom: 0;
}

.platform-card p {
  margin-bottom: 0;
}

.video-embed-shell {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-sm);
}

.video-embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.platform-preview {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.platform-preview-text {
  color: var(--text-soft);
}

.platform-preview-facebook strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.platform-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.youtube-card {
  border-color: rgba(202, 164, 91, 0.18);
}

.tiktok-card {
  border-color: rgba(255, 255, 255, 0.10);
}

.facebook-card {
  border-color: rgba(109, 150, 95, 0.16);
}
/* =========================================================
   7) PROSPECT.PHP
   ========================================================= */
.top-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-weight: 600;
}

.form-shell {
  max-width: var(--content-max);
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); 
  padding: clamp(20px, 3vw, 32px);
}

.form-header {
  margin-bottom: 28px;
}

.form-header h1 {
  color: var(--gold-bright);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.02em;
  position: relative;
}

/* subtle outline effect */
.form-header h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
  opacity: 0.6;
}

.form-alert {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(216, 96, 96, 0.32);
  background: var(--red-soft);
  color: #ffd6d6;
  font-weight: 600;
}

.section-block + .section-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Section headers (1. Owner Info, etc.) */
.section-block h2 {
  margin-bottom: 12px;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  text-align: center;
}

/* Optional: center supporting text under headers */
.section-block > p {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* gold bar under h2  (1. Owner Info, etc.) */
.section-block h2::after {
  content: "";
  display: block;
  width: 198px;
  height: 3px;
  margin: 6px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  opacity: 0.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Field labels */
.field label {
  color: var(--gold-bright);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: var(--gold-bright);
  border-radius: 14px;
  padding: 11px 13px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 241, 231, 0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(227, 192, 122, 0.6);
  box-shadow: 0 0 0 4px rgba(202, 164, 91, 0.12);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  color: var(--gold);
}

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

.field:focus-within label {
  color: var(--gold);
}

.field label.label-primary {
  color: #f3efe6;
  font-weight: 600;
}

.field:focus-within label.label-primary {
  color: #ffffff;
}

.checkbox-section {
  display: grid;
  gap: 14px;
}

.checkbox-group {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(202, 164, 91, 0.14);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

/* Checkbox group titles (Days / Times) */
.checkbox-group h3 {
  color: var(--gold-bright);
}

.checkbox-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.checkbox-item:hover {
  background: rgba(202, 164, 91, 0.06);
  border-color: rgba(202, 164, 91, 0.18);
  transform: translateY(-1px);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-bright);
  flex: 0 0 auto;
}

.checkbox-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-submit {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.form-submit button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.btn-submit-dog {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(86, 122, 79, 0.26);
  min-width: 320px;
  font-size: 1.05rem;
  padding: 14px 26px;
}

.btn-submit-dog:hover {
  background: linear-gradient(135deg, #79a56a, var(--green-bright));
  box-shadow: 0 18px 34px rgba(86, 122, 79, 0.32);
}

/* =========================================================
   MULTI-STEP FORM
   ========================================================= */

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.step-item {
  appearance: none;
  border: 1px solid rgba(202, 164, 91, 0.24);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  text-align: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(202, 164, 91, 0.16), rgba(155, 120, 64, 0.18));
  color: var(--gold-bright);
  transition:
    all 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  font-weight: 700;
}

.step-item span {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
}

.step-item small {
  display: block;
  margin-top: 3px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.step-item:hover {
  transform: translateY(-1px);
  border-color: rgba(227, 192, 122, 0.45);
  box-shadow: 0 10px 22px rgba(202, 164, 91, 0.18);
}

.step-item.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1307;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(202, 164, 91, 0.26);
}

.step-item.is-complete:not(.active) {
  background: linear-gradient(135deg, rgba(109, 150, 95, 0.28), rgba(86, 122, 79, 0.26));
  border-color: rgba(109, 150, 95, 0.34);
  color: #e7f2e2;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  gap: 10px;
}

.final-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.final-step-nav .btn {
  min-width: 220px;
}

@media (max-width: 640px) {
  .final-step-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .final-step-nav .btn {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   8) THANKYOU.PHP
   ========================================================= */
.thankyou-page {
  padding: 40px 0 72px;
}

.thankyou-page .card {
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
}

.thankyou-conversion-card {
  padding: 0;
  overflow: hidden;
}

.thankyou-hero {
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(202, 164, 91, 0.14), rgba(86, 122, 79, 0.10)),
    rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.thankyou-hero h1 {
  margin-bottom: 14px;
   color: var(--gold-bright);
  font-weight: 800;
}

.thankyou-hero p {
  max-width: 42rem;
  font-size: 1.06rem;
  color: #efe7d9;
}

.thankyou-page .body {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 24px;
}

.thankyou-page strong {
  color: var(--gold-bright);
  font-weight: 700;
}

/* Optional: slightly enhance lead paragraph */
.thankyou-hero p {
  color: #f0e6d2;
  font-weight: 500;
}

.message,
.next-steps-panel,
.expectations-panel,
.links-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.message-strong {
  background: linear-gradient(180deg, rgba(202, 164, 91, 0.09), rgba(255, 255, 255, 0.025));
  border-color: rgba(202, 164, 91, 0.16);
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.step-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1307;
  font-weight: 800;
  font-size: 0.95rem;
}

.affirmation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.affirmation-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.affirmation-card h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.expectations-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.expectations-list li + li {
  margin-top: 10px;
}

.links-panel h2 {
  margin-bottom: 10px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(202, 164, 91, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(202, 164, 91, 0.08);
  border-color: rgba(202, 164, 91, 0.4);
}

.fine-print {
  margin-top: 16px;
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* =========================================================
   SELECT FIX â€” FORCE READABLE DROPDOWN
   ========================================================= */

.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: #f5f1e7; /* keeps CLOSED select looking good */
  border-radius: 14px;
  padding: 14px 15px;
  appearance: auto;
}

/* ðŸ”¥ THIS IS THE IMPORTANT PART */
.field select option {
  color: #000000 !important;
  background: #ffffff !important;
}

/* =========================================================
   GLOBAL SELECT DROPDOWN READABILITY
   ========================================================= */

select option {
  color: #000000 !important;
  background: #ffffff !important;
}


/* =========================================================
   9) RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .grid,
  .checkbox-list,
  .social-grid,
  .affirmation,
  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .page-wrap,
  .wrap,
  main.hero {
    padding-top: 24px;
  }

  .form-shell,
  .hero-copy,
  .hero-panel,
  .thankyou-page .card {
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
  .site-wrap,
  .page-wrap,
  .wrap {
    width: min(calc(100% - 22px), var(--site-max));
  }

  .hero-copy,
  .hero-panel,
  .form-shell,
  .thankyou-page .card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .thankyou-hero,
  .thankyou-page .body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-row,
  .actions {
    flex-direction: column;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .social-link {
    width: 100%;
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }
}

@media (max-width: 600px) {
  main.hero {
    padding: 24px 0 44px;
  }

  .hero-copy {
    padding: 24px 18px;
  }

  .hero-copy .cta-row {
    margin: 24px 0 24px;
  }

  .hero-copy .cta-row .btn-primary {
    min-width: 0;
    width: min(100%, 330px);
    min-height: 56px;
  }

  .gold-divider {
    width: 72vw;
    margin: 14px auto 22px;
  }
}

@media (max-width: 600px) {
  .final-step-nav {
    gap: 10px;
  }

  .btn-submit-dog {
    margin-bottom: 0;
  }
}

/* =========================================================
   RETURN TO TOP BUTTON
   ========================================================= */

.return-top-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
}

.btn-return-top {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1307;
  border: 1px solid rgba(202, 164, 91, 0.4);
  box-shadow: 0 14px 28px rgba(202, 164, 91, 0.28);
  min-width: 240px;
  font-size: 1rem;
  padding: 12px 22px;
  letter-spacing: 0.02em;
}

.btn-return-top:hover {
  background: linear-gradient(135deg, #f0cd85, var(--gold-bright));
  box-shadow: 0 18px 36px rgba(202, 164, 91, 0.35);
  transform: translateY(-2px);
}

/* =========================================================
   INDEX HERO — GOLD HEADLINE OVERRIDE
   ========================================================= */

.hero-headline-gold {
  color: var(--gold-bright) !important;
  -webkit-text-stroke: 0.65px rgba(0, 0, 0, 0.48);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.42),
    0 2px 8px rgba(0, 0, 0, 0.38),
    0 0 14px rgba(202, 164, 91, 0.18);
}

/* =========================================
   PROSPECT MOBILE FOOTER GAP FIX
   ========================================= */
@media (max-width: 600px) {

  /* Kill extra vertical stretch */
  .page-wrap {
    padding-bottom: 8px;
  }

  .form-shell {
    margin-bottom: 0;
    padding-bottom: 12px;
  }

  /* Tighten button area */
  .step-nav,
  .final-step-nav {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* Remove hidden spacing inside last step */
  .form-step:last-child {
    padding-bottom: 0;
  }

  /* Pull footer up cleanly */
  .site-footer {
    margin-top: 0;
  }
}
