.site-footer {
    background-color: #151b2d;
    width: 100%;
    position: relative;
    font-family: 'Font', sans-serif;
    padding-top: 70px;
    margin-top: 0;
    box-shadow: inset 0 10px 8px -5px rgba(255, 107, 187, 0.3);
    background-image: 
        radial-gradient(circle 5000px at 30% 640px, rgba(255, 107, 187, 0.1) 0%, transparent 20%),
        radial-gradient(circle 5000px at 70% 424px, rgba(46, 60, 255, 0.1) 0%, transparent 25%);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px 20px;
}

.footer-top-logo {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    max-height: 70px;
    z-index: 1;
    filter: 
        drop-shadow(2px 2px 1px rgba(255, 107, 187, 0.3))
        drop-shadow(-2px 2px 1px rgba(255, 107, 187, 0.3))
        drop-shadow(0px 2px 1px rgba(255, 107, 187, 0.3));
}

.footer-top-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: none;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 30px;
}

.footer-section {
    flex: 1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    max-width: 270px;
}

.footer-section.about-section {
    flex: 1.5;
    max-width: 300px;
}

.footer-section.bottom-logo-section {
    flex: 0 0 250px;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer-title {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 10px;
    white-space: nowrap;
}

.footer-divider {
    height: 1px;
    background-color: #3a4567;
    width: 100%;
    margin: 8px 0 12px;
}

.footer-description {
    color: #a0a8c0;
    font-size: 0.82rem;
    line-height: 1.5;
    flex-grow: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.footer-links li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 15px;
    text-align: right;
}

.footer-links li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: rgba(255, 107, 186, 1);
    font-size: 1rem;
    font-weight: 900;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.82rem;
    display: block;
}

.footer-links a:hover {
    color: rgba(255, 107, 186, 0.7);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
    border-bottom: none;
    padding: 0;
}

.contact-icon, .info-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-info, .working-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-detail {
    color: #fff;
    margin-right: auto;
}

a.contact-detail {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

a.contact-detail:hover {
    color: rgba(255, 107, 186, 0.7);
}

.contact-email,
.contact-phone,
.contact-rubika,
.contact-telegram {
  color: white;
}

.footer-bottom-logo {
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    border-radius: 200px;
}

.footer-bottom-logo img {
    height: auto;
    max-height: 220px;
    width: auto;
    max-width: 250px;
    transition: transform 0.3s ease;
    border-radius: 200px;
}

.footer-bottom-logo img:hover {
    transform: scale(1.05);
}

.footer-divider.full-width {
    margin: 10px -20px 0;
    width: calc(100% + 40px);
}

.footer-copyright {
    text-align: center;
    color: #a0a8c0;
    font-size: 0.75rem;
    padding: 20px 0 0;
}

@media (max-width: 1224px) {
    .footer-content {
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 20px;
    }
    
    .footer-section {
        min-width: calc(33.333% - 15px);
        max-width: calc(33.333% - 15px);
        min-height: auto;
    }
    
    .footer-section.about-section {
        min-width: 100%;
        max-width: 100%;
        order: 1;
    }
    
    .footer-section:not(.about-section):not(.bottom-logo-section) {
        order: 2;
    }
    
    .footer-section.bottom-logo-section {
        min-width: 100%;
        max-width: 100%;
        order: 3;
        align-items: center;
    }
    
    .footer-bottom-logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-section {
        min-width: 100%;
    }
    
    .footer-bottom-logo {
        justify-content: center;
    }
    
    .footer-bottom-logo img {
        max-height: 150px;
    }
}