/* Updated Footer Styling According to House Style */

.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    margin-top: auto;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Company Info Section */
.footer-section.company-info {
    grid-column: span 1;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
}

.company-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.company-badge {
    margin-bottom: 1.5rem;
}

.experience-badge {
    background: linear-gradient(135deg, #264F7F 0%, #1e3f66 100%);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    display: inline-block;
}

.badge-years {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Sections */
.footer-section h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #264F7F;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a:hover {
    color: #fbbf24;
    transform: translateX(4px);
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #264F7F;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -20px;
}

/* Contact Section */
.footer-contact-section {
    grid-column: span 1;
}

.footer-contact-details {
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 8px 0;
}

.footer-contact-item i {
    color: #264F7F;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-info {
    flex: 1;
}

.footer-contact-info span,
.footer-contact-info a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.footer-contact-info a:hover {
    color: #fbbf24;
}

/* Opening Hours */
.opening-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #404040;
}

.opening-hours h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-list span {
    color: #cccccc;
    font-size: 14px;
}

/* Additional Info */
.footer-additional-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #404040;
}

.footer-additional-info h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.additional-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
}

.info-item i {
    color: #264F7F;
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: #111111;
    padding: 20px 0;
    border-top: 1px solid #404040;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-copyright p {
    color: #999999;
    font-size: 14px;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #fbbf24;
}

.footer-link-separator {
    color: #666666;
}

.footer-powered-by p {
    color: #999999;
    font-size: 12px;
    margin: 0;
}

.footer-powered-by a {
    color: #264F7F;
    text-decoration: none;
}

.footer-powered-by a:hover {
    color: #fbbf24;
}

.footer-certifications {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

.cert-item i {
    color: #264F7F;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section.company-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section.company-info {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-certifications {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .additional-info-list {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .experience-badge {
        padding: 10px 16px;
    }
    
    .badge-years {
        font-size: 20px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-link-separator {
        display: none;
    }
}
