/* Elthuraya Newsletter Form Styles */
.elth-newsletter-wrap {
    max-width: 100%;
    margin: 0;
}

.elth-newsletter-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.elth-newsletter-form {
    position: relative;
}

.elth-newsletter-field input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s ease;
}

.elth-newsletter-field input[type="email"]:focus {
    border-color: #d4a017;
}

.elth-newsletter-field input[type="email"]::placeholder {
    color: #888;
}

/* Consent checkbox */
.elth-newsletter-consent {
    margin: 8px 0 14px 0;
}

.elth-newsletter-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.elth-newsletter-consent-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 2px 0 0 0;
    accent-color: #d4a017;
    cursor: pointer;
}

.elth-newsletter-consent-label span {
    flex: 1;
}

.elth-newsletter-submit {
    text-align: right;
}

.elth-newsletter-btn {
    background: #d4a017;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.elth-newsletter-btn:hover:not(:disabled) {
    background: #b8890e;
}

.elth-newsletter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #d4a017;
}

.elth-newsletter-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

.elth-newsletter-btn.loading::after {
    content: '...';
}

.elth-newsletter-message {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    display: none;
}

.elth-newsletter-message.success {
    display: block;
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.elth-newsletter-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* reCAPTCHA badge */
.grecaptcha-badge {
    visibility: visible;
}
