/* Root Variables */
:root {
    --color-eco-green: #228B22;
    --color-nature-blue: #1E90FF;
    --color-eco-wood: #8B4513;
    --color-solar-yellow: #FFD700;
    --color-neutral-beige: #F5F5DC;
    --color-white: #FFFFFF;
    --color-dark: #2C3E2C;
    --color-light-gray: #F0F0F0;
    
    --font-natural: 'Lato', sans-serif;
    --font-structural: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.3s ease;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-natural);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-eco-green), var(--color-nature-blue));
    color: var(--color-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--color-solar-yellow);
    text-decoration: underline;
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.95), rgba(30, 144, 255, 0.95));
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-structural);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-white);
}

.logo-img {
    width: 50px;
    height: 50px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--color-white);
    font-family: var(--font-structural);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #228B22 0%, #1E90FF 100%);
    overflow: hidden;
    padding: 80px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(139,69,19,0.1)"/></svg>') no-repeat center bottom,
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 245, 220, 0.15) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-title {
    font-family: var(--font-structural);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero {
    display: inline-block;
    background: var(--color-solar-yellow);
    color: var(--color-dark);
    padding: 18px 50px;
    border-radius: 50px;
    font-family: var(--font-structural);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    transition: var(--transition-smooth);
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero:hover {
    background: var(--color-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.hero-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    animation: fadeInUp 1s ease 0.9s both;
}

.metric-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.metric-icon svg {
    width: 100%;
    height: 100%;
}

.metric-card h3 {
    font-family: var(--font-structural);
    font-size: 2rem;
    color: var(--color-eco-green);
    margin-bottom: 10px;
}

.metric-card p {
    color: var(--color-dark);
    font-size: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-structural);
    font-size: 2.8rem;
    color: var(--color-eco-green);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* Initiatives Section */
.initiatives {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-neutral-beige) 0%, #ffffff 100%);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.initiative-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-eco-green);
}

.initiative-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.initiative-icon svg {
    width: 100%;
    height: 100%;
}

.initiative-card h3 {
    font-family: var(--font-structural);
    font-size: 1.5rem;
    color: var(--color-eco-green);
    margin-bottom: 15px;
}

.initiative-card p {
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.initiative-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--color-neutral-beige);
}

.stat-number {
    font-family: var(--font-structural);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-nature-blue);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-dark);
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: var(--color-white);
}

.solution-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.solution-feature:last-child {
    margin-bottom: 0;
}

.solution-feature.reverse {
    direction: rtl;
}

.solution-feature.reverse > * {
    direction: ltr;
}

.solution-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.solution-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.solution-image:hover img {
    transform: scale(1.05);
}

.solution-text h3 {
    font-family: var(--font-structural);
    font-size: 2rem;
    color: var(--color-eco-green);
    margin-bottom: 20px;
}

.solution-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.solution-benefits {
    list-style: none;
}

.solution-benefits li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--color-dark);
    line-height: 1.6;
}

.solution-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-eco-green);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Calculator Section */
.calculator {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, rgba(30, 144, 255, 0.05) 100%);
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calculator-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-structural);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-neutral-beige);
    border-radius: 8px;
    font-family: var(--font-natural);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-eco-green);
}

