/* Footer Styles */
.site-footer {
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(55, 93, 88, 0.2);
    margin-top: 60px;
    align-items: center;
}

.footer-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    align-items: center;
    padding: 60px 0 30px 0;
}

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

.footer-col h3 {
    font-size: 1.8em;
    color: rgb(55, 93, 88);
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1.1em;
    color: rgb(55, 93, 88);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.95em;
    color: #162938;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.85;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-badge {
    background: rgba(55, 93, 88, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    color: rgb(55, 93, 88);
    font-weight: 500;
}

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

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

.footer-links a {
    color: #162938;
    text-decoration: none;
    font-size: 0.9em;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: rgb(55, 93, 88);
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(55, 93, 88, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2em;
    color: rgb(55, 93, 88);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgb(55, 93, 88);
    color: white;
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    color: #162938;
    opacity: 0.8;
}

.contact-info a {
    color: #162938;
    text-decoration: none;
}

.contact-info a:hover {
    color: rgb(55, 93, 88);
}

.footer-bottom {
    border-top: 1px solid rgba(55, 93, 88, 0.15);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85em;
    color: #162938;
    opacity: 0.7;
    margin: 0;
}

.footer-bottom p:last-child {
    margin-top: 8px;
    font-size: 0.75em;
}