/* Footer styles */
.site-footer {
    background-color: #ffffff;
    color: #333333;
    position: relative;
    margin-top: 60px;
    padding-top: 60px;
    font-size: 15px;
    overflow: hidden;
    /* Enhanced top shadow for elevated effect */
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.1);
    /* Subtle gradient for depth */
    background-image: linear-gradient(to bottom, #ffffff, #fcfcfc);
}

/* Completely remove the before element that creates the gradient line */
.site-footer::before {
    display: none;
    content: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 180px;
    margin-bottom: 30px;
}

.company-info {
    flex: 1.5;
    min-width: 280px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #22303d;
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links a {
    color: #555555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
.footer-links a:hover {
    padding-left: 5px;
}

.newsletter {
    flex: 1.2;
    min-width: 220px;
}

/* Contact Info */
.contact-info {
    margin-bottom: 25px;
}

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

.contact-item a {
    color: #555555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
}
}

.contact-item i {
    margin-right: 15px;

    font-size: 16px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start; /* Left align by default */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
}
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Newsletter form */
.newsletter-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.newsletter-form input:focus {
    outline: none;

.newsletter-form input:focus {
}

.newsletter-form button {
    width: 100%;
    padding: 12px 15px;
.newsletter-form button {
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.newsletter-form button:hover {
}
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.newsletter-form button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover i {
    transform: translateX(3px);
}

/* Footer bottom */
.footer-bottom {
    background-color: #f8f8f8;
    padding: 20px 0;
    margin-top: 20px;
    width: 100%;
    border-top: 1px solid #eeeeee;
}

.copyright {
    opacity: 0.7;
    font-size: 14px;
    color: #666666;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods i {
    font-size: 24px;
    opacity: 0.7;
    color: #666666;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;

}

/* Footer logo styling */
.footer-logo {
    display: block;
    margin-bottom: 15px;
}

.footer-logo-link {
    display: inline-block;
}

.underline-animation {
    width: 40px;
    height: 3px;
.underline-animation {
    margin-bottom: 20px;
    transition: width 0.3s ease;
}

.footer-column:hover .underline-animation {
    width: 60px;
}

/* Dark mode overrides for the footer */
.dark-mode .site-footer {
    background-color: var(--dark-bg);
    color: var(--dark-text);
    background-image: linear-gradient(to bottom, var(--dark-bg), #1a1d24);
}

.dark-mode .footer-heading {
    color: var(--dark-text);
}

.dark-mode .footer-links a {
    color: rgba(240, 242, 245, 0.7);
}

.dark-mode .footer-links a:hover {
    color: var(--dark-text);
}

.dark-mode .contact-item a {
    color: rgba(240, 242, 245, 0.7);
}

.dark-mode .social-icon {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--dark-text);
}

.dark-mode .footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
}

.dark-mode .copyright {
    color: rgba(240, 242, 245, 0.7);
}

.dark-mode .payment-methods i {
    color: rgba(240, 242, 245, 0.7);
}

.dark-mode .newsletter-form input {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--dark-text);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .newsletter p {
    color: rgba(240, 242, 245, 0.7);
}

/* Responsive styling */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 40px;
    }
    
    .footer-container {
        justify-content: center;
        gap: 30px;
    }
    
    .footer-column {
        flex: 1 1 40%;
        min-width: 150px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .company-info, .newsletter {
        flex: 1 1 100%;
    }
    
    .contact-info .contact-item {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
        transform: scale(1.05);
    }
    
    .newsletter p {
        text-align: center;
    }
    
    .newsletter-form .form-group {
        align-items: center;
    }
    
    .underline-animation {
        margin: 0 auto 20px auto;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .payment-methods {
        justify-content: center;
        margin-top: 10px;
    }
} 