/**
 * LPC Landing Page - Earthy Tones Design
 * Professional hydropower company with muted earthy color palette
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #3a3a3a;
    overflow-x: hidden;
}

/* Color Palette */
:root {
    --primary-green: #6b8e6b;
    --secondary-green: #8fbc8f;
    --accent-green: #a8c8a8;
    --warm-gray: #8b8b8b;
    --light-gray: #f5f5f5;
    --beige: #f7f3f0;
    --dark-gray: #4a4a4a;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #666666;
}

/* Header styles are now in shared.css */

/* Hero Gallery Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content .highlight {
    color: var(--accent-green);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(107, 142, 107, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-green);
    color: var(--white);
    transform: translateY(-3px);
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-green);
    transform: scale(1.2);
}

/* Diagonal Sections */
.diagonal-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--beige);
    transform: skewY(-2deg);
    transform-origin: top left;
    z-index: -1;
}

.diagonal-section.white::before {
    background: var(--white);
}

.diagonal-section.green::before {
    background: var(--light-gray);
}

.diagonal-section.dark::before {
    background: var(--primary-green);
    color: var(--white);
}

.diagonal-section.dark {
    color: var(--white);
}

.diagonal-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Projects Section */
.projects-section {
    background: var(--beige);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header .highlight {
    color: inherit !important;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(107, 142, 107, 0.3), rgba(143, 188, 143, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--secondary-green);
    transform: translateX(5px);
}

/* Projects View More Button */
.projects-view-more {
    text-align: center;
    margin-top: 3rem;
}

.projects-view-more .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(107, 142, 107, 0.3);
}

.projects-view-more .btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(107, 142, 107, 0.4);
    color: var(--white);
}

/* News Section */
.news-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 6rem 0;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--primary-green);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.news-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--primary-green);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    z-index: 1;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-section .section-header h2 {
    color: var(--accent-green) !important;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.news-section .section-header .highlight {
    color: inherit !important;
}

/* Ensure darker green for specific sections */
.projects-section .section-header h2 {
    color: var(--primary-green) !important;
}

.media-section .section-header h2 {
    color: var(--primary-green) !important;
}

.news-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-category {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.news-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-link:hover {
    color: var(--secondary-green);
    transform: translateX(5px);
}

.news-view-more {
    text-align: center;
}

.news-view-more .btn-primary {
    background: var(--white);
    color: var(--primary-green);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.news-view-more .btn-primary:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    background: var(--light-gray);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-content .highlight {
    color: var(--primary-green);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-green);
}

.cta-buttons .btn-primary:hover {
    background: var(--beige);
    color: var(--primary-green);
}

.cta-buttons .btn-secondary {
    border-color: var(--white) !important;
    color: var(--white) !important;
    background: transparent !important;
    opacity: 1 !important;
    font-size: inherit !important;
    padding: 1rem 2rem !important;
    border-width: 2px !important;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--accent-green) !important;
    color: var(--white) !important;
    opacity: 1 !important;
}

/* Footer styles are now in shared.css */

/* Modern Homepage Content Sections - Corporate Design */
.homepage-content {
    background: var(--white);
    width: 100%;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
}

/* Introduction Section with Abstract Background */
.intro-section-modern {
    position: relative;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, rgba(107, 142, 107, 0.03), rgba(143, 188, 143, 0.05));
    overflow: hidden;
    width: 100%;
}

.intro-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/abstract/abstract-wave-element-for-design-digital-frequency-track.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.intro-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.intro-text-modern {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 400;
}

