/* Modern Footer Newsletter Styles */
.footer-newsletter {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.quick-links-section {
    padding-right: 30px;
}

.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.modern-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer-links li {
    margin-bottom: 15px;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 20px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-link:hover::before {
    width: 12px;
    opacity: 1;
}

.newsletter-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
}

.newsletter-desc {
    color: #a0a0a0;
    font-size: 15px;
    margin-bottom: 30px;
}

.modern-newsletter-form {
    max-width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
    color: #a0a0a0;
}

.newsletter-submit-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit-btn:hover {
    background: linear-gradient(45deg, #ff5252, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
}

@media (max-width: 768px) {
    .newsletter-submit-btn {
        padding: 15px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
        min-width: 100px;
    }
}

.newsletter-message {
    min-height: 20px;
    color: #ff5252;
    font-size: 14px;
    margin-top: 10px;
}

.newsletter-alerts .success-message {
    color: #00c853;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    background: rgba(0, 200, 83, 0.1);
    display: none;
}

.newsletter-alerts .error-message {
    color: #ff5252;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    background: rgba(255, 82, 82, 0.1);
    display: none;
} 