/* Footer Premium Stylesheet */
footer {
    background: #ffffff;
    color: #333333;
    padding: 50px 0 0;
    font-family: 'Inter', sans-serif;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.02);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00963F, #4CAF50, #00963F);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-info {
    text-align: center;
    width: 100%;
}

.footer-logo {
    margin-bottom: 22px;
}

.footer-logo a.logo-text {
    color: #0c3a67;
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.footer-logo p {
    color: #666666;
    line-height: 1.7;
    margin: 10px 0 0;
    font-size: 15px;
}

.footer-contact h3 {
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: #00963F;
    border-radius: 2px;
}

.footer-contact p {
    color: #555555;
    margin: 10px 0;
    line-height: 1.6;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.footer-contact i {
    color: #00963F;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.phone-link,
.email-link {
    color: #00963F !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: #4CAF50 !important;
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icon {
    color: #555555;
    background-color: rgba(0, 0, 0, 0.03);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.social-icon:hover {
    background-color: #00963F;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 150, 63, 0.2);
    border-color: #00963F;
}

.social-icon:hover {
    background-color: #10b981;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    border-color: #10b981;
}

/* Bottom bar */
.footer-bottom {
    background-color: #05070b;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    letter-spacing: 0.25px;
}

.footer-bottom a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #34d399;
    text-decoration: underline;
}

.footer-intranet {
    color: #64748b;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-intranet:hover {
    color: #10b981;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a:hover {
        transform: translateX(0);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
