/* Footer Premium Shared */
.footer-tech {
    background: #ffffff;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    position: relative;
    z-index: 10;
    text-align: left;
    /* Reset alignment from common centered footers */
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding: 0 40px;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0ea5e9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #0ea5e9;
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #475569;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    font-size: 1.1rem;
}

.footer-contact-item p {
    margin: 0;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(14, 165, 233, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Social Links Premium Styles */
.footer-social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8fafc;
    color: #64748b;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-5px) rotate(8deg);
    color: #fff;
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.25);
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-item {
        justify-content: center;
    }
}