/* ===========================
   Pages Additional Styles
   =========================== */

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.donate-header {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.impact-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.contact-header {
    background: linear-gradient(135deg, var(--primary-color), #1B5E20);
}

/* Content Sections */
.content-section {
    padding: var(--section-padding);
}

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

.content-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-text .lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.content-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

/* Mission & Vision Cards */
.mission-vision {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Founder Section */
.founder-section {
    padding: var(--section-padding);
    background: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.founder-image .image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.founder-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.founder-title {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
}

.founder-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.founder-links {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.founder-links h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.founder-links ul {
    list-style: none;
}

.founder-links li {
    margin-bottom: 10px;
}

.founder-links a {
    color: var(--secondary-color);
    font-weight: 600;
}

.founder-links a:hover {
    text-decoration: underline;
}

/* Services Grid */
.services-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Why Section */
.why-section {
    padding: var(--section-padding);
    background: var(--white);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.why-content .lead {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.why-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.why-point {
    padding: 25px;
    background: var(--light-bg);
    border-radius: 10px;
}

.why-point strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-point p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

/* Impact Stats Section */
.impact-stats-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-card .stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Relief Impact */
.relief-impact {
    padding: var(--section-padding);
    background: var(--white);
}

.relief-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.relief-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.relief-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.relief-card ul {
    list-style: none;
}

.relief-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.relief-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Success Stories */
.stories-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.stories-grid {
    display: grid;
    gap: 40px;
}

.story-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 300px 1fr;
}

.story-image .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.story-content {
    padding: 40px;
}

.story-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.story-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.story-impact {
    padding: 15px;
    background: var(--light-bg);
    border-radius: 5px;
    font-size: 0.95rem;
}

/* Funds Breakdown */
.funds-breakdown {
    padding: var(--section-padding);
    background: var(--white);
}

.breakdown-container {
    max-width: 900px;
    margin: 0 auto;
}

.breakdown-chart {
    height: 60px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    margin-bottom: 40px;
}

.chart-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
    width: calc(var(--percentage) * 1%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.breakdown-legend {
    display: grid;
    gap: 20px;
}

.legend-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    flex-shrink: 0;
}

.legend-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.legend-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Partners Section */
.partners-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.partner-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.partner-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.partner-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Donation Page Styles */
.impact-preview {
    padding: 60px 0;
    background: var(--white);
}

.impact-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.impact-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
}

.impact-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.impact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Donation Section */
.donation-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.donation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.donation-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.donation-card h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.donate-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.amount-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.amount-btn {
    padding: 15px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.custom-amount {
    margin-bottom: 25px;
}

.custom-amount label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.amount-input-wrapper {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--text-light);
}

.custom-amount input {
    width: 100%;
    padding: 15px 15px 15px 35px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.donation-type {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.donation-type label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
}

.donation-type input[type="radio"] {
    width: 20px;
    height: 20px;
}

.payment-methods {
    margin-top: 30px;
}

.payment-methods h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.payment-buttons {
    display: grid;
    gap: 15px;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paypal-btn {
    background: #0070BA;
    color: var(--white);
}

.paypal-btn:hover {
    background: #005A94;
}

.stripe-btn {
    background: #635BFF;
    color: var(--white);
}

.stripe-btn:hover {
    background: #4B45D6;
}

.payment-container {
    margin-top: 30px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
}

.payment-note {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 20px;
}

.placeholder-message {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
}

.placeholder-message p {
    margin-bottom: 15px;
}

.placeholder-message ol {
    text-align: left;
    color: var(--text-light);
}

.tax-notice {
    margin-top: 30px;
    padding: 20px;
    background: #E8F5E9;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.donation-sidebar .sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.sidebar-card h3,
.sidebar-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-list,
.help-list {
    list-style: none;
}

.benefit-list li,
.help-list li {
    padding: 10px 0;
    color: var(--text-light);
}

.help-list a {
    color: var(--secondary-color);
    font-weight: 600;
}

.help-list a:hover {
    text-decoration: underline;
}

.campaign-progress {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.goal-display .goal-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.goal-display strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.goal-display span {
    opacity: 0.9;
    font-size: 0.9rem;
}

.trust-badges p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-card strong {
    color: var(--text-dark);
}

.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.final-cta {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-methods {
    padding: 80px 0;
    background: var(--white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.method-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.method-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-links-contact a {
    color: var(--white);
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: #1B5E20;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-consent {
    margin-bottom: 25px;
}

.form-consent label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.form-message.success {
    background: #E8F5E9;
    color: var(--primary-color);
}

.form-message.error {
    background: #FFEBEE;
    color: var(--urgent-color);
}

/* Get Involved Section */
.get-involved {
    padding: 80px 0;
    background: var(--white);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.involvement-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
}

.involvement-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.involvement-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.involvement-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.involvement-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.involvement-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

.cta-text {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-text a {
    color: var(--secondary-color);
}

/* Urgent Needs Contact */
.urgent-needs-contact {
    padding: 60px 0;
    background: var(--light-bg);
}

.urgent-box {
    background: #FFF3E0;
    border: 3px solid var(--accent-color);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.urgent-box h3 {
    font-size: 1.8rem;
    color: var(--urgent-color);
    margin-bottom: 20px;
}

.urgent-box p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.urgent-box a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.contact-faq .faq-item {
    margin-bottom: 30px;
}

/* Responsive Design for Pages */
@media (max-width: 968px) {
    .content-grid,
    .founder-content,
    .story-card {
        grid-template-columns: 1fr;
    }
    
    .donation-container {
        grid-template-columns: 1fr;
    }
    
    .amount-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
}
