/* Newsletter Modal Styles - Content Only */

/* Newsletter Modal Content Styles */

.newsletter-modal-icon {
    width: 60px;
    height: 60px;
    background: #fcb900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.newsletter-modal-icon i {
    font-size: 28px;
    color: #ffffff;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.newsletter-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.2;
}

.newsletter-modal-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 0 15px;
    line-height: 1.5;
}

.newsletter-form {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}

.newsletter-form-group {
    margin-bottom: 15px;
    text-align: left;
}

.newsletter-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.newsletter-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.newsletter-form-input:focus {
    outline: none;
    border-color: #fcb900;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.newsletter-form-input::placeholder {
    color: #999;
}

.newsletter-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.newsletter-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.newsletter-form-checkbox label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}

.newsletter-form-checkbox a {
    color: #fcb900;
    text-decoration: none;
}

.newsletter-form-checkbox a:hover {
    text-decoration: underline;
}

.newsletter-error {
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 15px;
    display: none;
}

.newsletter-error.show {
    display: block;
}

.newsletter-submit-btn {
    background: #fcb900;
    color: black;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(252, 185, 0, 0.3);
}

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

.newsletter-submit-btn:disabled {
    background: #fcb900;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.newsletter-benefits {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.newsletter-benefits-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
    text-align: center;
}

.newsletter-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsletter-benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

.newsletter-benefits-list li:last-child {
    margin-bottom: 0;
}

.newsletter-benefits-list i {
    color: #fcb900;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.newsletter-success {
    display: none;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.newsletter-success.show {
    display: block;
}

.newsletter-success-icon {
    width: 80px;
    height: 80px;
    background: #fcb900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: bounce 0.6s ease;
}

.newsletter-success-icon i {
    font-size: 36px;
    color: #ffffff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.newsletter-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px;
}

.newsletter-success-message {
    font-size: 16px;
    color: #666;
    margin: 0 0 25px;
    line-height: 1.5;
}

.newsletter-success-btn {
    background: #4ecdc4;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-success-btn:hover {
    background: #44a08d;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-modal-title {
        font-size: 24px;
    }
    
    .newsletter-modal-subtitle {
        font-size: 14px;
    }
    
    .newsletter-modal-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .newsletter-modal-icon i {
        font-size: 28px;
    }
    
    .newsletter-form-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .newsletter-submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .newsletter-benefits {
        padding: 20px;
    }
    
    .newsletter-benefits-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .newsletter-modal-title {
        font-size: 22px;
    }
}

/* Animation for modal entrance - removed */

/* Loading state */
.newsletter-submit-btn.loading {
    position: relative;
    color: transparent;
}

.newsletter-submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
