.footer {
    background: linear-gradient(180deg, var(--black-medium) 0%, var(--black-deep) 100%);
    border-top: 1px solid var(--gold-rich);
    padding: 4rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 2fr;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-about {
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    background-color: var(--accent);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo span {
    color: var(--accent-foreground);
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-brand-text {
    color: var(--foreground);
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-link {
    background-color: var(--muted);
    padding: 0.75rem;
    border-radius: 50%;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link img {
    display: block;
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: var(--muted-foreground);
}

.info-bar {
    background: #000;
    color: #fff;
    padding: 20px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: start;
    position: relative;
}

.info-item i {
    font-size: 28px;
    color: #d4af37;
    min-width: 35px;
    text-align: center;
}

.info-text h4 {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

.info-text p {
    font-size: 13px;
    margin: 2px 0 0;
    color: #ccc;
}

.info-arrow {
    font-size: 18px;
    color: #d4af37;
    margin-left: auto;
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-item {
        text-align: center;
        flex-direction: column;
    }

    .info-arrow {
        margin-left: 0;
        margin-top: 6px;
    }
}

@media (max-width: 380px) {
    .social-media {
        gap: 0;
        justify-content: space-between;
    }

    .social-media svg,
    .social-media img {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item .icon-circle {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.contact-item .icon-circle i {
    width: 22px;
    height: 22px;
    color: #fff;
}

.contact-item span {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}

.payment-logos {
    margin-top: 20px;
    text-align: center;
}

.payment-logos img {
    max-width: 380px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1.1);
    transition: transform 0.3s ease;
}

.payment-logos img:hover {
    transform: scale(1.05);
}

.footer-about {
    text-align: center;
}
