@charset "utf-8";
/* ============================================================
   FONT IMPORTS
============================================================ */
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/Nunito-SemiBold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/Nunito-Bold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/Nunito-ExtraBold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans SC';
  src: url('/fonts/OpenSansSemiCondensed-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Lato Bold (700) */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/Lato-Bold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    src: url('/fonts/NunitoSans-Variable.woff2') format('woff2-variations');
    font-weight: 200 900;
}


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

body {
    background: rgba(56, 71, 68, 0.03); /* extremely faint dark green */
}

/* ============================================================
   TOP HERO BAR
============================================================ */


/* ===========================
   TOP HERO BAR
=========================== */
.top-hero-bar {
    width: 100%;
    background: #4A5F5A;
    min-height: 100px;
    display: flex;
    align-items: center;
    }

/* Inner container */
.top-hero-bar-inner {
    width: 90vw;
    max-width: 1500px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    padding: 0;
}

/* ===========================
   LEFT: LOGO
=========================== */
.tb-logo {
    flex-shrink: 1;          /* allow shrinking */
    display: flex;
    align-items: center;
    max-width: 140px;        /* desktop size */
    min-width: 60px;         /* prevents collapse but allows scaling */
}

.tb-logo img {
    height: clamp(28px, 3vw, 40px);  /* scales EXACTLY like title/home */
    width: auto;
    display: block;
}

/* ===========================
   CENTER: TITLE
=========================== */
.tb-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;

    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;

    font-size: clamp(18px, 2vw, 32px); /* responsive title */
}

/* ===========================
   RIGHT: HOME LINK
=========================== */
.tb-home {
    flex-shrink: 1; /* allow shrinking at same rate as title */
    display: flex;
    align-items: center;
    gap: 6px;

    color: #fff;
    text-decoration: none;

    font-family: 'Nunito', sans-serif;
    font-size: clamp(18px, 1.2vw, 18px);
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 4px 6px;
}

.tb-home-icon {
    height: clamp(18px, 1.2vw, 18px); /* icon scales at same rate as text */
    width: auto;
    display: block;
}

/* HOME LINK HOVER — text + icon turn FBCC36 */
.tb-home:hover {
    color: #FBCC36;
}

.tb-home:hover .tb-home-icon {
    filter: brightness(0) saturate(100%) invert(83%) sepia(28%) saturate(748%) hue-rotate(356deg) brightness(101%) contrast(96%);
}


/* ============================================================
   OUTER FORM WRAPPER (OVERLAPS HERO BAR)
============================================================ */
.form-outer {
    width: 90vw;              
    margin: -15px auto 0 auto;   /* now handles the overlap */
    background: #ffffff;        
    border-radius: 8px;         
    box-shadow: 3px 3px 6px rgba(56, 71, 68, 0.25);
    padding: 40px 0;            
    box-sizing: border-box;

    position: relative;          /* required for overlap */
    z-index: 10;                 /* sits above the hero bar */
}


/* ============================================================
   FIXED-WIDTH FORM WRAPPER (NO SHRINKING)
============================================================ */
.form-wrapper {
    max-width: 410px;
    width: 100%;
    margin: 0 auto;              /* no overlap here anymore */
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;

    /* removed shadow */
    /* removed overlap positioning */
}


/* ============================================================
   HEADINGS — FIXED FONT SIZES (NEVER CHANGE)
============================================================ */
.form-step h1 {
  color: #384744;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.6rem; /* fixed size */
  margin: 0 0 6px;
  line-height: 1.25;
}

.form-step h2 {
  color: #384744;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.25rem; /* fixed size */
  margin: 4px 0 12px;
  line-height: 1.3;
}
/* ============================================================
   FORM STEP VISIBILITY
============================================================ */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}

/* ============================================================
   DETAILS / SUMMARY — Form-Field Geometry + 90° Carets
============================================================ */

/* 1. DETAILS CONTAINER */
details {
    margin: 16px 0;
    padding: 0;
    border-radius: 8px; /* match text boxes */
    overflow: hidden;
    background: rgba(56, 71, 68, 0.05); /* faint translucent dark green */
    box-shadow: 2px 2px 5px rgba(56, 71, 68, 0.25); /* lower-right shadow */
}


/* 2. SUMMARY HEADER (matches text-box height + rounding) */
summary {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #384744;
    cursor: pointer;

    /* MATCH TEXT BOX GEOMETRY */
    height: 46px;                 /* same as your inputs */
    display: flex;
    align-items: center;          /* vertical centering */
    padding: 0 16px 0 46px;       /* space for icon */
    border-radius: 8px;           /* same as inputs */

    position: relative;
    outline: none;
    list-style: none;
    background: rgba(56, 71, 68, 0.05);
}


