/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #27ae60, #3498db, #9b59b6);
}

/* Footer Titles */
.footer-title {
    color: #ecf0f1;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title i {
    color: #3498db;
    font-size: 1.1rem;
}

/* Footer Menu Links */
.modern-footer .menu,
.modern-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer .menu li,
.modern-footer .footer-menu li {
    margin-bottom: 8px;
}

.modern-footer .menu li a,
.modern-footer .footer-menu li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.modern-footer .menu li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.modern-footer .menu li a i {
    font-size: 0.8rem;
    width: 12px;
}

/* Contact Information */
.footer-contact {
    margin-bottom: 25px;
}

.contact-text {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-text i {
    color: #3498db;
    width: 16px;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.social-link i {
    font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 20px;
}

.newsletter-title {
    color: #ecf0f1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-form {
    margin-bottom: 0;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #ecf0f1;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #bdc3c7;
}

.newsletter-btn {
    background: #3498db;
    border: none;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
}

.payment-methods,
.security-badges {
    text-align: center;
    margin-bottom: 20px;
}

.payment-title,
.security-title {
    color: #ecf0f1;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-icons,
.security-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ecf0f1;
    font-weight: 500;
    font-size: 0.9rem;
}

.payment-method-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.payment-method-item i {
    font-size: 1.1rem;
    color: #3498db;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.security-badge i {
    font-size: 0.9rem;
}

/* Copyright Section */
.copyright-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.copyright-text a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: #5dade2;
}

.legal-notice {
    color: #95a5a6;
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-input {
        border-radius: 15px 15px 0 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .newsletter-btn {
        border-radius: 0 0 15px 15px;
    }
    
    .payment-icons,
    .security-icons {
        gap: 15px;
    }
    
    .payment-method-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .security-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}

@media (max-width: 576px) {
    .modern-footer {
        padding: 30px 0 15px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .contact-text {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .newsletter-title {
        font-size: 0.9rem;
    }
    
    .copyright-text {
        font-size: 0.8rem;
    }
    
    .legal-notice {
        font-size: 0.75rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-footer .col-sm-6 {
    animation: fadeInUp 0.6s ease-out;
}

.modern-footer .col-sm-6:nth-child(1) { animation-delay: 0.1s; }
.modern-footer .col-sm-6:nth-child(2) { animation-delay: 0.2s; }
.modern-footer .col-sm-6:nth-child(3) { animation-delay: 0.3s; }
.modern-footer .col-sm-6:nth-child(4) { animation-delay: 0.4s; }

/* Hover Effects */
.modern-footer .menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #3498db;
    transition: width 0.3s ease;
}

.modern-footer .menu li a:hover::before {
    width: 20px;
}

/* Accessibility */
.modern-footer a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.modern-footer button:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .modern-footer {
        background: white !important;
        color: black !important;
    }
    
    .social-links,
    .newsletter-section {
        display: none;
    }
}