/* Modern Content Sections */
.content-section-modern {
    padding: 3rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.intro-section-modern,
.glance-section-modern,
.disclosure-section-modern,
.engagement-section-modern,
.sustainable-section-modern {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header-modern {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(107, 142, 107, 0.25);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-content-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-header-modern .section-icon {
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.7;
    flex-shrink: 0;
}

.section-header-modern h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

.section-content-wrapper {
    max-width: 1000px;
}

.section-content-wrapper p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Project Cascade List */
.project-cascade-modern {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.project-cascade-modern {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.project-cascade-modern li {
    font-size: 1.2rem;
    padding: 1rem 0;
    padding-left: 2rem;
    color: var(--text-dark);
    position: relative;
    border-left: 3px solid var(--primary-green);
    margin-left: 1rem;
    padding-left: 2rem;
}

.project-cascade-modern li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 1.4rem;
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
}

/* Project at a Glance Section with Abstract Background */
.glance-section-modern {
    position: relative;
    padding: 4rem 0;
    background: var(--beige);
    overflow: hidden;
    width: 100%;
}

.glance-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/abstract/abstract-boxes-background-modern-technology-with-square.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06;
    z-index: 0;
}

.glance-section-modern .content-container {
    position: relative;
    z-index: 1;
}

.glance-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.glance-item-modern {
    background: var(--white);
    padding: 0;
    border: none;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.glance-item-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.glance-item-modern:hover::after {
    width: 100%;
}

.glance-item-modern:hover {
    transform: translateY(-2px);
}

.glance-item-content {
    padding: 2rem 1.5rem;
    position: relative;
    background: var(--white);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.glance-icon-modern {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 1.2rem;
    font-size: 2.2rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
    line-height: 1;
}

.glance-item-modern:hover .glance-icon-modern {
    color: var(--secondary-green);
    transform: scale(1.08);
}

.glance-item-modern h3 {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: color 0.3s ease;
}

.glance-item-modern:hover h3 {
    color: var(--text-dark);
}

.glance-value {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
    letter-spacing: -0.8px;
    margin-top: auto;
}

.glance-item-modern:hover .glance-value {
    color: var(--primary-green);
}

/* Status Section */
.status-section-modern {
    background: var(--white);
}

/* Disclosure Section with Abstract Background */
.disclosure-section-modern {
    position: relative;
    padding: 4rem 0;
    background: var(--light-gray);
    overflow: hidden;
    width: 100%;
}

.disclosure-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/abstract/abstract-background-line-wave-element-sound-spectrum.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.disclosure-section-modern .content-container {
    position: relative;
    z-index: 1;
}

/* Environmental Section */
.environmental-section-modern {
    background: var(--white);
}

/* Engagement Section with Abstract Background */
.engagement-section-modern {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(107, 142, 107, 0.03), rgba(143, 188, 143, 0.05));
    overflow: hidden;
    width: 100%;
}

.engagement-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/abstract/dots.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.04;
    z-index: 0;
}

.engagement-section-modern .content-container {
    position: relative;
    z-index: 1;
}

/* Two-column layout for paragraphs in specific sections on larger screens */
.disclosure-section-modern .section-content-wrapper,
.environmental-section-modern .section-content-wrapper,
.engagement-section-modern .section-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
}

.disclosure-section-modern .section-content-wrapper > p,
.environmental-section-modern .section-content-wrapper > p,
.engagement-section-modern .section-content-wrapper > p {
    margin-bottom: 0;
}

/* CTA buttons span full width */
.disclosure-section-modern .section-cta,
.environmental-section-modern .section-cta,
.engagement-section-modern .section-cta {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding-top: 0;
    border-top: none;
}

/* Two-column layout on larger screens */
@media (min-width: 1025px) {
    .disclosure-section-modern .section-content-wrapper,
    .environmental-section-modern .section-content-wrapper,
    .engagement-section-modern .section-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .disclosure-section-modern .section-cta,
    .environmental-section-modern .section-cta,
    .engagement-section-modern .section-cta {
        margin-top: 1.5rem;
    }
}

/* Sustainable Development Section */
.sustainable-section-modern {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 50%, var(--accent-green) 100%);
    color: var(--white);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sustainable-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 142, 107, 0.1) 0%, rgba(143, 188, 143, 0.1) 100%);
    pointer-events: none;
}

.sustainable-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sustainable-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.sustainable-icon-wrapper i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.sustainable-section-modern:hover .sustainable-icon-wrapper i {
    transform: scale(1.1);
    opacity: 1;
}

.sustainable-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.sustainable-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--white);
    opacity: 0.95;
    font-weight: 400;
    margin-bottom: 3rem;
}

/* CTA Buttons */
.section-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.cta-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-green);
    letter-spacing: 0.3px;
}

.cta-button-modern:hover {
    background: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 142, 107, 0.3);
    color: var(--white);
}

.cta-button-modern i {
    transition: transform 0.3s ease;
}

.cta-button-modern:hover i {
    transform: translateX(5px);
}