/* 3. QUESTION MARK ICON (smaller circle) */
summary::before {
    content: "?";
    font-family: 'Open Sans SC', sans-serif;
    font-weight: 800;
    font-size: 11px;
    color: #ffffff;
    background: #384744;
    width: 18px;
    height: 18px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}


/* 4. CARET ICON (true 90° angle, centered) */
/* DOWN CARET (closed) */
summary::after {
    content: "⌵"; /* your perfect down caret */
    font-size: 1.3rem;
    color: #384744;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) scaleY(1); /* normal orientation */
    transition: transform 0.25s ease;
}

/* UP CARET (open) */
details[open] summary::after {
    transform: translateY(-50%) scaleY(-1); /* flips caret upward */
}





/* 6. SUMMARY HOVER */
summary:hover,
summary:focus {
    text-decoration: underline;
    text-decoration-color: #384744;
}


/* 7. SUMMARY FOCUS SHADOW */
summary:focus-visible {
    box-shadow: 0 0 4px rgba(56, 71, 68, 0.35);
    border-radius: 8px;
}


/* 8. DETAILS CONTENT (unified background with summary) */
details > *:not(summary) {
    padding: 3px 16px 16px 16px;
    background: rgba(56, 71, 68, 0.05); /* EXACT same background */
    border-top: none; /* remove seam */
}


/* 9. PARAGRAPH TEXT INSIDE DETAILS */
details p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.45;
    color: #384744;
    margin: 0;
}


/* ============================================================
   TEXT BOX - Form Control
============================================================ */
/* Wrapper for each field */
.form-field {
  margin-bottom: 20px;
  width: 100%;
}

/* left:label above input */
.form-field label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #384744; /* your dark green */
}

/* Input styling */
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="password"], .form-field input[type="tel"], .form-field input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  border: 2px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus Shadows styling */
/* KEEP your normal focus styling */
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: #384744;
  outline: none;
  box-shadow: 3px 3px 0 rgba(56, 71, 68, 0.35);
}
/* Focus state with dark green shadow */
.form-field input:focus {
  outline: none; /* Removes the default browser focus ring */
  border-color: #384744;
  box-shadow: 1.5px 1.5px 3px rgba(56, 71, 68, 0.8);
}
.required-flag {
  font-weight: normal; /* not bold */
  color: #ff0000; /* bright red */
  margin-left: 4px; /* small spacing */
  font-size: 0.9em; /* slightly smaller if you want */
}

.radio-group input[type="radio"]:checked {
  accent-color: #384744; /* your dark green */
}

/* ============================================================
   FORM FIELDS - Radio Group: ;
============================================================ */
.radio-group input[type="radio"]:checked {
  accent-color: #384744; /* your dark green */
}
/* Remove the browser's white focus outline */
input[type="radio"]:focus {
  outline: none !important;
}

/* Remove Firefox's inner focus ring */
input[type="radio"]::-moz-focus-inner {
  border: 0;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #384744; /* your dark green */
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: relative;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(56, 71, 68, 0.25); /* your lower-right shadow */
}

/* checked dot */
input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  inset: 3px;
  background: #384744;
  border-radius: 50%;
}

/* Remove WebKit's default halo */
input[type="radio"]:focus-visible {
  outline: none;
  background-color: transparent;
}

