/* Футер */
.footer {
    background: #0a0a0a;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 152, 70, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Логотип и описание */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
}

.footer-logo-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-logo-text {
    font-family: 'Franklin Gothic Heavy', 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.footer-logo-aiti {
    color: #009846 !important;
}

.footer-logo-tiket {
    color: #E31E24 !important;
}

.footer-tagline {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-services {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Баннер Rusprofile */
.footer-rusprofile {
    margin-top: 20px;
}

.rusprofile-link {
    display: inline-block;
    border: 0 none !important;
    transition: all 0.3s ease;
}

.rusprofile-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.rusprofile-link img {
    border: none;
    vertical-align: top;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Реквизиты и правовая информация */
.footer-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #009846, #007c3a);
    border-radius: 2px;
}

.footer-requisites {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.footer-requisites p {
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #009846;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #00cc5a;
    transform: translateX(5px);
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.5;
    margin: 10px 0;
}

.footer-captcha {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 15px;
}

.footer-captcha a {
    color: #009846;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-captcha a:hover {
    color: #00cc5a;
    text-decoration: underline;
}

/* Нижняя часть футера */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
    min-width: 300px;
}

.footer-trademark {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-top: 8px;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009846;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: rgba(0, 152, 70, 0.15);
    color: #00cc5a;
    transform: translateY(-3px);
    border-color: rgba(0, 152, 70, 0.3);
}

.footer-social-link i {
    font-size: 16px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .footer-grid {
        gap: 40px;
    }
    
    .footer-logo-text {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .footer-logo-text {
        font-size: 32px;
    }
    
    .footer-tagline,
    .footer-services {
        text-align: center;
    }
    
    .footer-rusprofile {
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-requisites {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-copyright {
        min-width: 100%;
        order: 2;
    }
    
    .footer-social {
        order: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo-text {
        font-size: 28px;
    }
    
    .footer-tagline {
        font-size: 1.1rem;
    }
    
    .footer-services {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .rusprofile-link img {
        width: 140px;
        height: auto;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-social-link i {
        font-size: 14px;
    }
}