.eco-hero {
    padding: 150px 0 80px;
    position: relative;
    background: linear-gradient(180deg, #0a0a12 0%, #12101a 100%);
    overflow: hidden;
}

.eco-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(102,126,234,0.1) 0%, transparent 50%);
}

.eco-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eco-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.eco-hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.eco-search-box {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 5px 25px;
    transition: all 0.3s ease;
}

.eco-search-box:focus-within {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.eco-search-box i {
    color: var(--text-muted);
    font-size: 20px;
    margin-right: 15px;
}

.eco-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    padding: 15px 0;
    outline: none;
}

.eco-search-box input::placeholder {
    color: var(--text-muted);
}

.eco-categories-section {
    padding: 40px 0;
    background: #0a0a12;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.eco-filter-bar {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.eco-filter-bar::-webkit-scrollbar {
    display: none;
}

.eco-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.eco-filter-btn:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
}

.eco-filter-btn.active {
    background: linear-gradient(135deg, var(--gold), #c4a030);
    border-color: var(--gold);
    color: #0a0a12;
}

.eco-filter-btn i {
    font-size: 18px;
}

.filter-count {
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.eco-projects-section {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #0a0a12 0%, #0d0816 100%);
}

.eco-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.eco-project-card {
    background: linear-gradient(145deg, rgba(25,22,35,0.9) 0%, rgba(15,12,22,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.eco-project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.eco-project-img {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #1a1a25 0%, #0d0816 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.eco-project-img img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.eco-project-card:hover .eco-project-img img {
    transform: scale(1.1);
}

.eco-project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eco-project-status.live {
    background: linear-gradient(135deg, var(--green-1), var(--green-2));
    color: #0a0a12;
}

.eco-project-status.coming {
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: white;
}

.eco-project-content {
    padding: 25px;
}

.eco-project-category {
    display: inline-block;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.eco-project-name {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.eco-project-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.eco-project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.eco-project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.eco-project-link:hover {
    color: var(--gold);
}

.eco-project-pv {
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
}

.eco-coming-soon {
    text-align: center;
    padding: 60px;
    background: linear-gradient(145deg, rgba(25,22,35,0.6) 0%, rgba(15,12,22,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
}

.eco-coming-soon h3 {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.eco-coming-soon p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.eco-coming-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.eco-coming-categories span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-light);
}

.eco-coming-categories span i {
    color: var(--gold);
}

.eco-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0816 0%, #0a0a12 100%);
    text-align: center;
}

.eco-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.eco-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.eco-cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .eco-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .eco-hero {
        padding: 130px 0 60px;
    }
    
    .eco-hero-title {
        font-size: 44px;
    }
    
    .eco-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .eco-filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .eco-hero {
        padding: 110px 0 50px;
    }
    
    .eco-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .eco-hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .eco-search-box {
        padding: 4px 20px;
    }
    
    .eco-search-box input {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .eco-categories-section {
        padding: 20px 0;
        top: 60px;
    }
    
    .eco-filter-bar {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .eco-filter-btn {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .eco-filter-btn i {
        font-size: 14px;
    }
    
    .filter-count {
        padding: 2px 6px;
        font-size: 10px;
    }
    
    .eco-projects-section {
        padding: 40px 0;
    }
    
    .eco-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .eco-project-card {
        padding: 20px;
    }
    
    .eco-project-image {
        width: 60px;
        height: 60px;
    }
    
    .eco-project-image img {
        width: 35px;
        height: 35px;
    }
    
    .eco-project-name {
        font-size: 18px;
    }
    
    .eco-project-desc {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .eco-hero {
        padding: 100px 0 40px;
    }
    
    .eco-hero-title {
        font-size: 28px;
    }
    
    .eco-hero-subtitle {
        font-size: 14px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .eco-project-card {
        padding: 18px;
    }
    
    .eco-project-stats {
        gap: 15px;
    }
    
    .eco-project-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}
