/* ═══ WhatsApp Subscribe Box ═══ */
.wa-sub-section { padding: 48px 0 56px; direction: rtl; }
.wa-sub-card {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 55%, #25D366 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 320px;
    position: relative;
}
.wa-sub-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}
.wa-sub-info {
    flex: 0 0 38%;
    padding: 40px 36px 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    color: #fff;
    position: relative;
    border-left: 1px solid rgba(255,255,255,.15);
}
.wa-sub-logo { display: flex; align-items: center; gap: 12px; }
.wa-sub-logo svg { flex-shrink: 0; }
.wa-sub-logo-text { font-family: DIN-Bold, sans-serif; font-size: 20px; line-height: 1.25; color: #fff; }
.wa-sub-logo-sub { font-family: DIN-Regular, sans-serif; font-size: 13px; color: rgba(255,255,255,.75); margin-top: 2px; }
.wa-sub-desc { font-family: DIN-Regular, sans-serif; font-size: 15px; color: rgba(255,255,255,.9); line-height: 1.7; max-width: 280px; }
.wa-sub-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.wa-sub-perks li { font-family: DIN-Regular, sans-serif; font-size: 14px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 8px; }
.wa-sub-perks li::before { content: ''; width: 8px; height: 8px; background: #25D366; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); flex-shrink: 0; }
.wa-sub-form-wrap { flex: 1; padding: 40px 40px 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 0; position: relative; }
.wa-sub-form-title { font-family: DIN-Bold, sans-serif; font-size: 18px; color: #fff; margin: 0 0 20px; }
.wa-sub-fields { display: flex; flex-direction: column; gap: 14px; }
.wa-sub-field label { display: block; font-family: DIN-Regular, sans-serif; font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 5px; }
.wa-sub-field input[type="text"] {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-family: DIN-Regular, sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.wa-sub-field input[type="text"]::placeholder { color: rgba(255,255,255,.45); }
.wa-sub-field input[type="text"]:focus { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.18); }
.wa-sub-field input[type="text"].wa-err { border-color: #ff6b6b; }
.wa-phone-row { display: flex; gap: 8px; }
.wa-phone-row input[type="text"] { flex: 1; }
.wa-code-wrap { position: relative; flex-shrink: 0; }
.wa-code-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 11px 12px;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-family: DIN-Bold, sans-serif;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .2s, background .2s;
    min-width: 90px;
    justify-content: space-between;
    -webkit-appearance: none;
}
.wa-code-btn:hover, .wa-code-btn.open { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.18); }
.wa-code-flag { width: 22px; height: 16px; border-radius: 3px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; }
.wa-code-flag svg { width: 22px !important; height: 16px !important; display: block; }
.wa-code-chevron { width: 10px; height: 10px; transition: transform .2s; opacity: .7; flex-shrink: 0; }
.wa-code-btn.open .wa-code-chevron { transform: rotate(180deg); }
.wa-code-dropdown {
    position: absolute; top: calc(100% + 6px); right: 0; z-index: 500;
    background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.2);
    width: 230px; overflow: hidden; display: none; flex-direction: column;
}
.wa-code-dropdown.open { display: flex; }
.wa-code-search { padding: 8px 12px; border: none; border-bottom: 1px solid #eee; font-family: DIN-Regular, sans-serif; font-size: 13px; color: #333; outline: none; background: #f9f9f9; direction: rtl; }
.wa-code-list { max-height: 220px; overflow-y: auto; list-style: none; margin: 0; padding: 4px 0; }
.wa-code-list::-webkit-scrollbar { width: 4px; }
.wa-code-list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
.wa-code-item { display: flex; align-items: center; gap: 10px; padding: 8px 14px; cursor: pointer; transition: background .15s; direction: rtl; }
.wa-code-item:hover, .wa-code-item.active { background: #f0fdf4; }
.wa-code-item .flag-icon { width: 22px; height: 16px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }
.wa-code-item .flag-icon svg { width: 22px !important; height: 16px !important; display: block; }
.wa-code-item-name { font-family: DIN-Regular, sans-serif; font-size: 13px; color: #333; flex: 1; }
.wa-code-item-num { font-family: DIN-Bold, sans-serif; font-size: 12px; color: #128C7E; direction: ltr; }
.wa-sub-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 28px; background: #fff; color: #075E54; border: none; border-radius: 10px;
    font-family: DIN-Bold, sans-serif; font-size: 16px; cursor: pointer;
    transition: background .2s, transform .1s, box-shadow .2s;
    margin-top: 20px; box-shadow: 0 4px 14px rgba(0,0,0,.15); width: 100%;
}
.wa-sub-btn:hover:not(:disabled) { background: #f0fdf4; box-shadow: 0 6px 20px rgba(0,0,0,.2); transform: translateY(-1px); }
.wa-sub-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.wa-sub-btn-icon { font-size: 18px; }
.wa-spinner { width: 18px; height: 18px; border: 2.5px solid rgba(7,94,84,.25); border-top-color: #075E54; border-radius: 50%; animation: wa-spin .7s linear infinite; display: none; }
@keyframes wa-spin { to { transform: rotate(360deg); } }
.wa-subscribed-box { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 20px 0 4px; text-align: center; }
.wa-subscribed-check { width: 64px; height: 64px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; }
.wa-subscribed-title { font-family: DIN-Bold, sans-serif; font-size: 18px; color: #fff; margin: 0; }
.wa-subscribed-sub { font-family: DIN-Regular, sans-serif; font-size: 14px; color: rgba(255,255,255,.8); margin: -8px 0 0; }
.wa-unsub-btn { padding: 9px 28px; background: transparent; border: 1.5px solid rgba(255,255,255,.5); border-radius: 8px; color: rgba(255,255,255,.85); font-family: DIN-Regular, sans-serif; font-size: 14px; cursor: pointer; transition: all .2s; }
.wa-unsub-btn:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
@media (max-width: 768px) {
    .wa-sub-card { flex-direction: column; min-height: unset; }
    .wa-sub-info { flex: none; padding: 32px 24px 24px; border-left: none; border-bottom: 1px solid rgba(255,255,255,.15); }
    .wa-sub-perks { display: none; }
    .wa-sub-form-wrap { padding: 28px 24px 36px; }
}
