/* Footer styles */
.footer {
    background: #1E3A8A;
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    color: #74B9FF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #74B9FF;
    font-size: 1.8rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-schedule {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
}

.schedule-icon {
    width: 40px;
    height: 40px;
    background: rgba(116, 185, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.schedule-icon i {
    color: #74B9FF;
    font-size: 1.1rem;
}

.schedule-text h6 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.schedule-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-divider {
    width: 40px;
    height: 3px;
    background: #74B9FF;
    margin-bottom: 20px;
    border-radius: 2px;
}

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

.footer-section ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section ul li:hover {
    color: #74B9FF;
    padding-left: 10px;
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #74B9FF;
    transition: width 0.3s ease;
}

.footer-section ul li:hover::before {
    width: 5px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info li::before {
    display: none;
}

.contact-info li:hover {
    padding-left: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(116, 185, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #74B9FF;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(116, 185, 255, 0.3);
}

.footer-social a:hover {
    background: #74B9FF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(116, 185, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.5px;
}
