/* ==========================================================================
   Footer — Multi-column layout, social icons, copyright bar
   ========================================================================== */

.site-footer {
    background-color: #0a0e27;
    color: rgba(255, 255, 255, 0.8);
}

/* Main Footer */
.footer-main {
    padding: 64px 0 48px;
}

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

/* Footer column titles */
.footer-col-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lh-white);
    margin-bottom: 20px;
}

/* Brand column */
.footer-brand-col {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-icon:hover {
    color: var(--lh-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Brand-color hovers */
.social-facebook:hover  { background-color: #1877F2; }
.social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-twitter:hover   { background-color: #000000; }
.social-linkedin:hover  { background-color: #0A66C2; }
.social-youtube:hover   { background-color: #FF0000; }
.social-tiktok:hover    { background-color: #000000; }
.social-whatsapp:hover  { background-color: #25D366; }

/* Screen reader text — visually hidden, accessible to assistive tech */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer menus */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: all var(--lh-transition);
}

.footer-menu li a:hover {
    color: var(--lh-primary);
    padding-left: 4px;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--lh-primary);
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list li a:hover {
    color: var(--lh-primary);
}

/* Payment Icons Bar */
.footer-payments {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.payment-icon svg {
    display: block;
    width: 52px;
    height: 34px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: var(--lh-primary);
}
