.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.site-footer .footer-logo img,
.site-footer .footer-logo-image {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    filter: brightness(0.9) contrast(1.1) !important;
    transition: all 0.3s ease !important;
}

.site-footer .footer-logo img:hover,
.site-footer .footer-logo-image:hover {
    filter: brightness(0.9) contrast(1.1) !important;
    transform: none !important;
}

.footer-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.pattern-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(221, 190, 88, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.pattern-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(221, 190, 88, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-main {
    padding: 80px 0 60px;
    position: relative;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-column-title {
    color: #DDBE58;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.footer-column-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #DDBE58, transparent);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    opacity: 0.8;
    font-weight: 400;
    display: inline-block;
}

.footer-links a:hover {
    color: #DDBE58 !important;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(221, 190, 88, 0.3);
    transform: translateX(4px);
}

.footer-links a:hover,
.footer-links a:focus,
.footer-links a:active {
    color: #DDBE58 !important;
    text-decoration: none !important;
    font-family: inherit !important;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DDBE58, #c4a94a);
    transition: all 0.3s ease;
    transform: translateY(-50%);
    border-radius: 1px;
}

.footer-links a:hover::before {
    width: 8px;
    box-shadow: 0 0 6px rgba(221, 190, 88, 0.4);
}

.rating-card {
    background: linear-gradient(135deg, rgba(221, 190, 88, 0.1) 0%, rgba(221, 190, 88, 0.05) 100%);
    border: 1px solid rgba(221, 190, 88, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(221, 190, 88, 0.3);
}

.rating-stars {
    margin-bottom: 12px;
}

.star {
    color: #333333;
    font-size: 20px;
    margin: 0 2px;
}

.star.filled {
    color: #DDBE58 !important;
}

.star.half-filled {
    background: linear-gradient(90deg, #DDBE58 50%, #333333 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    margin-bottom: 10px;
}

.rating-score {
    display: block;
    color: #DDBE58;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.rating-count {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

.rating-source {
    font-size: 12px;
    color: #999999;
}

.rating-number {
    color: #DDBE58;
    font-weight: 600;
}

.footer-payment-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    border-top: 1px solid rgba(221, 190, 88, 0.1);
    backdrop-filter: blur(10px);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.payment-logo {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 80px;
    height: 50px;
}

.payment-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    opacity: 1;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1.2);
    object-fit: contain;
}

.payment-logo:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.9);
}

.payment-logo:hover img {
    opacity: 1;
    filter: brightness(1) contrast(1.2);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px 0;
    border-top: 1px solid rgba(221, 190, 88, 0.1);
    backdrop-filter: blur(10px);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex !important;
    align-items: center !important;
    max-width: 120px !important;
    overflow: hidden !important;
}

.footer-logo-image {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    filter: brightness(0.9) contrast(1.1);
    transform: none;
}

.footer-copyright {
    color: #cccccc !important;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-legal a {
    color: #cccccc !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400;
    opacity: 0.8;
}

.footer-legal a:hover {
    color: #DDBE58 !important;
    opacity: 1;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #DDBE58;
    transition: width 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .payment-methods {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo-image {
        height: 35px !important;
        max-width: 100px !important;
        max-height: 35px !important;
    }

    .footer-logo {
        max-width: 100px !important;
    }
}

@media (max-width: 480px) {
    .payment-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-column-title {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-logo-image {
        height: 30px !important;
        max-width: 80px !important;
        max-height: 30px !important;
    }

    .footer-logo {
        max-width: 80px !important;
    }

    .footer-brand {
        gap: 10px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}