.btn-primary {
    background: var(--color-eco-green);
    color: var(--color-white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-structural);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.btn-primary:hover {
    background: var(--color-nature-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.calculator-results {
    display: grid;
    gap: 25px;
}

.result-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--color-eco-green);
}

.result-card.highlight {
    border-left-color: var(--color-solar-yellow);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.result-card h3 {
    font-family: var(--font-structural);
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.result-value {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.result-value span:first-child {
    font-family: var(--font-structural);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-eco-green);
}

.result-value .unit {
    font-size: 1rem;
    color: var(--color-dark);
}

.savings-visualization {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.savings-bar {
    width: 100%;
    height: 30px;
    background: var(--color-light-gray);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.savings-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-eco-green), var(--color-nature-blue));
    transition: width 1.5s ease;
}

.savings-text {
    text-align: center;
    color: var(--color-dark);
    line-height: 1.6;
}

/* Certifications Section */
.certifications {
    padding: 100px 0;
    background: var(--color-white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.cert-card {
    background: linear-gradient(135deg, var(--color-neutral-beige) 0%, var(--color-white) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.cert-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.cert-badge svg {
    width: 100%;
    height: 100%;
}

.cert-card h3 {
    font-family: var(--font-structural);
    font-size: 1.5rem;
    color: var(--color-eco-green);
    margin-bottom: 15px;
}

.cert-card p {
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cert-level {
    display: inline-block;
    background: var(--color-eco-green);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-structural);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-neutral-beige) 0%, #ffffff 100%);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.case-image {
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 35px;
}

.case-content h3 {
    font-family: var(--font-structural);
    font-size: 1.6rem;
    color: var(--color-eco-green);
    margin-bottom: 10px;
}

.case-location {
    color: var(--color-nature-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.case-content > p {
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 25px;
    border-top: 2px solid var(--color-neutral-beige);
}

.case-metric {
    text-align: center;
}

.case-metric strong {
    display: block;
    font-family: var(--font-structural);
    font-size: 1.8rem;
    color: var(--color-eco-green);
    margin-bottom: 5px;
}

.case-metric span {
    font-size: 0.85rem;
    color: var(--color-dark);
}

/* Practices Map Section */
.practices-map {
    padding: 100px 0;
    background: var(--color-white);
}

.map-container {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, rgba(30, 144, 255, 0.05) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    min-height: 500px;
}

.practice-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.practice-point {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.practice-point:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.point-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-eco-green), var(--color-nature-blue));
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
}

.point-marker::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-solar-yellow);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.point-info h4 {
    font-family: var(--font-structural);
    font-size: 1.4rem;
    color: var(--color-eco-green);
    margin-bottom: 10px;
}

.point-info p {
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.point-stat {
    display: inline-block;
    background: var(--color-nature-blue);
    color: var(--color-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-family: var(--font-structural);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, rgba(30, 144, 255, 0.05) 100%);
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-item {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.tech-icon svg {
    width: 100%;
    height: 100%;
}

.tech-item h3 {
    font-family: var(--font-structural);
    font-size: 1.4rem;
    color: var(--color-eco-green);
    margin-bottom: 15px;
}

.tech-item p {
    color: var(--color-dark);
    line-height: 1.7;
}

/* ESG Reports Section */
.esg-reports {
    padding: 100px 0;
    background: var(--color-white);
}

.esg-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.esg-category {
    background: linear-gradient(135deg, var(--color-neutral-beige) 0%, var(--color-white) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.esg-category h3 {
    font-family: var(--font-structural);
    font-size: 1.8rem;
    color: var(--color-eco-green);
    margin-bottom: 30px;
    text-align: center;
}

.esg-metrics {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.esg-metric {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-label {
    font-family: var(--font-structural);
    font-weight: 600;
    color: var(--color-dark);
}

.metric-bar {
    width: 100%;
    height: 20px;
    background: var(--color-light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.metric-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-eco-green), var(--color-nature-blue));
    border-radius: 10px;
    transition: width 1s ease;
}

.metric-value {
    font-family: var(--font-structural);
    font-weight: 600;
    color: var(--color-nature-blue);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-neutral-beige) 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-structural);
    font-size: 2.5rem;
    color: var(--color-eco-green);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-item h4 {
    font-family: var(--font-structural);
    font-size: 1.2rem;
    color: var(--color-eco-green);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--color-dark);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    font-family: var(--font-structural);
    font-size: 2rem;
    color: var(--color-eco-green);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .btn-primary {
    width: 100%;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--color-white);
}

.google-map {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a2a1a 100%);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
}

.footer-logo span {
    font-family: var(--font-structural);
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-col h4 {
    font-family: var(--font-structural);
    font-size: 1.3rem;
    color: var(--color-solar-yellow);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--color-neutral-beige);
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--color-solar-yellow);
    padding-left: 5px;
}

.footer-col p {
    color: var(--color-neutral-beige);
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-neutral-beige);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .solution-feature,
    .calculator-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-feature.reverse {
        direction: ltr;
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--color-eco-green), var(--color-nature-blue));
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        display: none;
        box-shadow: var(--shadow-soft);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .initiatives,
    .solutions,
    .calculator,
    .certifications,
    .case-studies,
    .practices-map,
    .technology,
    .esg-reports,
    .contact,
    .map-section {
        padding: 60px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .metric-card,
    .initiative-card,
    .cert-card,
    .tech-item {
        padding: 25px;
    }
    
    .case-metrics {
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .initiative-card,
    .solution-feature,
    .case-card,
    .tech-item,
    .practice-point {
        opacity: 0;
        animation: fadeIn 0.8s ease forwards;
    }
    
    .initiative-card:nth-child(1) { animation-delay: 0.1s; }
    .initiative-card:nth-child(2) { animation-delay: 0.2s; }
    .initiative-card:nth-child(3) { animation-delay: 0.3s; }
    .initiative-card:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .cookie-consent,
    .btn-hero,
    .btn-primary {
        display: none;
    }
}
