/* Footer Styles */
.main-footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Footer Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #808080;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo svg {
    display: block;
}

.footer-brand-name {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.footer-description {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #808080;
    margin: 0;
}

/* Services Section */
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section-title {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    font-size: 0.9rem;
    color: #808080;
    margin: 0;
}

.company-name {
    font-weight: 600;
    color: #FFFFFF !important;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    font-size: 0.9rem;
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFFFFF;
}

/* Secondary Footer Section */
.footer-secondary {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #808080;
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-title {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
}

.email-input {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    padding: 0.75rem;
    border: 1px solid #808080;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 4px;
    font-size: 0.9rem;
    flex: 1;
}

.email-input::placeholder {
    color: #808080;
}

.submit-btn {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    padding: 0.75rem 1.5rem;
    background-color: #808080;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Social Section */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #808080;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.copyright p {
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    font-size: 0.8rem;
    color: #808080;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
    
    .footer-secondary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-secondary {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1rem;
    }
    
    .brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: none;
    }
    
    .email-input {
        width: 100%;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-secondary {
        gap: 1.5rem;
    }
    
    .brand-header {
        text-align: center;
        align-items: center;
    }
    
    .footer-brand-name {
        font-size: 1.25rem;
    }
}