/* Simple Footer Design */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 3rem 0 1.5rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.contact-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    text-align: left;
}

.contact-info {
    padding: 0;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 1rem;
    color: white;
    margin-top: 0;
}

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

.contact-list li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-list li strong {
    color: white;
    font-weight: 600;
    display: inline-block;
    min-width: 60px;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #60a5fa;
}

.business-hours {
    padding: 0;
}

.business-hours h2 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 1rem;
    color: white;
    margin-top: 0;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-logo-section {
        order: -1;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-info h2,
    .business-hours h2 {
        font-size: 1.25rem;
    }
    
    .contact-list li,
    .day,
    .time {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .footer-content {
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .contact-section {
        gap: 2rem;
    }
}