/* ============================================
   FOOTER COMPONENT
   ============================================ */

/* Footer Main Container */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-gold) 50%, 
        transparent 100%
    );
}

/* Footer Main Section */
.footer__main {
    padding: 80px 0 40px;
    position: relative;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

/* Footer Logo Section */
.footer__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer__logo img {
    width: 50px;
    height: auto;
}

.footer__logo-text {
    display: flex;
    flex-direction: column;
}

.footer__logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer__logo-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-gold-light);
    font-weight: 500;
    text-transform: uppercase;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

/* Footer Social Links */
.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer__social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.footer__social-link:hover::before {
    width: 100%;
    height: 100%;
}

.footer__social-link:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer__social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.footer__social-link:hover i {
    color: var(--color-black);
}

/* Footer Columns */
.footer__column {
    position: relative;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
}

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

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer__links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.footer__links a:hover {
    color: var(--color-gold);
    padding-left: 10px;
}

.footer__links a:hover::before {
    width: 100%;
}

/* Footer Contact Info */
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer__contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 16px;
    flex-shrink: 0;
}

.footer__contact-text {
    flex: 1;
}

.footer__contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    display: block;
}

.footer__contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer__contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact-value a:hover {
    color: var(--color-gold);
}

/* Newsletter Section */
.footer__newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer__newsletter-form {
    display: flex;
    gap: 10px;
}

.footer__newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer__newsletter-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

.footer__newsletter-btn {
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border: none;
    border-radius: 8px;
    color: var(--color-black);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer__newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Payment Methods */
.footer__payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.footer__payment-icon {
    width: 50px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.footer__payment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Footer Bottom */
.footer__bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 0;
}

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

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer__copyright a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__copyright a:hover {
    color: var(--color-gold-light);
}

.footer__bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
    color: var(--color-gold);
}

/* Decorative Elements */
.footer__decorative {
    position: absolute;
    pointer-events: none;
}

.footer__decorative--circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.footer__decorative--circle-1 {
    top: -150px;
    right: -100px;
}

.footer__decorative--circle-2 {
    bottom: -150px;
    left: -100px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer__main {
        padding: 60px 0 30px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__newsletter-form {
        flex-direction: column;
    }
    
    .footer__newsletter-btn {
        width: 100%;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer__social {
        justify-content: center;
    }
    
    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer__links {
        text-align: center;
    }
}
