/**
 * Footer - Modern Design
 * GRPCMedia Theme
 * Version: 2.0.0
 */

/* Footer Container */
.grpc-footer {
    background: #1a1a1a;
    color: #fff;
    position: relative;
}

/* Footer Main */
.grpc-footer-main {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Columns */
.grpc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Company Info Column */
.grpc-footer-company {
    max-width: 400px;
}

.grpc-footer-logo {
    margin-bottom: 25px;
}

.grpc-footer-logo img {
    max-width: 200px;
    height: auto;
}

.grpc-footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* Contact Info */
.grpc-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.grpc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.grpc-footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(47, 36, 131, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.grpc-footer-contact-icon i {
    font-size: 18px;
    color: #2F2483;
}

.grpc-footer-contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.grpc-footer-contact-text a:hover {
    color: #2F2483;
}

/* Social Links */
.grpc-footer-social {
    display: flex;
    gap: 10px;
}

.grpc-footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.grpc-footer-social-link:hover {
    background: #2F2483;
    transform: translateY(-3px);
}

/* Footer Menu Column */
.grpc-footer-menu {
}

.grpc-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.grpc-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2F2483 0%, #005a8b 100%);
    border-radius: 2px;
}

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

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

.grpc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.grpc-footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: #2F2483;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.grpc-footer-links a:hover {
    color: #2F2483;
    padding-left: 10px;
}

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

/* Footer Bottom */
.grpc-footer-bottom {
    padding: 30px 0;
}

.grpc-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grpc-footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.grpc-footer-copyright a {
    color: #2F2483;
    text-decoration: none;
    transition: color 0.3s ease;
}

.grpc-footer-copyright a:hover {
    color: #fff;
}

.grpc-footer-bottom-links {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.grpc-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.grpc-footer-bottom-links a:hover {
    color: #2F2483;
}

/* Responsive */
@media (max-width: 1024px) {
    .grpc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .grpc-footer-company {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .grpc-footer-main {
        padding: 60px 0 30px;
    }
    
    .grpc-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grpc-footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .grpc-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

