/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0 2rem;
}

/* Brand Logo */
.footer-logo .brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    overflow: hidden;
}

.footer-logo .brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.footer-logo .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.footer-logo .brand-tagline {
    font-size: 0.9rem;
    display: block;
    margin-top: 2px;
}

/* Footer Description */
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 1px;
}

/* Contact Info */
.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.contact-info .contact-item i {
    color: #3498db;
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .contact-item a:hover {
    color: #3498db;
}

/* Business Hours */
.business-hours .hours-item {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #3498db !important;
    transform: translateX(3px);
}

/* Copyright */
.copyright {
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-logo .brand-container {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-logo .brand-container {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info,
    .business-hours {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .copyright {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .footer-logo .brand-name {
        font-size: 1.3rem;
    }
    
    .footer-logo .brand-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
} 