/* ============================================================
   FORM FIELDS - SELECT
============================================================ */
.form-field select {
    width: 100%;
    padding: 10px 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    border: 2px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* MATCH INPUT-SELECT FOCUS STYLE */
.form-field select:focus {
    border-color: #384744;
    box-shadow: 2px 2px 4px rgba(56, 71, 68, 0.30);
    outline: none;
}

.form-field select option:hover,
.form-field select option:focus,
.form-field select option:active {
    background-color: rgba(56, 71, 68, 0.10); /* subtle charcoal tint */
    color: #384744; /* keeps text readable */
}

/* ============================================================
   FORM FIELDS - REQUIRED VALIDATION
============================================================ */
/* Required flag */
.required-flag {
  font-weight: 400;
  color: #ff0000;
  margin-left: 4px;
}
/* Wrapper for positioning the exclamation icon */
.input-wrapper {
  position: relative;
}
/* Hide error UI by default */
.input-error-icon, .input-error-message {
  display: none;
}
/* Red border when invalid */
input.input-error {
  border-color: #ff0000 !important;
}
/* Exclamation icon on right */
.input-error-icon {
  font-family: 'Open Sans SC', sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 12pt; /* Matches what you saw in Word */
  color: #ff0000;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
/* Warning box */
/* Hide error UI by default */
.input-error-icon,
.input-error-message {
  display: none;
}

.input-error-message {
  margin-top: 6px;
  height: 28px;
  padding: 0 10px;
  background: rgba(255, 0, 0, 0.06);
  color: #ff0000;
  border-left: 4px solid #ff0000;
  border-radius: 4px;
  font-size: 0.9rem;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  /* DO NOT put display:flex here */
}


.input-error-message,
.input-error-message .error-text {
    font-family: 'Nunito', sans-serif !important;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
}


.error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #B00020; /* dark red */
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   NAV BUTTONS
============================================================ */
/* Button container: Prev left, Next right */
.nav-buttons {
  display: flex;
  justify-content: flex-end; /* right-align both buttons */
  gap: 10px; /* spacing between buttons */
  margin-top: 20px;
}
/* Placeholder for Step 1 to keep Next on the right */
.btn-placeholder {
  width: 82px; /* same width as buttons */
  display: inline-block;
}
/* Shared button base */
.next-btn, .prev-btn {
  width: 82px;
  padding: 7px 0; /* ~34px tall */
  border: none;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
/* NEXT BUTTON — Primary Action */
.next-btn {
  background: #FBCC36;
  color: #384744;
}
.next-btn:hover {
  background: #B39548;
  color: #FFFFFF;
}
/* PREV BUTTON — Secondary Action */
.prev-btn {
  background: #384744;
  color: #FFFFFF;
}
.prev-btn:hover {
  background: #B39548;
  color: #FFFFFF;
}


/* ============================================================
   PROGRESS DOTS
============================================================ */
.progress-dots {
    display: flex;
    justify-content: space-between; /* spreads dots across the container */
    align-items: center;
    padding: 10px 0;
    width: 100%;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #384744; /* inactive: your dark green */
    border-radius: 50%;
    opacity: 0.35; /* subtle inactive look */
    transition: background-color 0.25s ease, opacity 0.25s ease;
}

.dot.active {
    background-color: #B39548; /* your gold accent */
    opacity: 1;
}

.review-page {
font-family: 'Nunito Sans', sans-serif !important;
font-size: 1rem;
font-weight: 600;
line-height: 1.4;
    
}

    
/* ============================================================
   CONGRATULATIONS PAGE — HEADINGS & BLOCK STRUCTURE
   (Paragraph <p> styles intentionally excluded)
============================================================ */

/* BLOCK 1 — Congratulations */
.congrats-block {
    text-align: center;
    margin-bottom: 50px;
}

/* H1 — Main headline */
.congrats-block h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 2rem;          /* increased size */
    line-height: 1.2;
    color: #384744;
    margin: 0 0 14px 0;
}

/* H2 — Subheadline */
.congrats-block h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;        /* increased size */
    line-height: 1.3;
    color: #4A5F5A;
    margin: 22px 0 12px 0;
}

/* Image in the congratulations block */
.congrats-image {
    width: 130px;             /* slightly larger for emphasis */
    max-width: 100%;
    margin: 20px auto;
    display: block;
}


/* ============================================================
   BLOCKS 2–4 — Step Sections
============================================================ */

.info-block {
    text-align: center;
    margin-bottom: 45px;
}

/* Step images */
.info-image {
    width: 110px;             /* increased size */
    max-width: 100%;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Step titles (Step 1, Step 2, etc.) */
.info-block h2 {
   font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;        /* increased size */
    line-height: 1.3;
    color: #4A5F5A;
    margin: 22px 0 12px 0;
}


/* Paragraph text under each heading */
/* Paragraph text under each heading */
.congrats-block p,
.info-block p {
    font-family: 'Nunito Sans', sans-serif; /* variable font */
    font-weight: 400;
    font-size: 1.05rem;        /* bumped up from 1rem */
    line-height: 1.65;         /* increased for readability */
    text-align: justify;
    text-justify: inter-word;
    margin: 0 auto 24px auto;  /* slightly more breathing room */
}




/* MOBILE */

@media (max-width: 600px) {
    .tb-logo img {
        max-height: 28px;
    }
}


@media (max-width: 600px) {
    .tb-title {
        font-size: 1.1rem; /* or 1.2rem depending on your design */
    }
}
