/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #001d3d 0%, #003566 50%, #0077b6 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 119, 182, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Main */
.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-widget {
    position: relative;
}

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-title i {
    color: #ffd700;
    font-size: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    border-radius: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Footer Rating */
.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-menu li a:hover {
    color: #ffd700;
    padding-left: 0.5rem;
}

.footer-menu li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-menu li a:hover::before {
    opacity: 1;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form .input-group {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    flex: 1;
}

.newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn-newsletter {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border: none;
    padding: 0.75rem 1.5rem;
    color: #003566;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-newsletter:hover {
    transform: scale(1.05);
}

/* Social Section */
.social-section {
    margin-bottom: 1.5rem;
}

.social-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link.facebook {
    background: rgba(59, 89, 152, 0.2);
    color: #3b5998;
    border: 1px solid rgba(59, 89, 152, 0.3);
}

.social-link.facebook::before {
    background: #3b5998;
}

.social-link.facebook:hover {
    color: white;
    transform: translateY(-3px);
}

.social-link.twitter {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
    border: 1px solid rgba(29, 161, 242, 0.3);
}

.social-link.twitter::before {
    background: #1da1f2;
}

.social-link.twitter:hover {
    color: white;
    transform: translateY(-3px);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.2);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-link.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    color: white;
    transform: translateY(-3px);
}

.social-link.linkedin {
    background: rgba(0, 119, 181, 0.2);
    color: #0077b5;
    border: 1px solid rgba(0, 119, 181, 0.3);
}

.social-link.linkedin::before {
    background: #0077b5;
}

.social-link.linkedin:hover {
    color: white;
    transform: translateY(-3px);
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.social-link.youtube::before {
    background: #ff0000;
}

.social-link.youtube:hover {
    color: white;
    transform: translateY(-3px);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    color: #ffd700;
    width: 16px;
    text-align: center;
}

/* Payment Section */
.payment-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.payment-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0;
}

.payment-methods {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-item {
    width: 40px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: transform 0.3s ease;
}

.payment-item:hover {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border: none;
    border-radius: 50%;
    color: #003566;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .payment-methods {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-title {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
        
    }
    .copyright-text {
        text-align: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    .footer-menu {
        text-align: center;
    }

    .footer-menu li {
        display: inline-block;
        margin: 0 0.75rem 0.75rem;
    }

    .footer-menu li a {
        justify-content: center;
    }
}


