/* --- STILURI MODAL --- */
.fq-modal-overlay {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.fq-modal-overlay.is-active {
    display: flex;
}

.fq-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.fq-close-btn {
    position: absolute;
    right: 15px;
    top: 5px;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.fq-close-btn:hover { color: #fcd846; }

/* --- STILURI TRACTOR & NEWSLETTER --- */
.newsletter-tractor-container {
    position: relative;
    background-color: #5a7d5a;
    padding: 60px 0;
    min-height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.grass-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #4a664a;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 4px 100%;
    z-index: 2;
}

.newsletter-content-group {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 10;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.newsletter-text {
    font-family: 'Lato', sans-serif !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    font-size: 24px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}

.newsletter-join-btn {
    font-family: 'Lato', sans-serif !important;
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    padding: 8px 30px !important;
    border-radius: 6px !important;
    cursor: pointer;
    font-weight: 800 !important;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
}

.newsletter-join-btn:hover {
    background-color: #fcd846 !important;
    color: #000000 !important;
    border-color: #fcd846 !important;
}

@media (max-width: 1024px) {
    .newsletter-tractor-container { flex-direction: column; padding: 40px 20px; }
    .newsletter-content-group { flex-direction: column; gap: 15px; }
    .newsletter-text { font-size: 20px !important; text-align: center; }
}
