/* =============================================================================
   UNIFIED FOOTER - EXTRACTED FROM MAIN PAGE
   Working footer styles from index.html styles.css
   ============================================================================= */

/* ===== FOOTER BASE STYLES ===== */
.footer {
    /* FIGMA EXACT: Gradient from node 8:7 - subtle dark gradient */
    background: linear-gradient(180deg, #262725 0%, #31322e 50%, #252624 100%);
    padding: 44px 0; /* FIGMA EXACT: VQA corrected from 48px */
    border-top: 1px solid rgba(243, 159, 27, 0.1);
    margin-top: auto; /* Push to bottom */
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px; /* FIGMA: 8px grid aligned (was 40px) */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer .footer-logo .torg-logo-svg {
    display: inline-block;
    margin-bottom: 8px;
    margin-top: 10px; /* FIGMA EXACT: VQA requested 8-12px adjustment */
}

.footer .footer-logo .footer-logo-img {
    height: 64px !important;
    width: auto !important;
    max-width: 200px !important;
    filter: brightness(1.1) !important;
    transition: all 0.3s ease !important;
}

.footer .footer-logo .footer-logo-img:hover {
    filter: brightness(1.3) drop-shadow(0 0 8px rgba(243, 159, 27, 0.4)) !important;
    transform: scale(1.05) !important;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.5); /* FIGMA EXACT: More subtle gray from VQA */
    font-size: 14px;
    font-weight: 400; /* FIGMA: Lighter weight */
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px; /* FIGMA EXACT: VQA corrected from 8px */
}

.footer-contact h4 {
    color: #E4A960; /* FIGMA EXACT: Bright golden yellow from VQA analysis */
    font-size: 18px; /* FIGMA: Larger, more prominent heading */
    letter-spacing: 0.05em; /* FIGMA: Proper letter spacing */
    margin: 0 0 8px 0;
    font-weight: 600;
}

.footer-contact a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400; /* FIGMA: Lighter font weight */
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-orange);
    transform: translateX(2px);
}

.footer-contact .telegram-icon {
    display: inline-block;
    margin-top: 12px; /* FIGMA: spacing below email */
    transition: all 0.3s ease;
}

.footer-contact .telegram-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
    padding-top: 12px; /* FIGMA EXACT: VQA requested 10-15px adjustment */
}

.footer-legal p {
    color: #B0B0B0; /* FIGMA EXACT: lighter gray for better contrast */
    font-size: 14px;
    font-weight: 400; /* FIGMA: Lighter font weight */
    margin: 0;
    line-height: 1.4;
}

.footer-legal .privacy-link {
    color: #B0B0B0; /* FIGMA EXACT: matching text color */
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.footer-legal .privacy-link:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer {
        padding: 32px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 0 16px;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 24px 0;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-logo .logo-text {
        font-size: 20px;
    }
    
    .footer-contact h4 {
        font-size: 14px;
    }
}