/* Newsletter Popup Modal */
#newsletterPopup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.newsletter-popup-content {
    background-color: #fff;
    padding: 0;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #d4af37;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
}

.popup-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 50px;
    color: #d4af37;
    margin-bottom: 15px;
}

.popup-header h2 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.popup-header p {
    color: #d4af37;
    margin: 0;
    font-size: 16px;
}

.popup-body {
    padding: 40px 30px;
    text-align: center;
}

.popup-body p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup-form {
    max-width: 400px;
    margin: 0 auto;
}

.popup-input-group {
    position: relative;
    margin-bottom: 20px;
}

.popup-input-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.popup-input-group input:focus {
    outline: none;
    border-color: #d4af37;
}

.popup-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-submit-btn:hover {
    background-color: #000;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.popup-no-thanks {
    display: inline-block;
    margin-top: 15px;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popup-no-thanks:hover {
    color: #d4af37;
}

/* Responsive */
@media (max-width: 576px) {
    .newsletter-popup-content {
        width: 95%;
        margin: 20px;
    }

    .popup-header {
        padding: 25px 20px;
    }

    .popup-header h2 {
        font-size: 24px;
    }

    .popup-body {
        padding: 30px 20px;
    }

    .popup-icon {
        font-size: 40px;
    }
}
