/* Philanthropy Page Specific Styles */

/* Hero Section */
.philanthropy-page .hero-section {
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.philanthropy-page .hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.philanthropy-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 72, 88, 0.3);
    z-index: 1;
}

.philanthropy-page .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 90%;
    color: white;
}

.philanthropy-page .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.philanthropy-page .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.philanthropy-page .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Approach Section */
.approach-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-terracotta) 100%);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 72, 88, 0.15);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.approach-icon i {
    font-size: 2rem;
    color: white;
}

.approach-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
}

/* Regenerative Tourism Section */
.regenerative-section {
    padding: 5rem 0;
    background: var(--neutral-light);
}

.regenerative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.regenerative-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.regenerative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--primary-green) 100%);
}

.regenerative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 72, 88, 0.15);
}

.regenerative-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--primary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.regenerative-icon i {
    font-size: 2rem;
    color: white;
}

.regenerative-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.regenerative-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
}

/* Focus Areas Section */
.focus-areas-section {
    padding: 5rem 0;
    background: white;
}

.focus-area {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.focus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
}

.focus-content.reverse {
    direction: rtl;
}

.focus-content.reverse > * {
    direction: ltr;
}

.focus-text {
    padding: 3rem;
}

.focus-text h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.focus-text h3 i {
    color: var(--accent-terracotta);
}

.focus-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--neutral-beige);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.impact-list li:last-child {
    border-bottom: none;
}

.impact-list strong {
    color: var(--primary-green);
    font-weight: 600;
}

.focus-image {
    height: 500px;
    overflow: hidden;
}

.focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.focus-area:hover .focus-image img {
    transform: scale(1.05);
}

/* Visitor Engagement Section */
.visitor-engagement-section {
    padding: 5rem 0;
    background: var(--neutral-light);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.engagement-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

.engagement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 72, 88, 0.15);
}

.engagement-content {
    padding: 2.5rem;
}

.engagement-content h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.engagement-content h3 i {
    color: var(--accent-terracotta);
    font-size: 1.2rem;
}

.engagement-content p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

.transformative-impact {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--neutral-beige);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.transformative-impact h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.transformative-impact p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.impact-stat {
    text-align: center;
}

.impact-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.impact-stat .stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.3;
    max-width: 150px;
}

/* Impact Stories Section */
.impact-stories-section {
    padding: 5rem 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-beige);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 72, 88, 0.15);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-sage);
    transform: translateX(5px);
}

/* Partnership Section */
.partnership-section {
    padding: 5rem 0;
    background: var(--neutral-light);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.partnership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--neutral-beige);
    transition: all 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 72, 88, 0.15);
}

.partnership-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.partnership-icon i {
    font-size: 1.8rem;
    color: white;
}

.partnership-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partnership-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partnership-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.partnership-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.partnership-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.partnership-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partnership-btn:hover {
    background: var(--accent-sage);
    transform: translateY(-2px);
}

/* Transparency Section */
.transparency-section {
    padding: 5rem 0;
    background: white;
}

.transparency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.transparency-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.transparency-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--primary-green);
    color: white;
    border: 2px solid var(--primary-green);
}

.cta-button.primary:hover {
    background: var(--accent-sage);
    border-color: var(--accent-sage);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cta-button.secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.transparency-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--neutral-beige);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-description {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.4;
}

/* Get Involved Section */
.get-involved-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-sage) 100%);
    color: white;
}

.get-involved-content {
    text-align: center;
}

.get-involved-content .section-title {
    color: white;
    margin-bottom: 1rem;
}

.get-involved-content .section-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.option-icon i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.option-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.option-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.option-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.option-btn:hover {
    background: var(--accent-terracotta);
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-philanthropy-section {
    padding: 4rem 0;
    background: var(--neutral-light);
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.95rem;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--accent-sage);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 72, 88, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .philanthropy-page .hero-section {
        min-height: 400px;
    }

    .philanthropy-page .hero-image {
        height: 400px;
        object-fit: cover;
    }

    .philanthropy-page .hero-title {
        font-size: 2.5rem;
    }

    .philanthropy-page .hero-subtitle {
        font-size: 1.2rem;
    }

    .philanthropy-page .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .approach-grid,
    .regenerative-grid,
    .engagement-grid,
    .stories-grid,
    .partnership-grid,
    .involvement-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-stats {
        gap: 2rem;
    }

    .focus-content {
        grid-template-columns: 1fr;
    }

    .focus-content.reverse {
        direction: ltr;
    }

    .focus-image {
        height: 300px;
        order: -1;
    }

    .focus-text {
        padding: 2rem;
    }

    .transparency-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .transparency-actions {
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .philanthropy-page .hero-title {
        font-size: 2rem;
    }

    .philanthropy-page .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .approach-card,
    .regenerative-card,
    .engagement-content,
    .story-content,
    .partnership-card,
    .option-card {
        padding: 1.5rem;
    }

    .transformative-impact {
        padding: 2rem;
    }

    .impact-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .impact-stat .stat-label {
        max-width: none;
    }

    .focus-text {
        padding: 1.5rem;
    }

    .focus-text h3 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .transparency-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
