/* =============================================================
   CHANGEMAKER PAGE — Be a Changemaker in STEM Education
   Paste this entire block into your style.css
============================================================= */

/* ── Section Wrapper ── */
.cm-section {
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Hero Block ── */
.cm-hero-block {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    padding: 52px 20px 64px;
    text-align: center;
}

.cm-hero-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 80% 50%, rgba(249,115,22,.18) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 20% 80%, rgba(251,191,36,.12) 0%, transparent 70%);
    pointer-events: none;
}

.cm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,.15);
    border: 1px solid rgba(249,115,22,.35);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cm-hero-badge i { font-size: 10px; }

.cm-hero-block h1 {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cm-hero-block h1 span {
    background: linear-gradient(90deg, #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cm-hero-block p {
    color: rgba(255,255,255,.65);
    font-size: clamp(14px, 2.5vw, 16px);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ── Trust Strip ── */
.cm-trust-strip {
    background: #f97316;
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cm-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.cm-trust-item i { font-size: 15px; opacity: .9; }

/* ── Main Container ── */
.cm-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 20px 60px;
}

/* ── Card ── */
.cm-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.13);
    width: 100%;
    max-width: 640px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* ── Card Header ── */
.cm-card-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 28px 36px 24px;
    position: relative;
    overflow: hidden;
}

.cm-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(249,115,22,.12);
}

.cm-step-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #f97316;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.cm-card-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.cm-card-header p {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    position: relative;
    z-index: 1;
}

/* ── Form Body ── */
.cm-form-body {
    padding: 32px 36px 36px;
}

/* ── Grid ── */
.cm-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 22px;
}

.cm-full { grid-column: 1 / -1; }

/* ── Divider ── */
.cm-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: #e2e8f0;
    margin: 2px 0;
}

/* ── Field ── */
.cm-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cm-field label {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.cm-field label .req { color: #f97316; margin-left: 2px; }

/* ── Input Wrap ── */
.cm-input-wrap {
    position: relative;
}

.cm-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    transition: color .2s;
}

.cm-textarea-wrap i {
    top: 16px;
    transform: none;
}

.cm-input-wrap input,
.cm-input-wrap textarea {
    width: 100%;
    padding: 13px 14px 13px 42px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color .2s, box-shadow .2s, background .2s;
    outline: none;
}

.cm-input-wrap textarea {
    padding-top: 14px;
    resize: vertical;
    min-height: 90px;
}

.cm-input-wrap input:focus,
.cm-input-wrap textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,.12);
    background: #ffffff;
}

.cm-input-wrap:focus-within i { color: #f97316; }

.cm-input-wrap input::placeholder,
.cm-input-wrap textarea::placeholder {
    color: #b0bec5;
    font-size: 13px;
}

/* ── Field Error State ── */
.cm-input-wrap input.cm-err,
.cm-input-wrap textarea.cm-err {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

/* ── Submit ── */
.cm-submit-wrap { margin-top: 28px; }

.btn-cm-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea6c0a 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .18s, box-shadow .18s, opacity .18s;
    box-shadow: 0 4px 20px rgba(249,115,22,.35);
    letter-spacing: .3px;
}

.btn-cm-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249,115,22,.45);
}

.btn-cm-submit:active { transform: translateY(0); }

.btn-cm-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

/* ── Privacy Note ── */
.cm-privacy {
    margin-top: 14px;
    text-align: center;
    font-size: 11.5px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cm-privacy i { color: #22c55e; font-size: 12px; }

/* ── Responsive ── */
@media (max-width: 560px) {
    .cm-field-grid       { grid-template-columns: 1fr; }
    .cm-full             { grid-column: 1; }
    .cm-form-body        { padding: 24px 20px 28px; }
    .cm-card-header      { padding: 22px 20px 20px; }
    .cm-trust-strip      { gap: 16px; }
    .cm-trust-item       { font-size: 12px; }
    .cm-card-header h2   { font-size: 18px; }
}
/* Fix: Push hero below fixed header */
.cm-hero-block {
    padding-top: 120px; /* adjust this value to match your header height */
}
/* Extracted from be-a-changemaker-in-stem-education.html */
html {
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }
        .header, .nav-menu, .hero-slide, .hero-slider, #sliderTrack {
            will-change: transform;
            transform: translateZ(0);
            backface-visibility: hidden;
        }
        @media (max-width: 992px) {
            .parallax-bg, .fixed-bg {
                background-attachment: scroll !important;
            }
        }
