.green-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(16, 38, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.green-header.scrolled {
    background: rgba(16, 38, 26, 0.95);
    box-shadow: 0 2px 40px rgba(0,0,0,0.1);
}

.green-header-inner {
    max-width: 1200px;
    margin: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.green-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.green-logo h2 {
    color: #fff;
    margin: 0;
    font-weight: 700;
    font-size: 24px;
}

.green-nav {
    display: flex;
    gap: 35px;
}

.green-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.green-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    transition: width 0.3s ease;
}

.green-nav a:hover {
    color: #fff;
}

.green-nav a:hover::after {
    width: 100%;
}

.green-phone {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 20px;
    border: 2px solid rgba(43, 182, 115, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.green-phone:hover {
    border-color: var(--green-primary);
    background: rgba(43, 182, 115, 0.1);
}