
/* Sustainability Page Specific Styles */

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sustainability Hero Section */
.sustainability-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.sustainability-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 180px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4CAF50;
    display: inline;
}

.stat-symbol {
    font-size: 1.5rem;
    color: #4CAF50;
    font-weight: 700;
    margin-left: 5px;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sustainability Overview */
.sustainability-overview {
    padding: 100px 0;

}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.overview-text h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.overview-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, var(--primary-color));
    border-radius: 2px;
}

.overview-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.sustainability-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: #4CAF50;
    min-width: 50px;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.feature p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.overview-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.image-container {
    position: relative;
    height: 400px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-overlay i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.image-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ESG Section */
.esg-section {
    padding: 100px 0;
    background: white;
}

.esg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.esg-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.esg-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(50, 50, 93, 0.2), 0 15px 25px rgba(0, 0, 0, 0.15);
}

.esg-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.esg-card:nth-child(1) .esg-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.esg-card:nth-child(2) .esg-icon {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
}

.esg-card:nth-child(3) .esg-icon {
    background: linear-gradient(135deg, #673AB7, #9C27B0);
}

.esg-icon i {
    font-size: 2.5rem;
    color: white;
}

.esg-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.esg-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.esg-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.esg-features li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.esg-features i {
    color: #4CAF50;
    min-width: 20px;
}

.esg-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    margin-top: auto;
}

.esg-metrics span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.esg-metrics i {
    color: var(--accent-color);
}

/* Environment Section */
.environment-section {
    padding: 100px 0;
  
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.initiative-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(50, 50, 93, 0.2), 0 15px 25px rgba(0, 0, 0, 0.15);
}

.initiative-image {
    height: 200px;
    overflow: hidden;
}

.initiative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.initiative-card:hover .initiative-image img {
    transform: scale(1.1);
}

.initiative-content {
    padding: 30px;
}

.initiative-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.location {
    color: #4CAF50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.initiative-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.initiative-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.spec {
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #4CAF50;
}

/* Climate Section */
.climate-section {
    padding: 100px 0;
    background: white;
}

.climate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.climate-text h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.climate-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.climate-targets {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.target {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.target-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.target-icon i {
    font-size: 1.5rem;
    color: white;
}

.target-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.target-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.climate-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.climate-stat {
    text-align: center;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.stat-circle svg {
    transform: rotate(-90deg);
}

.stat-circle circle:nth-child(2) {
    stroke-dasharray: 339.292;
    stroke-dashoffset: calc(339.292 - (339.292 * var(--percent)) / 100);
    transition: stroke-dashoffset 2s ease;
}

.stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.5;
}

.climate-initiatives {
    margin-top: 80px;
}

.climate-initiatives h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.initiatives-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.initiative {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.initiative:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.initiative i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.initiative h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.initiative p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Social Section */
.social-section {
    padding: 100px 0;
  
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.social-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(50, 50, 93, 0.2), 0 15px 25px rgba(0, 0, 0, 0.15);
}

.social-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff8a00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.social-icon i {
    font-size: 2.5rem;
    color: white;
}

.social-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.social-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.social-metrics span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.social-metrics i {
    color: #4CAF50;
}

.social-impact {
    margin-top: 60px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-stat {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: inline;
}

.impact-symbol {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-left: 5px;
}

.impact-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 10px;
}

/* Governance Section */
.governance-section {
    padding: 100px 0;
    background: white;
}

.governance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.governance-text h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.governance-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.governance-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.governance-certifications h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.certification {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.certification:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.certification p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.award-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #FFC107;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(50, 50, 93, 0.2), 0 15px 25px rgba(0, 0, 0, 0.15);
}

.award-icon {
    font-size: 3rem;
    color: #FFC107;
    margin-bottom: 20px;
}

.award-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.award-year {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.award-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.award-category {
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.award-category span {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Report Section */
.report-section {
    padding: 100px 0;
}

.report-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.report-highlights h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

.report-highlights p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.report-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.download-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    text-align: center;
    margin-bottom: 30px;
}

.download-icon {
    font-size: 4rem;
    color: #F44336;
    margin-bottom: 20px;
}

.download-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.download-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1rem;
}

.download-content .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.report-stat {
    background: white;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.report-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.report-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

/* Sustainability CTA Section */
.sustainability-cta-section {
    position: relative;
    padding: 120px 0;
    color: white;
    overflow: hidden;
}

.sustainability-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.sustainability-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.benefit i {
    color: #4CAF50;
    font-size: 1.2rem;
    min-width: 20px;
}

.benefit span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-actions {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-actions h3 {
    color: white;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}



.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-item i {
    font-size: 2rem;
    color: #4CAF50;
    min-width: 40px;
    text-align: center;
}

.contact-item h5 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Design - All Screen Sizes */
@media (max-width: 1200px) {
    .esg-grid,
    .initiatives-grid,
    .initiatives-list,
    .awards-grid,
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sustainability-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .climate-content,
    .report-content,
    .governance-content {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-stat {
        width: 100%;
        max-width: 300px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .report-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .climate-stats {
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .sustainability-hero h1 {
        font-size: 2.5rem;
    }
    
    .sustainability-hero p {
        font-size: 1.1rem;
    }
    
    .esg-grid,
    .initiatives-grid,
    .initiatives-list,
    .awards-grid,
    .social-grid,
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .report-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .stat-number,
    .impact-number {
        font-size: 2.5rem;
    }
    
    .hero-stat {
        min-width: auto;
        padding: 20px 15px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .climate-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .sustainability-hero {
        height: 70vh;
    }
    
    .sustainability-hero h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 10px;
    }
    
    .esg-card,
    .initiative-card,
    .social-card,
    .award-card,
    .impact-stat,
    .download-card {
        padding: 25px 20px;
    }
    
    .cta-buttons-group .btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .overview-content {
        gap: 40px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .initiative-specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .sustainability-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stat-number,
    .impact-number {
        font-size: 2rem;
    }
    
    .hero-stat {
        padding: 15px 10px;
    }
    
    .cta-buttons-group .btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* Loading Animation */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: #4CAF50;
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(1) {
    animation-delay: 0s;
}

.loader-ring:nth-child(2) {
    border-top-color: var(--primary-color);
    animation-delay: 0.2s;
}

.loader-ring:nth-child(3) {
    border-top-color: var(--primary-light);
    animation-delay: 0.4s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Enhanced hover effects for touch devices */
@media (hover: hover) and (pointer: fine) {
    .esg-card:hover,
    .initiative-card:hover,
    .social-card:hover,
    .award-card:hover,
    .impact-stat:hover,
    .certification:hover,
    .initiative:hover,
    .benefit:hover,
    .contact-item:hover,
    .feature:hover {
        transform: translateY(-10px);
    }
    
    .target:hover,
    .report-stat:hover {
        transform: translateY(-5px);
    }
}

/* Print styles */
@media print {
    .sustainability-hero-bg,
    .sustainability-cta-bg,
    .loader-overlay,
    .back-to-top,
    .theme-toggle {
        display: none !important;
    }
    
    .sustainability-hero,
    .sustainability-cta-section {
        color: black !important;
        background: white !important;
    }
    
    .hero-stat,
    .cta-actions,
    .esg-card,
    .initiative-card,
    .social-card,
    .award-card,
    .impact-stat,
    .download-card,
    .certification,
    .initiative,
    .report-stat {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 40px 0 !important;
    }
}

/* Circular progress animation */
@keyframes progress-animation {
    from {
        stroke-dashoffset: 339.292;
    }
    to {
        stroke-dashoffset: calc(339.292 - (339.292 * var(--percent)) / 100);
    }
}