.newsletter-section {
    position: relative;
    background: linear-gradient(180deg, 
        var(--primary-bg) 0%,
        var(--secondary-bg) 85%
    );
    padding-bottom: 13rem; 
    z-index: 0;
}


    .newsletter-section form input,
    .newsletter-section form textarea {
        transition: all 0.3s ease;
    }

    .newsletter-section form input:focus,
    .newsletter-section form textarea:focus {
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .newsletter-section .card {
        background: rgba(74, 59, 44, 0.4);
    }

    .newsletter-section .card:hover {
        transform: none;
    }

    @media (max-width: 768px) {
        .newsletter-section .flex-col {
            gap: 2rem;
        }
    }

   
.contact-section {
    background: linear-gradient(180deg,
        var(--primary-bg) 0%,
        var(--secondary-bg) 70%,
        var(--secondary-bg) 100%
    );
    position: relative;
    z-index: 1;
    padding-bottom: 4rem; 
}

footer {
    position: relative;
    background: linear-gradient(180deg,
        var(--secondary-bg) 0%,
        var(--primary-bg) 100%
    );
    margin-top: -1px;
    z-index: 1;
    padding-top: 8rem;
}


section {
    position: relative;
    margin-bottom: -2rem; 
    padding-bottom: 4rem;
    z-index: 1;
}

section + section {
    z-index: 2; 
}

.contact-section > *:last-child {
    margin-bottom: 0;
}

.navbar {
    background: #061221 !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.navbar .primary-btn {
    padding: 0.5rem 1.25rem;  
    font-size: 0.875rem;      
    transform: translateY(-1px); 
    margin-left: 1rem;       
    line-height: 1.25;        
}

.navbar a {
    position: relative;
    transition: all 0.3s ease;
}

.navbar a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: rgba(150, 235, 154, 0.8);
    transition: all 0.2s ease;
}

.navbar a:hover:after {
    width: 100%;
}

.navbar.scrolled {
    background-color: #0d1d31 !important;
}
