.footer {
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.95rem;
    position: relative;
    margin-top: 4rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to right bottom, transparent 49%, var(--primary-color) 50%);
}

.footer-top {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
}

.footer h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

.company-desc {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-links a::before {
    content: '›';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    display: inline-block;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    color: #ffffff;
}

.footer-bottom {
    background: var(--dark-blue);
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 991.98px) {
    .footer-top {
        padding: 4rem 0 2rem;
    }
    
    .footer h3 {
        font-size: 1.3rem;
    }
    
    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
    
    .footer-bottom .mb-md-0 {
        margin-bottom: 1rem !important;
        text-align: center;
    }
} 