/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    margin-top: 50px;
}

.newsletter-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 40px 0;
    margin-bottom: 0;
}

.newsletter-section h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
}

.newsletter-form .btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    background: #e74c3c;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.footer-widget {
    padding: 40px 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-widget h4 {
    color: #ecf0f1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3498db;
}

.footer-widget p {
    color: rgba(236, 240, 241, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(236, 240, 241, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #3498db;
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a:nth-child(1):hover {
    background: #1877f2;
    color: white;
    transform: translateY(-3px);
    border-color: #1877f2;
    box-shadow: 0 4px 8px rgba(24, 119, 242, 0.3);
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-3px);
    border-color: #e6683c;
    box-shadow: 0 4px 8px rgba(230, 104, 60, 0.3);
}

.social-links a:nth-child(3):hover {
    background: #ff0000;
    color: white;
    transform: translateY(-3px);
    border-color: #ff0000;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item i {
    color: #f1c40f;
    font-size: 18px;
    margin-top: 5px;
    min-width: 20px;
    background: rgba(241, 196, 15, 0.1);
    padding: 8px;
    border-radius: 50%;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #ecf0f1;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-item span {
    color: rgba(236, 240, 241, 0.7);
    font-size: 12px;
}

.payment-methods,
.security-badges {
    padding: 20px 0;
}

.payment-methods h5,
.security-badges h5 {
    color: #ecf0f1;
    font-size: 16px;
    margin-bottom: 15px;
}

.payment-icons,
.security-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 24px;
    color: #f39c12;
    padding: 10px;
    background: rgba(243, 156, 18, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    background: #f39c12;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
}

.security-icons i {
    font-size: 24px;
    color: #27ae60;
    padding: 10px;
    background: rgba(39, 174, 96, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.security-icons i:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(236, 240, 241, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(236, 240, 241, 0.7);
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #3498db;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        width: 100%;
    }
    
    .footer-widget {
        padding: 30px 0;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .payment-icons,
    .security-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .newsletter-section h3 {
        font-size: 20px;
    }
    
    .newsletter-section p {
        font-size: 14px;
    }
    
    .footer-widget h4 {
        font-size: 16px;
    }
    
    .contact-item strong {
        font-size: 13px;
    }
    
    .contact-item span {
        font-size: 11px;
    }
}
