/* ===== BISHSTRONG GRANT STEPS SECTION ===== */
.bsg-steps {
    display:        flex;
    flex-direction: column;
    gap:            14px;
    font-family:    "Montserrat", sans-serif;
}
.bsg-step {
    background:    rgba(255,255,255,.08);
    border:        1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding:       20px 24px;
    display:       flex;
    align-items:   center;
    gap:           16px;
    transition:    background .25s;
}
.bsg-step:hover { background: rgba(255,255,255,.14); }
.bsg-num {
    width:           42px;
    height:          42px;
    min-width:       42px;
    background:      #2a7d4f;
    border-radius:   10px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       17px;
    font-weight:     900;
    color:           #fff;
}
.bsg-step-title {
    font-size:   14px;
    font-weight: 600;
    color:       rgba(255,255,255,.9);
    line-height: 1.4;
}
.bsg-step-sub {
    font-size:   12px;
    font-weight: 400;
    color:       rgba(255,255,255,.5);
    margin-top:  3px;
}

/*Small Line Headlines*/
.bsh-eyebrow {
    display:        inline-flex;
    align-items:    center;
    gap:            10px;
    font-family:    "Montserrat", sans-serif;
    font-size:      11px;
    font-weight:    800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color:          var(--eyebrow-color, #1a4f8a);
    margin-bottom:  12px;
    line-height:    1;
}
.bsh-eyebrow-line {
    display:        inline-block;
    width:          22px;
    min-width:      22px;
    height:         2px;
    background:     var(--eyebrow-line-color, var(--eyebrow-color, #1a4f8a));
    border-radius:  2px;
    vertical-align: middle;
    position:       relative;
    top:            4px;
}
/* Centered version — wrap in a block div with this class */
.bsh-eyebrow-wrap-center {
    display:    flex;
    justify-content: center;
    margin-bottom: 12px;
}
.bsh-eyebrow-wrap-center .bsh-eyebrow {
    margin-bottom: 0;
}

/* ============================================================
   BISHSTRONG CONTACT PAGE — CSS
   Capital House Media
   Add to: Divi → Theme Options → Custom CSS
   ============================================================ */

/* ---- Base wrapper ---- */
.bsc-wrap { font-family: "Montserrat", sans-serif; color: #1a2332; }
.bsc-wrap *, .bsc-wrap *::before, .bsc-wrap *::after { box-sizing: border-box; }

/* ---- PAGE HERO ---- */
.bsc-hero {
    background:  linear-gradient(135deg, #1a4f8a 0%, #2563ab 60%, #1e5fa0 100%);
    padding:     72px 64px 80px;
    position:    relative;
    overflow:    hidden;
}
.bsc-hero::before {
    content:       '';
    position:      absolute;
    bottom:        -80px;
    right:         -80px;
    width:         360px;
    height:        360px;
    border-radius: 50%;
    background:    rgba(255,255,255,.05);
    pointer-events:none;
}
.bsc-hero::after {
    content:       '';
    position:      absolute;
    top:           -40px;
    left:          30%;
    width:         200px;
    height:        200px;
    border-radius: 50%;
    background:    rgba(75,190,126,.08);
    pointer-events:none;
}
.bsc-hero-inner {
    position:  relative;
    z-index:   1;
    max-width: 760px;
}
.bsc-hero-title {
    font-size:      clamp(36px, 5vw, 60px);
    font-weight:    900;
    color:          #fff;
    letter-spacing: -2px;
    line-height:    1;
    margin:         0 0 16px;
}
.bsc-hero-title span { color: #4bbe7e; }
.bsc-hero-sub {
    font-size:  16px;
    color:      rgba(255,255,255,.72);
    line-height:1.75;
    margin:     0;
    max-width:  560px;
}

/* ---- MAIN LAYOUT ---- */
.bsc-body {
    display:               grid;
    grid-template-columns: 1fr 380px;
    gap:                   48px;
    max-width:             1200px;
    margin:                0 auto;
    padding:               64px 64px 80px;
}

/* ---- FORM CARD ---- */
.bsc-form-card {
    background:    #fff;
    border:        1px solid #dde4ed;
    border-radius: 20px;
    padding:       40px 44px;
    box-shadow:    0 4px 32px rgba(26,79,138,.06);
}
.bsc-form-card h2 {
    font-size:      22px;
    font-weight:    900;
    color:          #1a2332;
    margin:         0 0 6px;
    letter-spacing: -.5px;
}
.bsc-form-card .bsc-form-sub {
    font-size:   14px;
    color:       #718096;
    margin:      0 0 32px;
    line-height: 1.6;
}

/* CF7 form grid */
.bscf-grid {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   18px 22px;
}
.bscf-field-full { grid-column: 1 / -1; }
.bscf-field {
    display:        flex;
    flex-direction: column;
    gap:            6px;
}
.bscf-field label {
    font-size:   13px;
    font-weight: 600;
    color:       #1a2332;
}
.bscf-req  { color: #e53e3e; font-weight: 700; margin-left: 2px; }
.bscf-hint { font-size: 12px; color: #a0aec0; font-weight: 400; margin-left: 4px; }

/* All CF7 inputs */
.bsc-form-card .wpcf7-form input[type="text"],
.bsc-form-card .wpcf7-form input[type="email"],
.bsc-form-card .wpcf7-form input[type="tel"],
.bsc-form-card .wpcf7-form textarea,
.bsc-form-card .wpcf7-form select {
    width:              100% !important;
    padding:            11px 15px !important;
    border:             1.5px solid #dde4ed !important;
    border-radius:      8px !important;
    font-family:        "Montserrat", sans-serif !important;
    font-size:          14px !important;
    font-weight:        500 !important;
    color:              #1a2332 !important;
    background:         #fff !important;
    transition:         border-color .2s, box-shadow .2s !important;
    box-sizing:         border-box !important;
    appearance:         none !important;
    -webkit-appearance: none !important;
    outline:            none !important;
}
.bsc-form-card .wpcf7-form input:focus,
.bsc-form-card .wpcf7-form textarea:focus,
.bsc-form-card .wpcf7-form select:focus {
    border-color: #1a4f8a !important;
    box-shadow:   0 0 0 3px rgba(26,79,138,.1) !important;
}
.bsc-form-card .wpcf7-form input::placeholder,
.bsc-form-card .wpcf7-form textarea::placeholder {
    color:       #a0aec0 !important;
    font-weight: 400 !important;
}
.bsc-form-card .wpcf7-form textarea {
    resize:     vertical !important;
    min-height: 140px !important;
    line-height:1.6 !important;
}
.bsc-form-card .wpcf7-form select {
    background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a4f8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat:   no-repeat !important;
    background-position: right 14px center !important;
    padding-right:       40px !important;
    cursor:              pointer !important;
}

/* Validation */
.bsc-form-card .wpcf7-form input.wpcf7-not-valid,
.bsc-form-card .wpcf7-form textarea.wpcf7-not-valid,
.bsc-form-card .wpcf7-form select.wpcf7-not-valid {
    border-color: #e53e3e !important;
    box-shadow:   0 0 0 3px rgba(229,62,62,.08) !important;
}
.bsc-form-card .wpcf7-not-valid-tip {
    font-family: "Montserrat", sans-serif !important;
    font-size:   12px !important;
    font-weight: 600 !important;
    color:       #e53e3e !important;
    margin-top:  4px !important;
}
.bsc-form-card .wpcf7-response-output { display: none !important; }

/* Submit button */
.bscf-submit-wrap { margin-top: 8px; }
.bsc-form-card .wpcf7-form input[type="submit"] {
    width:           100% !important;
    background:      #1a4f8a !important;
    color:           #fff !important;
    border:          none !important;
    border-radius:   8px !important;
    font-family:     "Montserrat", sans-serif !important;
    font-size:       15px !important;
    font-weight:     700 !important;
    padding:         14px 32px !important;
    cursor:          pointer !important;
    box-shadow:      0 6px 24px rgba(26,79,138,.3) !important;
    transition:      all .25s !important;
    letter-spacing:  .3px !important;
}
.bsc-form-card .wpcf7-form input[type="submit"]:hover {
    background:  #2563ab !important;
    transform:   translateY(-1px) !important;
    box-shadow:  0 10px 32px rgba(26,79,138,.4) !important;
}
.bsc-form-card .wpcf7-form input[type="submit"]:disabled {
    opacity:   .6 !important;
    transform: none !important;
    cursor:    not-allowed !important;
}

/* ---- SUCCESS STATE ---- */
.bsc-success-wrap {
    display:         none;
    flex-direction:  column;
    align-items:     center;
    text-align:      center;
    padding:         56px 32px;
    animation:       bscFadeUp .5s ease forwards;
}
.bsc-success-wrap.bsc-visible { display: flex; }

@keyframes bscFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bsc-success-icon {
    width:           68px;
    height:          68px;
    background:      linear-gradient(135deg, #1a4f8a, #3b82c4);
    border-radius:   50%;
    display:         flex;
    align-items:     center;
    justify-content: center;
    margin-bottom:   22px;
    box-shadow:      0 10px 32px rgba(26,79,138,.3);
    animation:       bscPop .45s cubic-bezier(.34,1.56,.64,1) .2s both;
}
@keyframes bscPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.bsc-success-title {
    font-size:      22px;
    font-weight:    900;
    color:          #1a2332;
    margin-bottom:  8px;
    letter-spacing: -.5px;
}
.bsc-success-title span { color: #1a4f8a; }
.bsc-success-sub {
    font-size:  14px;
    color:      #718096;
    line-height:1.7;
    max-width:  360px;
    margin:     0;
}

/* ---- RIGHT INFO PANEL ---- */
.bsc-info { display: flex; flex-direction: column; gap: 20px; }

.bsc-info-card {
    background:    #fff;
    border:        1px solid #dde4ed;
    border-radius: 16px;
    padding:       28px 30px;
    box-shadow:    0 2px 12px rgba(26,79,138,.04);
}
.bsc-info-card-icon {
    width:           44px;
    height:          44px;
    border-radius:   10px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    margin-bottom:   14px;
}
.bsc-info-card-icon.blue  { background: #e8f0f9; color: #1a4f8a; }
.bsc-info-card-icon.green { background: #e6f4ec; color: #2a7d4f; }
.bsc-info-card h3 {
    font-size:      14px;
    font-weight:    800;
    color:          #1a2332;
    margin:         0 0 6px;
    letter-spacing: .2px;
}
.bsc-info-card p {
    font-size:  13px;
    color:      #718096;
    line-height:1.65;
    margin:     0;
}
.bsc-info-card a {
    color:           #1a4f8a;
    font-weight:     600;
    text-decoration: none;
    transition:      color .2s;
}
.bsc-info-card a:hover { color: #2563ab; }

/* Grant CTA card */
.bsc-grant-card {
    background:    linear-gradient(135deg, #2a7d4f, #34a465);
    border-radius: 16px;
    padding:       28px 30px;
    box-shadow:    0 8px 28px rgba(42,125,79,.25);
}
.bsc-grant-card h3 {
    font-size:  16px;
    font-weight:900;
    color:      #fff;
    margin:     0 0 8px;
}
.bsc-grant-card p {
    font-size:  13px;
    color:      rgba(255,255,255,.8);
    line-height:1.65;
    margin:     0 0 18px;
}
.bsc-grant-card a {
    display:         inline-block;
    background:      #fff;
    color:           #2a7d4f !important;
    text-decoration: none;
    font-size:       13px;
    font-weight:     700;
    padding:         10px 22px;
    border-radius:   6px;
    transition:      transform .2s, box-shadow .2s;
    box-shadow:      0 4px 12px rgba(0,0,0,.15);
}
.bsc-grant-card a:hover {
    transform:  translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .bsc-body { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px 64px; }
    .bsc-info  { flex-direction: row; flex-wrap: wrap; }
    .bsc-info > * { flex: 1; min-width: 240px; }
}
@media (max-width: 768px) {
    .bsc-hero        { padding: 56px 24px 64px; }
    .bsc-body        { padding: 40px 20px 56px; }
    .bsc-form-card   { padding: 28px 22px; }
    .bscf-grid       { grid-template-columns: 1fr; }
    .bscf-field-full { grid-column: 1; }
    .bsc-info        { flex-direction: column; }
}