/* Footer - Clean Reset and New Design */
.footer {
    background: black;
    color: white;
    padding: 60px 0 0;
}

/* Top Section - 4 Column Grid */
.footer-main {
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 60px;
    padding: 0 20px 50px;
    align-items: flex-start;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Column Titles */
.footer-column-title {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    color: white;
}

/* Navigation Column */
.footer-navigation {
    display: flex;
    flex-direction: column;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: white;
}

/* Services Column */
.footer-services {
    display: flex;
    flex-direction: column;
}

.footer-services-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-service-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-service-link:hover {
    color: white;
}

/* Contact Column */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-email,
.footer-phone {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-email:hover,
.footer-phone:hover {
    color: white;
}

/* Bottom Section with Border */
.footer-bottom {
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px 30px;
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
}

/* Social Media Icons - Centered */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: white;
}

/* Legal Links - Centered */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-link,
.footer-legal-text {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 40px;
        text-align: left;
    }
    
    .footer-logo-section {
        align-items: flex-start;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .footer-bottom {
        padding: 25px 20px 25px;
        text-align: left;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
        justify-content: flex-start;
    }
    
    .footer-social {
        margin-bottom: 25px;
        gap: 15px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-main {
        gap: 45px;
        padding: 0 15px 30px;
    }
    
    .footer-bottom {
        padding: 20px 15px 20px;
    }
    
    .footer-legal {
        gap: 12px;
    }
    
    .footer-social {
        gap: 12px;
    }
}

/* Remove any inherited styles that might conflict */
.footer * {
    box-sizing: border-box;
}

.footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer li {
    margin: 0 !important;
    padding: 0 !important;
}

.footer a {
    text-decoration: none !important;
}

.footer h3 {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-width: 600px;
    margin: 0 auto;
}

.cookie-consent-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.cookie-icon {
    font-size: 20px;
}

.cookie-message {
    font-size: 14px;
    font-weight: 300;
    color: #333;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.settings {
    background: #f5f5f5;
    color: #333;
}

.cookie-btn.accept {
    background: #333;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-actions {
        justify-content: space-between;
    }
}