/*FOOTER*/
.footer {
    background: #323234;
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #bee5eb, #d1ecf1, #bee5eb);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #bee5eb;
}

.footer-logo {
    width: 280px;
    height: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: #b0b0b0;
    font-style: italic;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-size: 15px;
}

.contact-item i {
    color: #bee5eb;
    font-size: 18px;
    min-width: 20px;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #bee5eb;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #bee5eb;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(190, 229, 235, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.developer-credit {
    font-size: 13px;
    color: #888;
}

.developer-credit a {
    color: #bee5eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #ffffff;
}

.dev-icon {
    margin-left: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        width: 220px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-column.logo-column {
        text-align: center;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}