/* =============================================
   Golden Hands Programme - Pay It Forward Page
   Premium Corporate Sponsorship & Bolt Award
   ============================================= */

/* Hero Section */
.pif-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a472a 0%, #0d2818 100%);
    overflow: hidden;
}

.pif-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/hero-sample.jpeg') center/cover;
    opacity: 0.15;
}

.pif-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
}

.pif-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
}

.pif-hero-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.pif-hero-badge svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(231, 76, 60, 0.3); }
}

.pif-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.pif-hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.pif-hero-mission {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.pif-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pif-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a472a;
    font-weight: 700;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.scroll-indicator-pif {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.scroll-indicator-pif span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator-pif svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Mission Section */
.pif-mission-section {
    padding: 100px 0;
    background: #fff;
}

.pif-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pif-mission-content .lead {
    font-size: 1.15rem;
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-highlights {
    margin-top: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.highlight svg {
    width: 24px;
    height: 24px;
    stroke: #27ae60;
    flex-shrink: 0;
}

.pif-mission-visual {
    position: relative;
}

.mission-image-stack {
    position: relative;
    height: 400px;
}

.mission-img {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a472a, #0d2818);
}

.mission-img-1 {
    width: 280px;
    height: 320px;
    top: 0;
    left: 0;
    background: url('../images/jerk-chicken-large-pan-Vertical@2x.webp') center/cover;
}

.mission-img-2 {
    width: 220px;
    height: 260px;
    bottom: 0;
    right: 0;
    background: url('../images/oxtail-large-tray-Vertical@2x.webp') center/cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.mission-impact-card {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
}

.mission-impact-card .impact-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.mission-impact-card .impact-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Individual Giving Section */
.individual-giving-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header.centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.giving-tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.giving-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.giving-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.giving-card.featured {
    border-color: #27ae60;
    background: linear-gradient(to bottom, #f0fff4, #fff);
}

.giving-card.golden {
    border-color: #FFD700;
    background: linear-gradient(to bottom, #fffef0, #fff);
}

.giving-card.champion {
    border-color: #9b59b6;
    background: linear-gradient(to bottom, #f8f0ff, #fff);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.giving-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.giving-icon.seed { background: #e8f5e9; }
.giving-icon.seed svg { stroke: #27ae60; }

.giving-icon.meal { background: #e3f2fd; }
.giving-icon.meal svg { stroke: #2196f3; }

.giving-icon.family { background: #f3e5f5; }
.giving-icon.family svg { stroke: #9c27b0; }

.giving-icon.golden-hands { background: linear-gradient(135deg, #FFD700, #FFA500); }
.giving-icon.golden-hands svg { fill: #fff; }

.giving-icon.champion-icon { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.giving-icon.champion-icon svg { stroke: #fff; }

.giving-icon svg {
    width: 28px;
    height: 28px;
}

.giving-card h3 {
    font-size: 1rem;
    color: #1a472a;
    margin-bottom: 10px;
}

.giving-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 10px;
}

.giving-card > p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    min-height: 40px;
}

.giving-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    font-size: 0.8rem;
    color: #555;
}

.giving-benefits li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.giving-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-champion {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: #fff;
    border: none;
}

.btn-champion:hover {
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

/* Custom Giving */
.custom-giving {
    margin-top: 50px;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.custom-giving h3 {
    margin-bottom: 10px;
}

.custom-giving > p {
    color: #666;
    margin-bottom: 20px;
}

.custom-giving-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.custom-input-wrapper {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    transition: border-color 0.3s;
}

.custom-input-wrapper:focus-within {
    border-color: #27ae60;
}

.currency-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a472a;
}

.custom-input-wrapper input {
    border: none;
    background: transparent;
    padding: 15px 10px;
    font-size: 1.2rem;
    width: 150px;
    outline: none;
}

/* Corporate Programme Section */
.corporate-programme-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a472a 0%, #0d2818 100%);
    position: relative;
    overflow: hidden;
}

.corporate-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.section-header.light h2,
.section-header.light p {
    color: #fff;
}

.section-tag.gold {
    color: #FFD700;
}

.corporate-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.corporate-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.corporate-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.corporate-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.corporate-card:hover {
    transform: translateY(-5px);
}

.corporate-card.bronze .corp-tier-icon { color: #CD7F32; }
.corporate-card.silver .corp-tier-icon { color: #C0C0C0; }
.corporate-card.gold .corp-tier-icon { color: #FFD700; }
.corporate-card.platinum .corp-tier-icon { color: #E5E4E2; }

.corp-tier-header {
    margin-bottom: 15px;
}

.corp-tier-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
}

.corp-tier-icon svg {
    width: 100%;
    height: 100%;
}

.corp-tier-icon.bolt {
    color: #FFD700;
    animation: boltGlow 2s ease-in-out infinite;
}

@keyframes boltGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

.corp-tier-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a472a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platinum-badge {
    background: linear-gradient(135deg, #E5E4E2, #B4B4B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bolt-award-title {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a472a;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.bolt-lightning {
    animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.corp-tier-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 5px;
}

.corp-tier-amount span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.corp-tier-impact {
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 20px;
}

.corp-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
    font-size: 0.8rem;
    color: #555;
}

.corp-benefits li {
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}

.corp-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.corp-benefits .highlight-benefit {
    background: linear-gradient(135deg, #fffef0, #fff8e1);
    margin: 8px -10px;
    padding: 10px;
    padding-left: 25px;
    border-radius: 8px;
    border-left: 3px solid #FFD700;
    color: #1a472a !important;
}

.corp-benefits .highlight-benefit strong {
    color: #1a472a;
}

.btn-bronze {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    color: #fff;
    border: none;
}

.btn-silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #333;
    border: none;
}

.btn-gold-corp {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a472a;
    border: none;
    font-weight: 700;
}

.btn-platinum {
    background: linear-gradient(135deg, #1a472a, #0d2818);
    color: #FFD700;
    border: 2px solid #FFD700;
    font-weight: 700;
}

.btn-platinum:hover {
    background: #FFD700;
    color: #1a472a;
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #27ae60;
    color: #fff;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.corporate-card.platinum {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #FFD700;
}

.corporate-card.platinum .corp-tier-badge,
.corporate-card.platinum .corp-tier-amount,
.corporate-card.platinum .corp-benefits li {
    color: #fff;
}

.corporate-card.platinum .corp-benefits li::before {
    color: #FFD700;
}

.bolt-award-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bolt Award Section */
.bolt-award-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.bolt-award-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.award-showcase {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-glow-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.award-statue {
    position: relative;
    z-index: 2;
    text-align: center;
}

.statue-base {
    width: 100px;
    height: 20px;
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    border-radius: 5px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.statue-figure {
    position: relative;
    margin-bottom: 10px;
}

.bolt-pose-icon {
    width: 120px;
    height: 180px;
    color: #FFD700;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.statue-nameplate {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: #FFD700;
    padding: 8px 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block;
}

.award-rays {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-rays span {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to top, transparent, rgba(255, 215, 0, 0.3));
    transform-origin: center bottom;
}

.award-rays span:nth-child(1) { transform: rotate(0deg) translateY(-50px); }
.award-rays span:nth-child(2) { transform: rotate(45deg) translateY(-50px); }
.award-rays span:nth-child(3) { transform: rotate(90deg) translateY(-50px); }
.award-rays span:nth-child(4) { transform: rotate(135deg) translateY(-50px); }
.award-rays span:nth-child(5) { transform: rotate(180deg) translateY(-50px); }
.award-rays span:nth-child(6) { transform: rotate(225deg) translateY(-50px); }
.award-rays span:nth-child(7) { transform: rotate(270deg) translateY(-50px); }
.award-rays span:nth-child(8) { transform: rotate(315deg) translateY(-50px); }

.bolt-award-info h2 {
    color: #1a472a;
    margin-bottom: 10px;
}

.bolt-tagline {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.bolt-features {
    margin: 30px 0;
}

.bolt-feature {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.bolt-feature svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: #FFD700;
}

.bolt-feature strong {
    display: block;
    color: #1a472a;
    margin-bottom: 3px;
}

.bolt-feature span {
    font-size: 0.9rem;
    color: #666;
}

.btn-bolt {
    background: linear-gradient(135deg, #1a472a, #0d2818);
    color: #FFD700;
    border: 2px solid #FFD700;
    font-weight: 700;
    padding: 15px 35px;
}

.btn-bolt:hover {
    background: #FFD700;
    color: #1a472a;
}

/* Impact Metrics */
.impact-metrics-section {
    padding: 80px 0;
    background: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: #fff;
}

.impact-card .impact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a472a;
}

.impact-card .impact-label {
    font-size: 0.9rem;
    color: #666;
}

/* How It Works */
.how-it-works-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-content h4 {
    color: #1a472a;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.85rem;
    color: #666;
    max-width: 150px;
    margin: 0 auto;
}

.process-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

/* Corporate Contact */
.corporate-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a472a 0%, #0d2818 100%);
}

.corporate-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.corporate-contact-info h2 {
    color: #fff;
    margin-bottom: 15px;
}

.corporate-contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.contact-method svg {
    width: 24px;
    height: 24px;
    stroke: #FFD700;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-method span {
    font-size: 1rem;
}

.corporate-contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
}

.corporate-contact-form h3 {
    color: #1a472a;
    margin-bottom: 25px;
    text-align: center;
}

.corporate-contact-form .form-group {
    margin-bottom: 15px;
}

.corporate-contact-form input,
.corporate-contact-form select,
.corporate-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.corporate-contact-form input:focus,
.corporate-contact-form select:focus,
.corporate-contact-form textarea:focus {
    outline: none;
    border-color: #1a472a;
}

.corporate-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-full {
    width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .giving-tiers {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 992px) {
    .pif-mission-grid,
    .bolt-award-content,
    .corporate-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pif-mission-visual {
        order: -1;
    }

    .mission-image-stack {
        height: 300px;
    }

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

@media (max-width: 768px) {
    .pif-hero-content {
        padding: 100px 20px 60px;
    }

    .pif-hero-stats {
        gap: 30px;
    }

    .giving-tiers {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .corporate-tiers {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-connector {
        width: 3px;
        height: 40px;
    }

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

    .corporate-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .pif-hero h1 {
        font-size: 2rem;
    }

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

/* =============================================
   Donor Wall of Fame
   ============================================= */
.donor-wall-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.donor-wall-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.donor-wall-section .section-header h2 {
    color: #fff;
    font-size: 2.5rem;
}

.donor-wall-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* Donor Tiers */
.donor-tier {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.tier-header {
    text-align: center;
    margin-bottom: 25px;
}

.tier-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-icon svg {
    width: 30px;
    height: 30px;
}

.tier-icon.bolt {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 3px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: boltPulse 2s ease-in-out infinite;
}

.tier-icon.bolt svg {
    fill: #FFD700;
}

@keyframes boltPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.7); }
}

.tier-icon.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.tier-icon.gold svg {
    fill: #1a472a;
}

.tier-icon.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
}

.tier-icon.silver svg {
    fill: #333;
}

.tier-icon.bronze {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
}

.tier-icon.bronze svg {
    fill: #fff;
}

.tier-icon.heart {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.tier-icon.heart svg {
    fill: #fff;
}

.tier-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.tier-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Donor Names Container */
.donor-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Platinum Plaques - Most Prestigious */
.donor-plaque.platinum {
    background: linear-gradient(135deg, #1a1a2e, #0a0a15);
    border: 3px solid #FFD700;
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 215, 0, 0.05);
    min-width: 280px;
}

.donor-plaque.platinum::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 60%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.donor-plaque.platinum .plaque-name {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.donor-plaque.platinum .plaque-year {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 215, 0, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

/* Gold Plaques */
.donor-plaque.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    min-width: 200px;
}

.donor-plaque.gold .plaque-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a472a;
}

/* Silver Plaques */
.donor-plaque.silver {
    background: linear-gradient(135deg, #E8E8E8, #C0C0C0);
    padding: 18px 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
    min-width: 180px;
}

.donor-plaque.silver .plaque-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Bronze Plaques */
.donor-plaque.bronze {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    padding: 15px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.3);
    min-width: 160px;
}

.donor-plaque.bronze .plaque-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

/* Individual Donor Names */
.individual-names {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
}

.donor-name {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.donor-name:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    transform: translateY(-2px);
}

/* Donor Wall CTA */
.donor-wall-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.donor-wall-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.donor-wall-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.donor-wall-cta .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.donor-wall-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .donor-wall-section {
        padding: 60px 0;
    }

    .donor-plaque.platinum {
        padding: 20px 30px;
        min-width: 220px;
    }

    .donor-plaque.platinum .plaque-name {
        font-size: 1.2rem;
    }

    .donor-names {
        padding: 20px;
    }

    .tier-header h3 {
        font-size: 1.1rem;
    }
}
