/* Modern Responsive Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #28a745, #20c997);
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-logo h3 i {
    color: #28a745;
    font-size: 2rem;
}

.footer-tagline {
    color: #bdc3c7;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-footer:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #28a745;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    color: #28a745;
    transform: translateX(3px);
}

.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
    min-width: 20px;
}

.contact-details strong {
    color: #fff;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.contact-details p {
    color: #bdc3c7;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-details a {
    color: #28a745;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #20c997;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    margin-top: 30px;
}

.copyright {
    color: #95a5a6;
    margin: 0;
    font-size: 0.9rem;
}

.copyright i {
    margin-right: 5px;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #28a745;
    text-decoration: none;
}

.separator {
    color: #34495e;
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .modern-footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .modern-footer {
        padding: 30px 0 15px;
    }
    
    .footer-section {
        margin-bottom: 25px;
    }
    
    .footer-logo h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .btn-footer {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
    }
    
    .footer-title {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .modern-footer {
        padding: 25px 0 15px;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo h3 i {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .btn-footer {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Animation Effects */
.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-links a {
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.1), transparent);
    transition: left 0.5s;
}

.footer-links a:hover::before {
    left: 100%;
}

/* Hover Effects */
.footer-section:hover .footer-title::after {
    width: 60px;
    transition: width 0.3s ease;
}

/* Accessibility */
.footer-links a:focus,
.btn-footer:focus {
    outline: 2px solid #28a745;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .modern-footer {
        background: #f8f9fa !important;
        color: #000 !important;
    }
    
    .btn-footer {
        background: #6c757d !important;
        color: #fff !important;
    }
}
