/* Footer Styles */
footer {
    background: var(--color-meteorite-dark-2);
    color: var(--color-light);
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo and Company Info */
footer .logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

footer .logo-section .logo {
    height: 40px;
    width: auto;
}

footer .logo-section span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 10px;
}

footer .company-description {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

footer .company-tagline {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Quick Links */
footer .quick-links h4 {
    margin-bottom: 20px;
    color: white;
}

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

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

footer .quick-links a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s;
}

footer .quick-links a:hover {
    color: var(--logo-color);
}

/* Contact Info */
footer .contact-info h4 {
    margin-bottom: 20px;
    color: white;
}

footer .contact-item {
    margin-bottom: 15px;
}

footer .contact-item i {
    margin-right: 10px;
    color: var(--logo-color);
}

footer .contact-item a {
    color: var(--color-gray);
    text-decoration: none;
}

footer .contact-item a:hover {
    color: var(--logo-color);
}

/* Contact Form */
footer .contact-form {
    margin-top: 20px;
}

footer .contact-form h5 {
    color: white;
    margin-bottom: 15px;
}

footer .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .contact-form input,
footer .contact-form textarea {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background: var(--color-gray-dark);
    color: var(--color-light);
    font-size: 0.9rem;
}

footer .contact-form input:focus,
footer .contact-form textarea:focus {
    outline: none;
    background: #34495e;
}

footer .contact-form textarea {
    padding: 12px;
    width: 100%;
    min-height: 40px;
    resize: vertical;
}

footer .contact-form button {
    padding: 10px;
    background: var(--logo-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

footer .contact-form button:hover {
    opacity: 0.9;
}

/* Bottom Bar */
footer .footer-bottom {
    border-top: 1px solid var(--color-gray-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer .footer-bottom p {
    color: var(--color-gray);
    margin: 0;
    font-size: 0.9rem;
}

footer .footer-links {
    display: flex;
    gap: 20px;
}

footer .footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.9rem;
}

footer .footer-links a:hover {
    color: var(--logo-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}