/* Footer Styles with Brand Colors */
.footer {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 30px 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--brand-strength) 0%, var(--brand-security) 50%, var(--brand-security-light) 100%);
    opacity: 0.95;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    padding: 0 15px;
    text-align: center;
}

/* First column (phone) */
.footer-column:first-child {
    text-align: left;
}

/* Middle column (email) */
.footer-column:nth-child(2) {
    border-left: 1px solid rgba(0, 102, 153, 0.3);
    border-right: 1px solid rgba(0, 102, 153, 0.3);
}

/* Last column (address) */
.footer-column:last-child {
    text-align: left;
}

.footer-icon {
    margin-right: 8px;
    opacity: 0.8;
}

.footer a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.footer a:hover {
    color: var(--brand-quality);
    text-decoration: none;
}

.footer a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 102, 153, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    position: relative;
    z-index: 2;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-column {
        width: 100%;
        text-align: center !important;
        padding: 15px 0;
    }
    
    .footer-column:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}
