.site-footer {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #f4a023 50%, transparent 100%);
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.footer-section:first-child {
    flex: 0 0 40%;
}

.footer-section:nth-child(2) {
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
}

.footer-section h3 {
    color: #f4a023;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f4a023;
    border-radius: 1px;
}

.footer-content-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    max-width: 350px;
}

.social-links p {
    color: #f4a023;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(244, 160, 35, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f4a023, #e88b00);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.footer-social-btn:hover::before {
    opacity: 1;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 160, 35, 0.3);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: brightness(0.9);
}

.footer-social-btn:hover .footer-social-icon {
    filter: brightness(1.2);
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p,
.footer-links p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links a {
    color: #f4a023;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}