/* Sustainability Page Styles */

/* Hero Section */
.sustainability-hero {
    /* Using a reliable placeholder image service since external Unsplash links were blocked */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/seed/sustain/1920/800');
    background-size: cover;
    background-position: center;
    height: 400px;
    margin-bottom: 50px;
}

/* Stats Section */
.sustainability-stats-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.stat-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bg-green-light {
    background-color: rgba(25, 135, 84, 0.1);
}

/* Vision Section */
.goal-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.vision-image {
    height: 400px;
    border-radius: 20px;
}

/* Initiatives Section */
.initiative-card {
    transition: all 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.initiative-icon {
    font-size: 1.5rem;
}

/* Goals Section */
.goal-item {
    transition: all 0.3s ease;
    border-color: #e9ecef !important;
}

.goal-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.goal-year {
    font-size: 1.2rem;
}

/* CTA Section */
.sustainability-cta-card {
    background-color: #0f172a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-warning {
    background-color: #ffc107;
    border: none;
    color: #000;
}

.btn-warning:hover {
    background-color: #ffca2c;
    color: #000;
}
