/* ========================================
   SUSTAINABILITY SECTION STYLES
   ======================================== */

/* Sustainability Section */
.sustainability-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, #f5f7fa 0%, #e8eef2 100%);
    overflow: hidden;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(67, 233, 123, 0.015) 50px, rgba(67, 233, 123, 0.015) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(0, 86, 157, 0.01) 50px, rgba(0, 86, 157, 0.01) 100px);
    pointer-events: none;
}

.sustainability-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 50%, #43e97b 100%);
    box-shadow: 0 2px 10px rgba(67, 233, 123, 0.3);
}

.sustainability-section .container {
    position: relative;
    z-index: 1;
}

/* Intro Block */
.intro-block {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(192, 192, 192, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.3);
}

.intro-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a5568;
    margin: 0;
}

/* Pillars Section */
.pillars-section {
    margin-bottom: 60px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(192, 192, 192, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c0c0c0 0%, #e8e8e8 50%, #c0c0c0 100%);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(67, 233, 123, 0.3);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pillar-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.pillar-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #00569D;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pillar-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #718096;
    margin: 0;
}

/* Focus Areas */
.focus-areas {
    margin-bottom: 60px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.focus-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(192, 192, 192, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-left: 4px solid #43e97b;
}

.focus-card:hover {
    transform: translateX(5px);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(67, 233, 123, 0.3);
}

.focus-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
}

.focus-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.focus-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #718096;
    margin: 0;
}

/* Commitments Section */
.commitments-section {
    margin-bottom: 60px;
}

.commitment-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(192, 192, 192, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
    position: relative;
    overflow: hidden;
}

.commitment-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 50%, #43e97b 100%);
}

.commitment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.commitment-header i {
    font-size: 32px;
    color: #43e97b;
}

.commitment-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.commitment-list li:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.commitment-list li i {
    color: #43e97b;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.commitment-list li span {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

/* Sustainability Stats */
.sustainability-stats {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(192, 192, 192, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
    position: relative;
    overflow: hidden;
}

.sustainability-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 50%, #43e97b 100%);
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.stats-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stats-header h3 i {
    color: #43e97b;
    font-size: 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(67, 233, 123, 0.3);
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 6px 12px rgba(67, 233, 123, 0.3);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #43e97b;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sustainability-section {
        padding: 40px 0;
    }

    .intro-block {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .intro-content p {
        font-size: 15px;
    }

    .pillar-card,
    .commitment-box,
    .sustainability-stats {
        padding: 30px 20px;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-card {
        flex-direction: row;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-header h3 {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
    }
}
