﻿.luxury-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .luxury-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #F4E4A6 50%, #D4AF37 80%, transparent 100%);
    }

.footer-main {
    padding: 60px 0 40px;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-header {
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .logo-link:hover {
        transform: translateY(-2px);
    }

.logo-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 100%);
    padding: 4px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1a1a1a;
}

.logo-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #D4AF37, #F4E4A6, #D4AF37, #F4E4A6, #D4AF37);
    z-index: -1;
    animation: rotate 4s linear infinite;
    opacity: 0.7;
}

.logo-text {
    text-align: right;
}

.brand-name {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #cccccc;
    font-weight: 400;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #D4AF37;
    position: relative;
    padding-bottom: 10px;
}

    .widget-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #D4AF37, #F4E4A6);
        border-radius: 2px;
    }

.footer-description {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    color: #D4AF37;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    color: #999999;
}

.contact-value {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .contact-value:hover {
        color: #D4AF37;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

    .footer-link::before {
        content: '›';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #D4AF37;
        transition: transform 0.3s ease;
    }

    .footer-link:hover {
        color: #D4AF37;
        padding-right: 20px;
    }

        .footer-link:hover::before {
            transform: translateY(-50%) translateX(-3px);
        }

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .trust-badge:hover {
        border-color: rgba(212, 175, 55, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    }

.enamad-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trust-badge:hover .enamad-img {
    transform: scale(1.05);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.trust-subtitle {
    color: #D4AF37;
    font-size: 12px;
}

/* شبکه‌های اجتماعی */
.social-section {
    margin-top: 25px;
}

.social-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: currentColor;
        opacity: 0.1;
        border-radius: 50%;
    }

    .social-link:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

.social-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

    .social-tooltip::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #333;
    }

.social-link:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

.instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.eitaa {
    color: #0084ff;
    background: rgba(0, 132, 255, 0.1);
}

.eitaa-img {
    width: 20px;
    height: 20px;
}

.whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.phone {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    margin: 0;
    color: #999999;
    font-size: 14px;
}

.brand-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .brand-link:hover {
        color: #F4E4A6;
    }

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-text {
    color: #999999;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    font-size: 24px;
    color: #cccccc;
    transition: all 0.3s ease;
}

    .payment-icon:hover {
        color: #D4AF37;
        transform: translateY(-2px);
    }

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    }

@@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@@media (max-width: 992px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .logo-link {
        flex-direction: column;
        text-align: center;
    }

    .widget-title {
        text-align: center;
    }

        .widget-title::after {
            right: 50%;
            transform: translateX(50%);
        }

    .trust-badge {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
    }
}

@@media (max-width: 768px) {
    .luxury-footer {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-link {
        padding-right: 0;
    }

        .footer-link::before {
            display: none;
        }

    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

@@media (max-width: 576px) {
    .footer-main {
        padding: 30px 0 20px;
    }

    .logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .brand-name {
        font-size: 18px;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .back-to-top {
        left: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}
