/* Newsletter Sidebar Widget - Modern Style */
.nl-sb {
    background: linear-gradient(145deg, #fff5e6, #fff);
    border: 1.5px solid rgba(251, 139, 1, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    font-family: 'Noto Kufi Arabic', sans-serif;
}

.nl-ttl {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nl-desc {
    font-size: 12.5px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nl-inp {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    font-family: inherit;
    font-size: 13px;
    color: #111;
    direction: rtl;
    outline: none;
    transition: all 0.3s ease;
}

.nl-inp:focus {
    border-color: #fb8b01;
    box-shadow: 0 0 0 3px rgba(251, 139, 1, 0.1);
}

.nl-btn {
    width: 100%;
    background: #fb8b01;
    color: #fff;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nl-btn:hover {
    background: #d97000;
    box-shadow: 0 4px 14px rgba(251, 139, 1, 0.3);
    transform: translateY(-1px);
}

.nl-btn:active {
    transform: translateY(0);
}
