/* Footer Main Section */
.footer__main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 10px;
    display: inline-block;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.footer-links a:hover {
    color: #27ae60;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ecf0f1;
}

.footer-contact i {
    color: #27ae60;
    margin-right: 8px;
    vertical-align: middle;
}

.footer-contact a {
    color: #27ae60;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #2ecc71;
    text-decoration: underline;
}

.footer-hours {
    font-style: italic;
    font-size: 14px;
}

.footer-address {
    font-style: normal;
    color: #ecf0f1;
    line-height: 1.8;
}

.footer-address i {
    color: #27ae60;
    margin-right: 8px;
    float: left;
    margin-top: 3px;
}

.company-info {
    color: #95a5a6;
    font-size: 12px;
    border-top: 1px solid #34495e;
    padding-top: 10px;
}

/* Footer Before Section */
.footer-before {
    background-color: #7cbc42;
    color: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #6aad39;
}

.footer-before .trust-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-before .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #27ae60;
    border: 1px solid #27ae60;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.footer-before .trust-badge:hover {
    background: #2ecc71;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39,174,96,0.2);
}

.footer-before .trust-badge i {
    font-size: 20px;
    color: #ffffff;
}

.footer-before .trust-badge:hover i {
    color: #ffffff;
}

.footer-before .trust-badge span {
    color: #ffffff;
    font-weight: 500;
}

.footer-before .trust-badge:hover span {
    color: #ffffff;
}

.footer-before .newsletter-signup h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-before .newsletter-signup p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

.social-links {
    text-align: center;
}

.social-links span {
    color: #ffffff;
    margin-right: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    background: #fff;
    color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* Copyright section */
.copyright {
    background: #1a252f;
    color: #95a5a6;
    padding: 20px 0;
    text-align: center;
    margin: 0;
    font-size: 14px;
}

.copyright a {
    color: #27ae60;
    text-decoration: none;
    margin: 0 10px;
}

.copyright a:hover {
    color: #2ecc71;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-column {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-title {
        margin: 0 auto 20px;
    }
    
    .footer-links {
        text-align: left;
        display: inline-block;
    }
    
    .footer-address {
        text-align: left;
        display: inline-block;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        margin-top: 20px;
    }
}
