/* ==================================================
   GET INVOLVED MAIN PAGE
===================================================================================================================== */
/* HERO */
.get-involved-hero {
    padding:7rem 0;
    background:
    linear-gradient(135deg,var(--primary),var(--primary-light));
    color:white;
    overflow:hidden;
    position:relative;
}
.get-involved-hero::before {
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-200px;
    top:-150px;
    background:
    radial-gradient(circle,rgba(244,122,32,.35),transparent 70%);
}
.get-involved-hero-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
    position:relative;
    z-index:2;
}
.get-involved-hero .eyebrow {
    color:var(--accent-soft);
}
.get-involved-hero h1 {
    font-size:
    clamp(2.8rem,5vw,4.2rem);
    line-height:1.1;
    font-weight:800;
    margin-bottom:1.5rem;
}
.get-involved-hero p {
    font-size:1.15rem;
    line-height:1.7;
    max-width:600px;
    opacity:.92;
}
.hero-buttons {
    display:flex;
    gap:1rem;
    margin-top:2rem;
    flex-wrap:wrap;
}
/* PHOTO STACK */
.get-involved-photo-stack {
    position:relative;
    height:520px;
}
.get-involved-photo-stack img {
    position:absolute;
    width:80%;
    height:380px;
    object-fit:cover;
    border-radius:32px;
    box-shadow:0 35px 80px rgba(0,0,0,.35);
}
.get-involved-photo-stack img:first-child {
    top:0;
    left:0;
}
.get-involved-photo-stack img:last-child {
    bottom:0;
    right:0;
    width:70%;
    height:320px;
    border:8px solid white;
}
/* ==================================================
   SUPPORT PATHWAYS
================================================== */
.support-pathways {
    padding:6rem 0;
}
.section-header {
    text-align:center;
    max-width:700px;
    margin:0 auto 3rem;
}
.section-header h2 {
    color:var(--primary);
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
}
.section-subtitle {
    color:#64748b;
    line-height:1.7;
}
.modern-opportunities-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}
.opportunity-card {
    background:white;
    padding:2.5rem;
    border-radius:28px;
    border:1px solid var(--primary-soft);
    box-shadow:0 20px 60px rgba(46,43,122,.08);
    transition:.35s ease;
}
.opportunity-card:hover {
    transform:translateY(-10px);
    box-shadow:0 35px 80px rgba(46,43,122,.16);
}
.opportunity-icon {
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--accent-soft);
    color:var(--accent);
    font-size:2rem;
    margin-bottom:1.5rem;
}
.opportunity-card h3 {
    color:var(--primary);
    font-size:1.5rem;
    margin-bottom:1rem;
}
.opportunity-card p {
    color:#64748b;
    line-height:1.7;
}
.actions-list {
    list-style:none;
    padding:0;
    margin:1.5rem 0;
}
.actions-list li {
    display:flex;
    gap:.8rem;
    margin-bottom:.8rem;
    color:#475569;
}
.actions-list i {
    color:var(--accent);
}
.full-width {
    width:100%;
}
/* ==================================================
   WHY PARTNER SECTION
================================================== */
.why-partner-section {
    padding:6rem 0;
    background:linear-gradient(135deg,#faf9ff,#fff8f1);
}
.two-column-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}
.two-column-grid h2 {
    color:var(--primary);
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
}
.benefits-list {
    margin-top:2rem;
}
.benefit-item {
    display:flex;
    gap:1.2rem;
    margin-bottom:1.8rem;
}
.benefit-check {
    flex-shrink:0;
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--accent);
    color:white;
}
.benefit-item h4 {
    color:var(--primary);
    margin-bottom:.4rem;
}
.benefit-item p {
    color:#64748b;
    line-height:1.6;
}
.rounded-image {
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:32px;
    box-shadow:0 35px 80px rgba(46,43,122,.2);
}
/* ==================================================
   RESPONSIVE
================================================== */
@media(max-width:1100px){
.modern-opportunities-grid {
    grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:991px){
.get-involved-hero-grid,
.two-column-grid {
    grid-template-columns:1fr;
}
.get-involved-photo-stack {
    height:400px;
}
.modern-opportunities-grid {
    grid-template-columns:1fr;
}
.rounded-image {
    height:350px;
}
}
@media(max-width:600px){
.hero-buttons {
    flex-direction:column;
}
.hero-buttons .btn {
    width:100%;
}
.get-involved-photo-stack img {
    width:90%;
}
.get-involved-photo-stack img:last-child {
    width:75%;
}
}
/* ==================================================
   DONATE PAGE
====================================================================================================== */
/* HERO */
.donate-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(46,43,122,.95),
        rgba(74,71,150,.95)
    );
}
.donate-hero::before {
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(244,122,32,.25),transparent 40%);
}
.donate-hero .container {
    position:relative;
    z-index:2;
}
.donate-hero .eyebrow {
    color: var(--accent-soft);
}
.donate-hero h1 {
    font-size:clamp(2.5rem,5vw,4rem);
    font-weight:800;
    line-height:1.1;
    max-width:900px;
    margin:auto;
}
.donate-hero p:last-child {
    max-width:700px;
    margin:1.5rem auto 0;
    opacity:.9;
    font-size:1.15rem;
}
/* ==================================================
   DONATION AMOUNT CARDS
================================================== */
.donation-impact-section {
    margin-top:-4rem;
    position:relative;
    z-index:5;
}
.donation-impact-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
}
.donation-amount-card {
    border:none;
    cursor:pointer;
    padding:2rem;
    background:white;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(46,43,122,.12);
    transition:.35s ease;
}
.donation-amount-card strong {
    display:block;
    font-size:2.2rem;
    color:var(--primary);
}
.donation-amount-card span {
    color:var(--text-light);
}
.donation-amount-card:hover {
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(46,43,122,.18);
}
.donation-amount-card.active {
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
}
.donation-amount-card.active strong,
.donation-amount-card.active span {
    color:white;
}
/* ==================================================
   FORM CARD
================================================== */
.donation-card {
    background:white;
    border-radius:32px;
    padding:3rem;
    border:1px solid var(--primary-soft);
    box-shadow:0 25px 70px rgba(46,43,122,.12);
}
.donation-card h2 {
    color:var(--primary);
}
.donation-card p {
    color:var(--text-light);
}
/* ==================================================
   INPUTS
================================================== */
.form-label {
    color:var(--primary);
    font-weight:600;
}
.form-input,
.form-group input,
.form-group select,
.form-group textarea {
    border:1px solid var(--primary-soft);
    border-radius:14px;
    padding:1rem;
    transition:.3s ease;
}
.form-input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline:none;
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(244,122,32,.15);
}
/* ==================================================
 PAYMENT PANELS
================================================== */
.payment-detail-panel {
    background:linear-gradient(135deg, #fafafa,var(--accent-soft));
    border-radius:18px;
    border:1px solid #f5d2b8;
    padding:1.5rem;
}
/* ==================================================
 TRUST AREA
================================================== */
.trust-badges {
    background:var(--primary-soft);
    border-radius:16px;
    padding:1rem;
    text-align:center;
}
.trust-badges p {
    color:var(--primary);
    font-weight:600;
}
/* ==================================================
 BUTTON
================================================== */
.skills-btn{
    background: var(--accent);

}
.skills-btn:hover{
    background: var(--accent-hover);

}
.skills-btn-primary {
    background:linear-gradient(135deg,var(--accent), var(--accent-hover));
    color:white;
    border:none;
    border-radius:16px;
    font-weight:700;
    transition:.3s ease;
}
.skills-btn-primary:hover {
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(244,122,32,.35);
}
/* ==================================================
 LOADER
================================================== */
.payment-loading {
    background: rgba(46,43,122,.92);
}
.payment-loader {
    border:5px solid rgba(255,255,255,.25);
    border-top-color:var(--accent);
}
/* ==================================================
 RESPONSIVE
================================================== */
@media(max-width:991px){
.donation-impact-grid {
grid-template-columns:1fr;
}
.form-row {
grid-template-columns:1fr;
}
}
/* ==================================================
   DONATION CONFIRMATION MODAL
================================================== */
/* Overlay */
.donation-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(46, 43, 122, 0.75);
    backdrop-filter: blur(12px);
    z-index: 9999;
}
/* Modal Card */
.donation-confirmation-modal {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: var(--white);
    padding: 3.5rem 3rem;
    border-radius: 32px;
    text-align: center;
    border: 1px solid var(--primary-soft);
    box-shadow:0 30px 90px rgba(46,43,122,.25);
    animation: modalFadeIn .45s ease;
    overflow: hidden;
}
/* Decorative glow */
.donation-confirmation-modal::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -140px;
    right: -140px;
    background:radial-gradient(circle,rgba(244,122,32,.25),transparent 70%);
}
/* Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform:
            translateY(30px)
            scale(.95);
    }
    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}
/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 38px;
    height: 38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.8rem;
    text-decoration:none;
    transition:.3s ease;
}
.modal-close:hover {
    background: var(--accent);
    color:white;
}
/* Success Icon */
.success-icon {
    width:95px;
    height:95px;
    margin:0 auto 1.5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--accent),var(--accent-hover));
    color:white;
    font-size:2.7rem;
    box-shadow:0 20px 40px rgba(244,122,32,.35);
    animation:successPop .6s ease;
}
@keyframes successPop {
    0% {
        transform:scale(.5);
        opacity:0;
    }
    100% {
        transform:scale(1);
        opacity:1;
    }
}
/* Heading */
.donation-confirmation-modal .eyebrow {
    color:var(--accent);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.donation-confirmation-modal h1 {
    color:var(--primary);
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:800;
    margin-bottom:1rem;
}
.donation-confirmation-modal > p {
    color:#64748b;
    font-size:1.1rem;
    line-height:1.7;
}
/* Reference Box */
.confirmation-reference {
    margin:2rem auto;
    padding:1.5rem;
    max-width:420px;
    border-radius:20px;
    background:linear-gradient(135deg,var(--primary-soft), #ffffff);
    border:1px solid var(--primary-soft);
}
.confirmation-reference span {
    display:block;
    color:#64748b;
    font-size:.8rem;
    text-transform:uppercase;
    letter-spacing:.1em;
    margin-bottom:.5rem;
}
.confirmation-reference strong {
    color:var(--primary);
    font-size:1.2rem;
    word-break:break-word;
}
/* Next Steps */
.next-steps {
    margin-top:2rem;
    padding:1.8rem;
    text-align:left;
    background:#fafafa;
    border-radius:20px;
    border-left:5px solid var(--accent);
}
.next-steps h3 {
    color:var(--primary);
    margin-bottom:1rem;
}
.next-steps ul {
    padding:0;
    margin:0;
    list-style:none;
}
.next-steps li {
    display:flex;
    gap:.7rem;
    margin-bottom:.9rem;
    color:#475569;
    line-height:1.5;
}
.next-steps i {
    color:var(--accent);
    margin-top:.25rem;
}
/* Buttons */
.form-actions {
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
    margin-top:2rem;
}
.form-actions .btn {
    padding:.95rem 1.8rem;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}
/* Donate Again */
.btn-outline {
    background:linear-gradient(135deg,var(--accent),var(--accent-hover));
    color:white;
}
.btn-outline:hover {
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(244,122,32,.35);
}
/* Back button */
.btn.primary{
    background: var(--accent);
}
.btn.primary:hover{
    background: var(--accent-hover);
}
.btn.secondary{
    background: white;
}
.btn-secondary {
    background:var(--primary);
    color:white;
}
.btn-secondary:hover {
    background:var(--primary-light);
    transform:translateY(-3px);
}
/* Mobile */
@media(max-width:600px){
    .donation-confirmation-modal {
        padding:2.5rem 1.3rem;
        border-radius:24px;
    }
    .success-icon {
        width:75px;
        height:75px;
        font-size:2rem;
    }
    .form-actions {
        flex-direction:column;
    }
    .form-actions .btn {
        width:100%;
    }
}
/* ==================================================
   DONATION CONFIRMATION MODAL (SCROLL FIX)
================================================== */
.donation-modal-overlay {
    position: fixed;
    inset: 0;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:2rem 1rem;
    background: rgba(46,43,122,.75);
    backdrop-filter:blur(12px);
    z-index:9999;
    overflow-y:auto;
}
/* Modal Card */
.donation-confirmation-modal {
    position:relative;
    width:100%;
    max-width:680px;
    margin:auto;
    background:white;
    padding:3rem;
    border-radius:32px;
    text-align:center;
    border:1px solid var(--primary-soft);
    box-shadow:0 30px 90px rgba(46,43,122,.25);
    animation:modalFadeIn .45s ease;
}
/* keep close button visible */
.modal-close {
    position:absolute;
    top:20px;
    right:25px;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary-soft);
    color:var(--primary);
    font-size:1.8rem;
    text-decoration:none;
}
/* prevent content overflow */
.donation-confirmation-modal p,
.donation-confirmation-modal li {
    overflow-wrap:break-word;
}
/* Mobile */
@media(max-width:600px){
    .donation-modal-overlay {
        padding:1rem;
        align-items:flex-start;
    }
    .donation-confirmation-modal {
        padding:2rem 1.2rem;
        margin-top:1rem;
        border-radius:24px;
    }
}/* ==================================================
   FACILITATE PAGE
============================================================================================================= */
/* HERO */
.facilitate-hero {
    position:relative;
    padding:7rem 0;
    background:linear-gradient(135deg,rgba(46,43,122,.96),rgba(74,71,150,.92) );
    color:white;
    overflow:hidden;
}
.facilitate-hero::before {
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    right:-150px;
    top:-150px;
    background:radial-gradient(circle, rgba(244,122,32,.3),transparent 70%);
}
.story-hero-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
    position:relative;
    z-index:2;
}
.facilitate-hero .eyebrow {
    color:var(--accent-soft);
}
.facilitate-hero h1 {
    font-size:clamp(2.5rem,5vw,4rem);
    line-height:1.1;
    font-weight:800;
    margin-bottom:1.5rem;
}
.facilitate-hero p {
    font-size:1.15rem;
    line-height:1.7;
    opacity:.9;
    max-width:600px;
}
.story-hero-image img {
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 30px 70px rgba(0,0,0,.25);
}
/* BUTTON */
.btn.primary {
    display:inline-flex;
    margin-top:1.5rem;
    padding:1rem 2rem;
    border-radius:16px;
    background:linear-gradient(135deg,var(--accent),var(--accent-hover));
    color:white;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}