/* Sustainable Section CTAs */
.sustainable-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-primary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.cta-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-container {
        padding: 0 3rem;
    }
    
    .glance-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .content-container {
        padding: 0 2.5rem;
    }
    
    .section-header-modern {
        gap: 0.75rem;
    }
    
    .section-header-modern .section-icon {
        font-size: 1.75rem;
    }
    
    .section-header-modern h2 {
        font-size: 1.75rem;
    }
    
    .glance-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .intro-section-modern,
    .content-section-modern,
    .glance-section-modern,
    .disclosure-section-modern,
    .engagement-section-modern,
    .sustainable-section-modern {
        padding: 3rem 0;
    }
    
    .content-container {
        padding: 0 2rem;
    }
    
    .intro-text-modern {
        font-size: 1.1rem;
    }
    
    .section-header-modern {
        margin-bottom: 2rem;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .section-header-modern .section-icon {
        font-size: 1.5rem;
        margin-top: 0.25rem;
        flex-shrink: 0;
    }
    
    .section-header-modern h2 {
        font-size: 1.6rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .section-content-wrapper p {
        font-size: 1.05rem;
    }
    
    .glance-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .glance-item-modern .glance-item-content {
        padding: 1.5rem 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .glance-icon-modern {
        margin-bottom: 0.75rem;
        font-size: 1.75rem;
    }
    
    .glance-item-modern h3 {
        margin-bottom: 0.5rem;
        font-size: 0.65rem;
    }
    
    .glance-value {
        margin-top: 0;
        font-size: 1.15rem;
    }
    
    .sustainable-content h2 {
        font-size: 1.6rem;
    }
    
    .sustainable-content p {
        font-size: 1.15rem;
    }
    
    .sustainable-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button-modern {
        width: 100%;
        justify-content: center;
    }
    
    .section-cta {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 1.5rem;
    }
    
    .section-header-modern {
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .section-header-modern .section-icon {
        font-size: 1.25rem;
        margin-top: 0.25rem;
        flex-shrink: 0;
    }
    
    .section-header-modern h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .glance-item-modern .glance-item-content {
        padding: 1.25rem 1rem;
    }
    
    .glance-icon-modern {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .glance-item-modern h3 {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .glance-value {
        font-size: 1rem;
    }
    
    .sustainable-content h2 {
        font-size: 1.5rem;
    }
    
    .sustainable-icon-wrapper i {
        font-size: 3rem;
    }
}

/* Media Section */
.media-section {
    background: var(--white);
    padding: 6rem 0;
}

.media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.media-item {
    background: var(--beige);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.media-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.media-item:hover::before {
    transform: scaleX(1);
}

.media-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.media-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(107, 142, 107, 0.3);
    transition: all 0.3s ease;
}

.media-item:hover .media-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(107, 142, 107, 0.4);
}

.media-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.media-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.media-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.media-link:hover {
    color: var(--secondary-green);
    transform: translateX(5px);
}

/* Enhanced Project Cards */
.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

/* Enhanced News Cards */
.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

/* Simple No Content Message */
.no-content-found {
    text-align: center;
    padding: 2rem 1rem;
    margin: 1rem 0;
}

.no-content-found p {
    font-size: 0.95rem;
    color: #8a8a8a;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* White text for news section with green background */
.news-section .no-content-found p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-slider {
        height: 80vh;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .projects-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .about-content h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
    }
    
    .slide-overlay {
        padding-top: 5rem;
    }
    
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .slider-dots {
        margin-top: 1rem;
        gap: 0.8rem;
    }
    
    .slider-dot {
        width: 14px;
        height: 14px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-grid,
    .news-grid,
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .about-content h2,
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .diagonal-content {
        padding: 0 1rem;
    }
    
    .media-container {
        padding: 0 1rem;
    }
    
    .news-section {
        padding: 4rem 0;
    }
    
    .news-section::before,
    .news-section::after {
        height: 60px;
    }
    
    .no-content-found {
        padding: 1.5rem 1rem;
    }
    
    .no-content-found p {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-slider {
        height: 85vh;
    }
    
    .slide-content {
        padding: 0 1rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-buttons {
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .slider-dots {
        margin-top: 0.8rem;
        gap: 0.6rem;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .about-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-content p,
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .project-card,
    .news-card,
    .media-item {
        margin-bottom: 1.5rem;
    }
    
    .media-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .news-section {
        padding: 3rem 0;
    }
    
    .news-section::before,
    .news-section::after {
        height: 40px;
    }
    
    .no-content-found {
        padding: 1.5rem 0.75rem;
    }
    
    .no-content-found p {
        font-size: 0.85rem;
    }
}
