/* ============================================
   Indiana Driver Education Foundation
   Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --navy: #1a2d4a;
    --navy-dark: #0f1a2b;
    --navy-light: #2a4166;
    --crimson: #b91c1c;
    --crimson-dark: #991b1b;
    --crimson-light: #dc2626;
    --cream: #faf8f5;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.6;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(26, 45, 74, 0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--navy);
    color: var(--white);
}

.nav-cta {
    background: var(--crimson);
    color: var(--white) !important;
    margin-left: 1rem;
}

.nav-cta:hover {
    background: var(--crimson-dark) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    transition: 0.3s;
}

/* ============================================
   Page Layout
   ============================================ */

.page {
    min-height: 100vh;
    padding-top: 20px;
}

/* Inner page header */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */

   /*
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;

    color:#FFFFFF;
    background-color:#1a2d4a;
    border-color:transparent;
    border-radius:8px;
    border-width:0px;
}
    */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-right: 8px;
  padding-bottom: 20px;
  padding-left: 8px;
  font-family: ui-sans-serif, system-ui, -apple-system, "system-ui", "Segoe UI", Roboto, "Noto Sans", Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: normal;
  color: rgb(255, 255, 255);
  background-color: rgb(185, 28, 28);
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(0, 0, 0, 0);
  border-right-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0);
  border-left-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition-property: color, background-color, border-color, -webkit-text-decoration-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, -webkit-filter, filter, -webkit-backdrop-filter, backdrop-filter;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
  height: 48px;
  min-width: 173.719px;
  
}

.btn-primary {
    background: var(--crimson);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(185, 28, 28, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Section Styles
   ============================================ */

.section {
    padding: 3rem 2rem;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--crimson);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ============================================
   Hero Section (index.html)
   ============================================ */

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.828zM32 0l-3.486 3.485-1.414-1.414L30.172 0H32zm-6.344 0L17.172 8.485l1.414 1.414L28 .343V0h-2.344zM38.344 0l-8.485 8.485-1.414-1.414L37.93 0h.414zM0 2.828L2.828 0H5.66L0 5.657V2.828zM0 8.485L8.485 0h2.828L0 11.314V8.485zm0 5.657L14.142 0h2.828L0 16.97v-2.828zM0 19.8L19.8 0h2.828L0 22.627V19.8zm0 5.656L25.456 0h2.828L0 28.284v-2.828zM0 31.113L31.113 0h2.828L0 33.94v-2.828zM0 36.77L36.77 0h2.828L0 39.6v-2.83zm0 5.657L42.426 0h2.83L0 45.254v-2.828zM0 48.083L48.083 0h2.828L0 50.911v-2.828zM0 53.74L53.74 0h2.827L0 56.568V53.74zM0 59.397L59.397 0H60v.603L.603 60H0v-.603zM60 5.66L54.34 0H60v5.66zM60 11.314L48.685 0H60v11.314zm0 5.657L42.343 0H60v16.97zm0 5.657L35.687 0H60v22.627zm0 5.657L29.03 0H60v28.284zm0 5.658L22.373 0H60v33.94zm0 5.657L15.716 0H60v39.598zm0 5.657L9.06 0H60v45.254zm0 5.657L2.402 0H60v50.911zM60 56.568L5.23 0H60v56.568z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.hero-road::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 60px;
    background: var(--white);
    opacity: 0.3;
    animation: roadLine 1.5s ease-in-out infinite;
}

@keyframes roadLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(185, 28, 28, 0.9);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-org-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.hero-visual video {
    max-height: 350px;
}

.hero-logo-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-audio-trigger {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hero-audio-trigger:hover {
    transform: scale(1.05);
}

.hero-audio-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    transition: opacity 0.3s ease;
}

.hero-audio-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-audio-controls {
    margin-top: 0.75rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.hero-audio-controls.visible {
    opacity: 1;
    max-height: 60px;
}

.hero-audio-controls audio {
    width: 280px;
    height: 40px;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.hero-logo-container img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.3; }
}

/* ============================================
   Stats Bar (index.html)
   ============================================ */

.stats-bar {
    background: var(--white);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ============================================
   Initiatives (index.html, what-we-do.html)
   ============================================ */

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.initiative-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 45, 74, 0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.initiative-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    
}

.initiative-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 45, 74, 0.12);
}

.initiative-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.initiative-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.initiative-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.initiative-desc {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   Mission Section (index.html, what-we-do.html)
   ============================================ */

.mission-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 28, 28, 0.2) 0%, transparent 70%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-text p {
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-visual {
    position: relative;
}

.mission-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 16px;
    border-left: 4px solid var(--crimson);
}

.mission-quote p {
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.7;
}

.mission-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.8;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-secondary {
    background: var(--white);
    color: var(--crimson);
    border: none;
}

.cta-section .btn-secondary:hover {
    background: var(--cream);
}

/* ============================================
   Give Page (give.html)
   ============================================ */

.give-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.give-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.give-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    
}

.give-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson), var(--crimson-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.give-card:hover::before {
    transform: scaleX(1);
}

.give-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 45, 74, 0.1);
}

.give-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-200);
    margin-bottom: 1rem;
}

.give-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.give-desc {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   Partner Page (partner.html)
   ============================================ */

.partner-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.partner-card .initiative-card-footer {
    margin-top: auto;
}

.partner-card.featured {
    border-color: var(--crimson);
    transform: scale(1.02);
}

.partner-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--crimson);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.partner-card:hover {
    border-color: var(--navy);
}

.partner-tier {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--crimson);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.partner-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.partner-tagline {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1rem;
}

.partner-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.partner-benefits {
    list-style: none;
}

.partner-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--gray-700);
}

.partner-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--crimson);
    font-weight: 700;
}

/* ============================================
   School Intro & Features (partner, scholarship, schools, what-we-do)
   ============================================ */

.school-intro {
    background: var(--gray-100);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.school-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.school-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.school-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.school-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.school-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.school-feature h4 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.school-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ============================================
   Eligibility (scholarship.html, schools.html)
   ============================================ */

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.eligibility-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.eligibility-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.eligibility-list {
    list-style: none;
}

.eligibility-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.eligibility-list li:last-child {
    border-bottom: none;
}

.eligibility-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: var(--crimson);
    border-radius: 50%;
}

/* ============================================
   Commitment Box
   ============================================ */

.commitment-box {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.commitment-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* ============================================
   Scholarship Form (scholarship.html)
   ============================================ */

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--navy);
}

.form-select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1rem center;
    background-size: 20px;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    max-width: 300px;
    line-height: 1.7;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-content,
    .initiatives-grid {
        grid-template-columns: 1fr;
    }

    .give-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-levels,
    .school-features,
    .eligibility-grid {
        grid-template-columns: 1fr;
    }

    .partner-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-logo-container {
        width: 250px;
        height: 250px;
    }

    .hero-logo-container img {
        width: 200px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .give-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.5rem;
    }
}