.btn.primary:hover {
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(244,122,32,.35);
}
/* ==================================================
   FEATURE CARDS
================================================== */
.content-section {
    padding:6rem 0;
}
.feature-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}
.feature-item {
    padding:2.5rem 2rem;
    background:white;
    border-radius:26px;
    border:1px solid var(--primary-soft);
    text-align:center;
    box-shadow:0 20px 50px rgba(46,43,122,.08);
    transition:.35s ease;
}
.feature-item:hover {
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(46,43,122,.15);
}
.feature-item i {
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 1.5rem;
    border-radius:50%;
    background:var(--accent-soft);
    color:var(--accent);
    font-size:1.8rem;
}
.feature-item h3 {
    color:var(--primary);
    margin-bottom:.8rem;
}
.feature-item p {
    color:#64748b;
    line-height:1.6;
}
/* ==================================================
   COHORT SECTION
================================================== */
.modern-band-light {
    background:linear-gradient(135deg,#faf9ff, #fff8f1);
}
.section-header {
    text-align:center;
    margin-bottom:3rem;
}
.section-header h2 {
    color:var(--primary);
    font-size:2.5rem;
}
.cohorts-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
}
.cohort-card {
    background:white;
    padding:2rem;
    border-radius:22px;
    border:1px solid var(--primary-soft);
    box-shadow:0 15px 40px rgba(46,43,122,.08);
}
.cohort-card h3 {
    color:var(--primary);
}
.cohort-card p {
    color:#64748b;
}
.cohort-card span {
    display:inline-block;
    margin-top:1rem;
    padding:.5rem 1rem;
    border-radius:30px;
    background:var(--accent-soft);
    color:var(--accent);
    font-weight:600;
}
/* ==================================================
   FACILITATION FORM
================================================== */
.support-form-section {
    background:#fafafa;
}
.form-layout-grid {
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:4rem;
    align-items:start;
}
.form-layout-grid h2 {
    color:var(--primary);
    font-size:2.5rem;
}
.form-layout-grid p {
    color:#64748b;
    line-height:1.7;
}
.form-card {
    background:white;
    padding:3rem;
    border-radius:30px;
    box-shadow:0 25px 70px rgba(46,43,122,.12);
    border:1px solid var(--primary-soft);
}
.auto-form-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.5rem;
}
.auto-form-grid .full-width {
    grid-column:1/-1;
}
.form-group input,
.form-group select,
.form-group textarea {
    width:100%;
    padding:1rem;
    border-radius:14px;
    border:1px solid var(--primary-soft);
    transition:.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline:none;
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(244,122,32,.15);
}
.error-message {
    color:#dc2626;
    font-size:.85rem;
}
/* ==================================================
   RESPONSIVE
================================================== */
@media(max-width:991px){
.story-hero-grid,
.form-layout-grid {
    grid-template-columns:1fr;
}
.feature-grid,
.cohorts-grid {
    grid-template-columns:1fr;
}
.story-hero-image img {
    height:350px;
}
.auto-form-grid {
    grid-template-columns:1fr;
}
.form-card {
    padding:2rem;
}
}
/* ==================================================
   FACILITATION CONFIRMATION MODAL
================================================================================================================== */
.facilitation-modal-overlay {
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:2rem 1rem;
    overflow-y:auto;
    background: rgba(46,43,122,.78);
    backdrop-filter:blur(12px);
    z-index:9999;
}
.facilitation-confirmation-modal {
    width:100%;
    max-width:720px;
    margin:auto;
    position:relative;
    background:white;
    padding:3.5rem;
    border-radius:32px;
    text-align:center;
    border:1px solid var(--primary-soft);
    box-shadow:0 30px 90px rgba(46,43,122,.25);
    animation:modalFadeIn .45s ease;
}
/* Icon */
.facilitation-confirmation-modal .success-icon {
    width:95px;
    height:95px;
    margin:0 auto 1.5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    color:white;
    font-size:2.5rem;
    box-shadow:0 20px 40px rgba(46,43,122,.3);
}
.facilitation-confirmation-modal h1 {
    color:var(--primary);
    font-size:2.6rem;
    font-weight:800;
}
.confirmation-message {
    color:#64748b;
    font-size:1.1rem;
    line-height:1.7;
    margin:1rem auto 2rem;
}
/* Info Box */
.info-box {
    margin-top:1.5rem;
    padding:1.8rem;
    border-radius:20px;
    background:linear-gradient(135deg,var(--accent-soft), #fff);
    border-left:5px solid var(--accent);
    text-align:left;
}
.info-box h3 {
    color:var(--primary);
    margin-bottom:.7rem;
}
.info-box p {
    color:#64748b;
    line-height:1.7;
}
/* Responsive */
@media(max-width:600px){
.facilitation-confirmation-modal {
    padding:2rem 1.2rem;
    border-radius:24px;
}
.facilitation-confirmation-modal h1 {
    font-size:2rem;
}
}
/* ==================================================
   HIRE TALENT PAGE
====================================================================================================================== */
/* HERO */
.hire-hero {
    position:relative;
    padding:7rem 0;
    background:linear-gradient(135deg,rgba(46,43,122,.97),rgba(74,71,150,.92));
    color:white;
    overflow:hidden;
}
.hire-hero::after {
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-180px;
    bottom:-180px;
    background:radial-gradient(circle, rgba(244,122,32,.3),transparent 70%);
}
.hire-hero .story-hero-grid {
    position:relative;
    z-index:2;
}
.hire-hero .eyebrow {
    color:var(--accent-soft);
}
.hire-hero h1 {
    font-size:clamp(2.5rem,5vw,4rem);
    font-weight:800;
    line-height:1.1;
}
.hire-hero p {
    font-size:1.15rem;
    line-height:1.7;
    opacity:.9;
}
.story-hero-image img {
    height:450px;
    width:100%;
    object-fit:cover;
    border-radius:32px;
    box-shadow:0 30px 80px rgba(0,0,0,.3);
}
/* ==================================================
   DIRECTORY SECTION
================================================== */
.graduates-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}
.graduate-card {
    position:relative;
    background:white;
    padding:2rem;
    border-radius:26px;
    border:1px solid var(--primary-soft);
    box-shadow:0 20px 50px rgba(46,43,122,.08);
    transition:.35s ease;
    overflow:hidden;
}
.graduate-card:hover {
    transform:translateY(-8px);
    box-shadow:0 35px 80px rgba(46,43,122,.16);
}
/* Available badge */
.graduate-badge {
    display:inline-block;
    padding:.45rem 1rem;
    border-radius:30px;
    background:var(--accent-soft);
    color:var(--accent);
    font-weight:700;
    font-size:.85rem;
    margin-bottom:1rem;
}
.graduate-card h3 {
    color:var(--primary);
    font-size:1.4rem;
}
.graduate-skill {
    color:var(--accent);
    font-weight:700;
    margin-bottom:1rem;
}
.graduate-card p {
    color:#64748b;
    line-height:1.6;
}
/* Meta */
.program-meta-modern {
    display:flex;
    flex-direction:column;
    gap:.7rem;
    margin:1.5rem 0;
    padding-top:1rem;
    border-top:1px solid #eee;
}
.program-meta-modern span {
    color:#64748b;
    font-size:.9rem;
}
.program-meta-modern i {
    color:var(--accent);
    margin-right:.5rem;
}
/* Links */
.graduate-links {
    display:flex;
    gap:.7rem;
    flex-wrap:wrap;
}
.graduate-links a {
    padding:.55rem 1rem;
    border-radius:12px;
    background:var(--primary-soft);
    color:var(--primary);
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}
.graduate-links a:hover {
    background:var(--primary);
    color:white;
}
/* ==================================================
   FILTER TOOLBAR
================================================== */
.inline-toolbar {
    background:white;
    padding:1.5rem;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(46,43,122,.08);
    margin-bottom:3rem;
}
.inline-toolbar label {
    display:block;
    color:var(--primary);
    font-weight:700;
    margin-bottom:.6rem;
}
.form-select {
    width:100%;
    padding:.9rem;
    border-radius:14px;
    border:1px solid var(--primary-soft);
}
/* ==================================================
   JOB POST FORM
================================================== */
.support-form-section {
    background:linear-gradient(135deg,#faf9ff, #fff8f1);
}
.form-layout-grid {
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:4rem;
}
.form-layout-grid h2 {
    color:var(--primary);
    font-size:2.5rem;
}
.form-layout-grid p {
    color:#64748b;
    line-height:1.7;
}
.form-card {
    background:white;
    padding:3rem;
    border-radius:30px;
    border:1px solid var(--primary-soft);
    box-shadow:0 25px 70px rgba(46,43,122,.12);
}
.auto-form-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.5rem;
}
.auto-form-grid .full-width {
    grid-column:1/-1;
}
.form-group input,
.form-group textarea,
.form-group select {
    width:100%;
    padding:1rem;
    border-radius:14px;
    border:1px solid var(--primary-soft);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline:none;
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(244,122,32,.15);
}
/* ==================================================
   RESPONSIVE
================================================== */
@media(max-width:991px){
.graduates-grid {
    grid-template-columns:1fr;
}
.form-layout-grid {
    grid-template-columns:1fr;
}
.auto-form-grid {
    grid-template-columns:1fr;
}
.story-hero-image img {
    height:350px;
}
.form-card {
    padding:2rem;
}
}
/* ==================================================
   HIRE CONFIRMATION MODAL
===================================================================================================== */
.modal-overlay {
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:2rem 1rem;
    overflow-y:auto;
    background:rgba(46,43,122,.78);
    backdrop-filter:blur(12px);
    z-index:9999;
}
.modal {
    width:100%;
    max-width:720px;
    margin:auto;
    position:relative;
    background:white;
    padding:3.5rem;
    border-radius:32px;
    box-shadow:0 35px 100px rgba(46,43,122,.25);
    border:1px solid var(--primary-soft);
    animation:modalFadeIn .45s ease;
    overflow:hidden;
}
/* Decorative glow */
.modal::before {
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    top:-150px;
    right:-150px;
    background:
    radial-gradient(circle, rgba(244,122,32,.25),transparent 70%);
}
/* Content */
.confirmation-container {
    position:relative;
    z-index:2;
    text-align:center;
}
/* Success Icon */
.success-icon {
    width:95px;
    height:95px;
    margin:0 auto 1.5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--accent),var(--accent-hover));
    color:white;
    font-size:3rem;
    font-weight:800;
    box-shadow:0 20px 45px rgba(244,122,32,.35);
    animation:successPop .6s ease;
}
/* Title */
.confirmation-title {
    color:var(--primary);
    font-size:clamp(2rem,4vw,2.7rem);
    font-weight:800;
    margin-bottom:1rem;
}
/* Message */
.confirmation-message {
    color:#64748b;
    font-size:1.1rem;
    line-height:1.7;
    max-width:600px;
    margin:auto;
}
/* Next Steps */
.next-steps {
    margin-top:2rem;
    padding:2rem;
    text-align:left;
    background:linear-gradient(135deg, #faf9ff, #ffffff);
    border-radius:22px;
    border-left:5px solid var(--accent);
}
.next-steps h3 {
    color:var(--primary);
    margin-bottom:1rem;
}
.next-steps ul {
    list-style:none;
    padding:0;
    margin:0;
}
.next-steps li {
    color:#475569;
    line-height:1.6;
    margin-bottom:1rem;
    padding-left:1.5rem;
    position:relative;
}
.next-steps li::before {
    content:"✓";
    position:absolute;
    left:0;
    color:var(--accent);
    font-weight:bold;
}
/* Info Box */
.info-box {
    margin-top:1.5rem;
    padding:1.8rem;
    text-align:left;
    border-radius:20px;
    background:var(--accent-soft);
    border:1px solid rgba(244,122,32,.25);
}
.info-box h3 {
    color:var(--primary);
    margin-bottom:.7rem;
}
.info-box p {
    color:#64748b;
    line-height:1.7;
}
/* Buttons */
.form-actions {
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
    margin-top:2rem;
}
.form-actions .btn {
    padding:.95rem 1.8rem;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}
.btn-outline {
    background:linear-gradient(135deg,var(--accent),var(--accent-hover));
    color:white;
}
.btn-outline:hover {
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(244,122,32,.35);
}
.btn-secondary {
    background:var(--primary);
    color:white;
}
.btn-secondary:hover {
    background:var(--primary-light);
    transform:translateY(-3px);
}
/* Animations */
@keyframes modalFadeIn {
    from {
        opacity:0;
        transform:translateY(30px) scale(.96);
    }
    to {
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
@keyframes successPop {
    from {
        transform:scale(.5);
        opacity:0;
    }
    to {
        transform:scale(1);
        opacity:1;
    }
}
/* Mobile */
@media(max-width:600px){
.modal {
    padding:2rem 1.2rem;
    border-radius:24px;
}
.form-actions {
    flex-direction:column;
}
.form-actions .btn {
    width:100%;
}
}
/* ==================================================
   MENTOR PAGE
=========================================================================================================== */
/* HERO */
.mentor-hero {
    position:relative;
    padding:7rem 0;
    background:linear-gradient(135deg, rgba(46,43,122,.97), rgba(74,71,150,.92));
    color:white;
    overflow:hidden;
}
.mentor-hero::before {
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-180px;
    right:-150px;
    background:radial-gradient(circle, rgba(244,122,32,.3), transparent 70%);
}
.mentor-hero .story-hero-grid {
    position:relative;
    z-index:2;
}
.mentor-hero .eyebrow {
    color:var(--accent-soft);
}
.mentor-hero h1 {
    font-size:clamp(2.5rem,5vw,4rem);
    line-height:1.1;
    font-weight:800;
    margin-bottom:1.5rem;
}
.mentor-hero p {
    font-size:1.15rem;
    line-height:1.7;
    max-width:600px;
    opacity:.9;
}
.mentor-hero .story-hero-image img {
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:32px;
    box-shadow:0 30px 80px rgba(0,0,0,.3);
}
/* ==================================================
   BENEFIT CARDS
================================================== */
.content-section {
    padding:6rem 0;
}
.feature-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}
.feature-item {
    background:white;
    padding:2.5rem 2rem;
    border-radius:26px;
    text-align:center;
    border:1px solid var(--primary-soft);
    box-shadow:0 20px 50px rgba(46,43,122,.08);
    transition:.35s ease;
}
.feature-item:hover {
    transform:translateY(-10px);
    box-shadow:0 35px 80px rgba(46,43,122,.15);
}
.feature-item i {
    width:75px;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 1.5rem;
    border-radius:50%;
    background:
    var(--accent-soft);
    color:var(--accent);font-size:2rem;
}
.feature-item h3 {
    color:var(--primary);
    margin-bottom:.8rem;
}
.feature-item p {
    color:#64748b;
    line-height:1.6;
}
/* ==================================================
   TESTIMONIALS
================================================== */
.modern-band-light {
    background:linear-gradient(135deg,#faf9ff,#fff8f1);
}
.testimonials-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}
.testimonial-card {
    background:white;
    padding:2rem;
    border-radius:24px;
    border:1px solid var(--primary-soft);
    box-shadow:0 20px 50px rgba(46,43,122,.08);
}
.testimonial-card p {
    color:#475569;
    font-style:italic;
    line-height:1.7;
}
.testimonial-card strong {
    display:block;
    margin-top:1.2rem;
    color:var(--primary);
}
.testimonial-card span {
    color:var(--accent);
    font-size:.9rem;
}
/* ==================================================
   MENTOR APPLICATION FORM
================================================== */
.support-form-section {
    background:#fafafa;
}
.form-layout-grid {
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:4rem;
    align-items:start;
}
.form-layout-grid h2 {
    color:var(--primary);
    font-size:2.5rem;
    font-weight:800;
}
.form-layout-grid p {
    color:#64748b;
    line-height:1.7;
}
.form-card {
    background:white;
    padding:3rem;
    border-radius:30px;
    border:1px solid var(--primary-soft);
    box-shadow:0 25px 70px rgba(46,43,122,.12);
}
.auto-form-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.5rem;
}
.auto-form-grid .full-width {
    grid-column:1/-1;
}
.form-group input,
.form-group textarea,
.form-group select {
    width:100%;
    padding:1rem;
    border-radius:14px;
    border:1px solid var(--primary-soft);
    transition:.3s ease;
}
.form-group textarea {
    min-height:140px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline:none;
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(244,122,32,.15);
}
/* ==================================================
   RESPONSIVE
================================================== */
@media(max-width:991px){
.story-hero-grid,
.form-layout-grid {
    grid-template-columns:1fr;
}
.feature-grid,
.testimonials-grid {
    grid-template-columns:1fr;
}
.mentor-hero .story-hero-image img {
height:350px;
}
.auto-form-grid {
grid-template-columns:1fr;
}
.form-card {
    padding:2rem;
}
}
/* ==================================================
   MENTOR CONFIRMATION MODAL
===================================================================================================================== */
.modal-overlay {
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:2rem 1rem;
    overflow-y:auto;
    background: rgba(46,43,122,.80);
    backdrop-filter:blur(12px);
    z-index:9999;
}
.modal {
    width:100%;
    max-width:760px;
    margin:auto;
    position:relative;
    background:white;
    padding:3.5rem;
    border-radius:32px;
    border:1px solid var(--primary-soft);
    box-shadow:0 40px 100px rgba(46,43,122,.30);
    overflow:hidden;
    animation:modalFadeIn .45s ease;
}
/* Decorative glow */
.modal::before {
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    top:-180px;
    right:-160px;
    background:radial-gradient(circle, rgba(244,122,32,.28),transparent 70%);
}
.confirmation-container {
    position:relative;
    z-index:2;
    text-align:center;
}
/* Success icon */
.success-icon {
    width:100px;
    height:100px;
    margin:0 auto 1.5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    color:white;
    font-size:3rem;
    font-weight:800;
    box-shadow:0 20px 45px rgba(46,43,122,.35);
    animation:successPop .6s ease;
}
/* Title */
.confirmation-title {
    color:var(--primary);
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:800;
    margin-bottom:1rem;
}
/* Message */
.confirmation-message {
    color:#64748b;
    font-size:1.1rem;
    line-height:1.7;
    max-width:620px;
    margin:auto;
}
/* Next Steps */
.next-steps {
    margin-top:2rem;
    padding:2rem;
    text-align:left;
    border-radius:24px;
    background:linear-gradient(135deg, #faf9ff,#ffffff );
    border-left:5px solid var(--accent);
}
.next-steps h3 {
    color:var(--primary);
    margin-bottom:1rem;
    font-size:1.3rem;
}
.next-steps ul {
    padding:0;
    margin:0;
    list-style:none;
}
.next-steps li {
    position:relative;
    padding-left:1.8rem;
    margin-bottom:1rem;
    color:#475569;
    line-height:1.6;
}
.next-steps li::before {
    content:"✓";
    position:absolute;
    left:0;
    color:var(--accent);
    font-weight:800;
}
/* Info boxes */
.info-box {
    margin-top:1.5rem;
    padding:1.8rem;
    border-radius:22px;
    background:var(--accent-soft);
    border:1px solid rgba(244,122,32,.25);
    text-align:left;
}
.info-box h3 {
    color:var(--primary);
    margin-bottom:.8rem;
}
.info-box p {
    color:#64748b;
    line-height:1.7;
}
/* Social */
.social-prompt {
     margin-top:2rem;
     color:var(--primary);
     font-weight:600;
}
.social-links {
    display:flex;
    justify-content:center;
    gap:1rem;
    margin:1rem 0;
}
.social-icon {
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}
.social-icon:hover {
    background:var(--accent);
    transform:translateY(-4px);
}
/* Button */
.btn-full {
    width:100%;
}
.form-actions {
    margin-top:2rem;
}
/* Animations */
@keyframes modalFadeIn {
    from {
        opacity:0;
        transform:translateY(35px) scale(.96);
    }
    to {
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
@keyframes successPop {
    from {
        opacity:0;
        transform:scale(.5);
    }
    to {
        opacity:1;
        transform:scale(1);
    }
}
/* Mobile */
@media(max-width:600px){
.modal {
    padding:2rem 1.2rem;
    border-radius:24px;
}
.success-icon {
    width:75px;
    height:75px;
    font-size:2rem;
}
.next-steps,
.info-box {
    padding:1.3rem;
}
}
/* ==================================================
   MENTOR CONFIRMATION MODAL
================================================================================================ */
.modal-overlay {
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:2rem 1rem;
    overflow-y:auto;
    background: rgba(46,43,122,.80);
    backdrop-filter:blur(12px);
    z-index:9999;
}
.modal {
    width:100%;
    max-width:760px;
    margin:auto;
    position:relative;
    background:white;
    padding:3.5rem;
    border-radius:32px;
    border:1px solid var(--primary-soft);
    box-shadow:0 40px 100px rgba(46,43,122,.30);
    overflow:hidden;
    animation:modalFadeIn .45s ease;
}
/* Decorative glow */
.modal::before {
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    top:-180px;
    right:-160px;
    background:radial-gradient(circle,rgba(244,122,32,.28),transparent 70%);
}
.confirmation-container {
    position:relative;
    z-index:2;
    text-align:center;
}
/* Success icon */
.success-icon {
    width:100px;
    height:100px;
    margin:0 auto 1.5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    color:white;
    font-size:3rem;
    font-weight:800;
    box-shadow:0 20px 45px rgba(46,43,122,.35);
    animation:successPop .6s ease;
}
/* Title */
.confirmation-title {
    color:var(--primary);
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:800;
    margin-bottom:1rem;
}
/* Message */
.confirmation-message {
    color:#64748b;
    font-size:1.1rem;
    line-height:1.7;
    max-width:620px;
    margin:auto;
}
/* Next Steps */
.next-steps {
    margin-top:2rem;
    padding:2rem;
    text-align:left;
    border-radius:24px;
    background:linear-gradient(135deg, #faf9ff, #ffffff);
    border-left:5px solid var(--accent);
}
.next-steps h3 {
    color:var(--primary);
    margin-bottom:1rem;
    font-size:1.3rem;
}
.next-steps ul {
    padding:0;
    margin:0;
    list-style:none;
}
.next-steps li {
    position:relative;
    padding-left:1.8rem;
    margin-bottom:1rem;
    color:#475569;
    line-height:1.6;
}
.next-steps li::before {
    content:"✓";
    position:absolute;
    left:0;
    color:var(--accent);
    font-weight:800;
}
/* Info boxes */
.info-box {
    margin-top:1.5rem;
    padding:1.8rem;
    border-radius:22px;
    background:var(--accent-soft);
    border:1px solid rgba(244,122,32,.25);
    text-align:left;
}
.info-box h3 {
    color:var(--primary);
    margin-bottom:.8rem;
}
.info-box p {
    color:#64748b;
    line-height:1.7;
}
/* Social */
.social-prompt {
    margin-top:2rem;
    color:var(--primary);
    font-weight:600;
}
.social-links {
    display:flex;
    justify-content:center;
    gap:1rem;
    margin:1rem 0;
}
.social-icon {
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}
.social-icon:hover {
    background:var(--accent);
    transform:translateY(-4px);
}
/* Button */
.btn-full {
    width:100%;
}
.form-actions {
margin-top:2rem;
}
/* Animations */
@keyframes modalFadeIn {
    from {
        opacity:0;
        transform:translateY(35px) scale(.96);
    }
    to {
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
@keyframes successPop {
    from {
        opacity:0;
        transform:scale(.5);
    }
    to {
        opacity:1;
        transform:scale(1);
    }
}
/* Mobile */
@media(max-width:600px){
.modal {
    padding:2rem 1.2rem;
    border-radius:24px;
}
.success-icon {
    width:75px;
    height:75px;
    font-size:2rem;
}
.next-steps,
.info-box {
    padding:1.3rem;
}
}
/* ==================================================
   VOLUNTEER PAGE
============================================================================================================ */
/* HERO */
.volunteer-hero {
    position:relative;
    padding:7rem 0;
    background:linear-gradient(135deg, rgba(46,43,122,.97), rgba(74,71,150,.92));
    color:white;
    overflow:hidden;
}
.volunteer-hero::after {
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    right:-180px;
    bottom:-180px;
    background:radial-gradient(circle, rgba(244,122,32,.32), transparent 70% );
}
.volunteer-hero .story-hero-grid {
    position:relative;
    z-index:2;
}
.volunteer-hero .eyebrow {
    color:var(--accent-soft);
}
.volunteer-hero h1 {
    font-size:clamp(2.5rem,5vw,4rem);
    line-height:1.1;
    font-weight:800;
    margin-bottom:1.5rem;
}
.volunteer-hero p {
    font-size:1.15rem;
    line-height:1.7;
    max-width:600px;
    opacity:.9;
}
.volunteer-hero .story-hero-image img {
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:32px;
    box-shadow:0 30px 80px rgba(0,0,0,.3);
}
/* ==================================================
   VOLUNTEER ROLES
================================================== */
.modern-roles {
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:1.5rem;
}
.role-item {
    background:white;
    padding:2rem;
    border-radius:24px;
    border:1px solid var(--primary-soft);
    text-align:center;
    box-shadow:0 20px 50px rgba(46,43,122,.08);
    transition:.35s ease;
}
.role-item:hover {
    transform:translateY(-10px);
    box-shadow:0 35px 80px rgba(46,43,122,.16);
}
.role-item i {
    width:70px;
    height:70px;
    margin:0 auto 1.2rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--accent-soft);
    color:var(--accent);
    font-size:1.8rem;
}
.role-item h3 {
    color:var(--primary);
    margin-bottom:.7rem;
}
.role-item p {
    color:#64748b;
    line-height:1.6;
}
/* ==================================================
   TESTIMONIALS
================================================== */
.modern-band-light {
    background:
    linear-gradient(135deg,#faf9ff,#fff8f1);
}
.testimonials-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}
.testimonial-card {
    background:white;
    padding:2rem;
    border-radius:24px;
    border:1px solid var(--primary-soft);
    box-shadow:0 20px 50px rgba(46,43,122,.08);
}
.testimonial-card p {
    color:#475569;
    line-height:1.7;
    font-style:italic;
}
.testimonial-card strong {
    display:block;
    margin-top:1rem;
    color:var(--primary);
}
.testimonial-card span {
    color:var(--accent);
    font-size:.9rem;
}
/* ==================================================
   VOLUNTEER APPLICATION FORM
================================================== */
.support-form-section {
    background:linear-gradient(135deg, #faf9ff, #fff8f1);
}
.form-layout-grid {
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:4rem;
    align-items:start;
}
.form-layout-grid h2 {
    color:var(--primary);
    font-size:2.5rem;
    font-weight:800;
}
.form-layout-grid p {
    color:#64748b;
    line-height:1.7;
}
.form-card {
    background:white;
    padding:3rem;
    border-radius:30px;
    border:1px solid var(--primary-soft);
    box-shadow:0 25px 70px rgba(46,43,122,.12);
}
.auto-form-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.5rem;
}
.auto-form-grid .full-width {
    grid-column:1/-1;
}
.form-group input,
.form-group textarea,
.form-group select {
    width:100%;
    padding:1rem;
    border-radius:14px;
    border:1px solid var(--primary-soft);
    transition:.3s ease;
}
.form-group textarea {
    min-height:140px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline:none;
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(244,122,32,.15);
}
/* ==================================================
   RESPONSIVE
================================================== */
@media(max-width:1100px){
.modern-roles {
    grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:991px){
.story-hero-grid,
.form-layout-grid {
    grid-template-columns:1fr;
}
.modern-roles,
.testimonials-grid {
    grid-template-columns:1fr;
}
.volunteer-hero .story-hero-image img {
    height:350px;
}
.auto-form-grid {
    grid-template-columns:1fr;
}
.form-card {
    padding:2rem;
}
}
/* ==================================================
   VOLUNTEER CONFIRMATION MODAL
======================================================================================== */
.modal-overlay {
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:2rem 1rem;
    overflow-y:auto;
    background:rgba(46,43,122,.80);
    backdrop-filter:blur(12px);
    z-index:9999;
}
.modal {
    width:100%;
    max-width:740px;
    margin:auto;
    position:relative;
    background:white;
    padding:3.5rem;
    border-radius:32px;
    border:1px solid var(--primary-soft);
    box-shadow:0 40px 100px rgba(46,43,122,.3);
    overflow:hidden;
    animation:modalFadeIn .45s ease;
}
/* Decorative community glow */
.modal::before {
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    top:-180px;
    right:-160px;
    background:radial-gradient(circle, rgba(244,122,32,.25),transparent 70%);
}
.confirmation-container {
    position:relative;
    z-index:2;
    text-align:center;
}
/* Success Icon */
.success-icon {
    width:100px;
    height:100px;
    margin:0 auto 1.5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--accent),var(--accent-hover));
    color:white;
    font-size:3rem;
    font-weight:800;
    box-shadow:0 20px 45px rgba(244,122,32,.35);
    animation:successPop .6s ease;
}
/* Title */
.confirmation-title {
    color:var(--primary);
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:800;
    margin-bottom:1rem;
}
/* Message */
.confirmation-message {
    color:#64748b;
    font-size:1.1rem;
    line-height:1.7;
    max-width:620px;
    margin:auto;
}
/* Next Steps */
.next-steps {
    margin-top:2rem;
    padding:2rem;
    text-align:left;
    border-radius:24px;
    background:linear-gradient(135deg, #faf9ff, #ffffff);
    border-left:5px solid var(--accent);
}
.next-steps h3 {
    color:var(--primary);
    margin-bottom:1rem;
}
.next-steps ul {
    list-style:none;
    padding:0;
    margin:0;
}
.next-steps li {
    position:relative;
    padding-left:1.8rem;
    margin-bottom:1rem;
    color:#475569;
    line-height:1.6;
}
.next-steps li::before {
    content:"✓";
    position:absolute;
    left:0;
    color:var(--accent);
    font-weight:800;
}
/* Community Info */
.info-box {
    margin-top:1.5rem;
    padding:1.8rem;
    border-radius:22px;
    background:var(--accent-soft);
    border:1px solid rgba(244,122,32,.25);
    text-align:left;
}
.info-box h3 {
    color:var(--primary);
    margin-bottom:.8rem;
}
.info-box p {
    color:#64748b;
    line-height:1.7;
}
/* Social Links */
.social-prompt {
    margin-top:2rem;
    color:var(--primary);
    font-weight:600;
}
.social-links {
    display:flex;
    justify-content:center;
    gap:1rem;
    margin:1rem 0 2rem;
}
.social-icon {
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}
.social-icon:hover {
    background:var(--accent);
    transform:translateY(-4px);
}
/* Button */
.btn-full {
    width:100%;
}
.form-actions {
    margin-top:2rem;
}
/* Animations */
@keyframes modalFadeIn {
    from {
        opacity:0;
        transform:translateY(35px) scale(.96);
    }
    to {
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
@keyframes successPop {
    from {
        opacity:0;
        transform:scale(.5);
    }
    to {
        opacity:1;
        transform:scale(1);
    }
}
/* Mobile */
@media(max-width:600px){
.modal {
    padding:2rem 1.2rem;
    border-radius:24px;
}
.success-icon {
    width:75px;
    height:75px;
    font-size:2rem;
}
.next-steps,
.info-box {
    padding:1.3rem;
}
}