/* Sacred Heart Health Walk - Tactical-01 Enrollment Card Styles */
.enrollment-card {
    background-color: #0b101a;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #1f2b3e;
}

/* Venue Briefing Bar */
.venue-brief {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    border-top: 1px solid #1f2b3e;
    border-bottom: 1px solid #1f2b3e;
    margin-bottom: 30px;
    background: rgba(164, 227, 32, 0.02);
}

/* The Three Division Boxes */
.division-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.div-card {
    background-color: #06090f;
    border: 2px solid #1f2b3e;
    border-radius: 12px;
    padding: 25px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.div-card.active {
    border-color: #a4e320;
    background-color: rgba(164, 227, 32, 0.08);
    box-shadow: 0 0 20px rgba(164, 227, 32, 0.1);
}

.div-tag { color: #5a6b82; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px; }
.div-title { color: white; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; margin-bottom: 5px; }
.div-price { color: #a4e320; font-size: 1rem; font-weight: 800; }

/* Mobile Stack */
@media screen and (max-width: 768px) {
    .division-cards { grid-template-columns: 1fr; }
    .venue-brief { flex-direction: column; gap: 10px; align-items: center; }
    .enrollment-card { padding: 30px 20px; }
}
/* Sacred Heart Health Walk - Tactical-01 Enrollment Card Styles */
.enrollment-card {
    background-color: #0b101a;
    border-radius: 16px;
    padding: 40px;
    max-width: 800px; /* Slightly wider to fit the 3 boxes better */
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #1f2b3e;
}

.deployment-clearance {
    color: #8bc34a;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-header h2 {
    color: white;
    font-size: 2.5rem;
    margin: 5px 0 30px 0;
    text-transform: uppercase;
}

.text-green { color: #a4e320; }

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label, .section-label {
    color: #5a6b82;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 800;
}

.input-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #1f2b3e;
    color: white;
    font-size: 1rem;
    padding: 10px 0;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-bottom: 1px solid #a4e320;
}

/* --- THE PREMIUM BOXES --- */
.division-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.div-card {
    background-color: #06090f;
    border: 2px solid #1f2b3e; /* Thicker border for better visibility */
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.div-card .div-tag {
    display: block;
    color: #5a6b82;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.div-card .div-title {
    display: block;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.div-card .div-price {
    display: block;
    color: #a4e320;
    font-size: 1rem;
    font-weight: 800;
}

/* Active State - This is what makes it glow */
.div-card.active {
    border-color: #a4e320;
    background-color: rgba(164, 227, 32, 0.08);
    box-shadow: 0 0 20px rgba(164, 227, 32, 0.15);
    transform: translateY(-3px);
}

.btn-proceed {
    width: 100%;
    background: linear-gradient(90deg, #bcf047, #98d115);
    color: #06090f;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(164, 227, 32, 0.2);
    transition: all 0.3s ease;
}

.btn-proceed:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(164, 227, 32, 0.4);
}

/* --- MOBILE OVERRIDE --- */
@media screen and (max-width: 768px) {
    .enrollment-card { padding: 30px 20px; width: 95%; }
    .input-grid { grid-template-columns: 1fr; gap: 20px; }
    .division-cards { grid-template-columns: 1fr; }
    .form-header h2 { font-size: 1.8rem; }
    .div-card { padding: 20px; }
}