/* ============================================================
   LaptopFix Footer — footer.css
   Accent: #0EA5E9 (sky blue)  |  Green trust: #22C55E
   ============================================================ */

/* ── Root tokens ── */
:root {
    --lf-accent:      #0EA5E9;
    --lf-accent-glow: rgba(14, 165, 233, 0.45);
    --lf-green:       #22C55E;
    --lf-bg:          #060708;
    --lf-surface:     rgba(255, 255, 255, 0.035);
    --lf-border:      rgba(255, 255, 255, 0.09);
    --lf-muted:       #8b95a7;
    --lf-soft:        #a8b3c4;
    --lf-white:       #f4f6fa;
    --lf-radius:      16px;
    --lf-transition:  0.26s ease;
}

/* ── Footer shell ── */
.lf-footer {
    position: relative;
    overflow: hidden;
    color: var(--lf-white);
    background:
        radial-gradient(1100px 480px at 8% -8%, rgba(14, 165, 233, 0.14) 0%, transparent 60%),
        radial-gradient(900px 500px at 96% 110%, rgba(14, 100, 200, 0.16) 0%, transparent 60%),
        linear-gradient(170deg, #060708 0%, #0c1118 60%, #101620 100%);
    border-top: 1px solid var(--lf-border);
}

/* ── Ambient glow blobs ── */
.lf-footer__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.28;
}
.lf-footer__glow--left {
    width: 260px; height: 260px;
    top: 30px; left: -100px;
    background: rgba(14, 165, 233, 0.5);
}
.lf-footer__glow--right {
    width: 320px; height: 320px;
    right: -110px; bottom: 10px;
    background: rgba(14, 90, 190, 0.42);
}

/* ── Container ── */
.lf-footer__wrap {
    position: relative;
    padding-top: 3.5rem;
}

/* ── Top gradient divider ── */
.lf-footer__divider {
    height: 1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, transparent 0%, rgba(14, 165, 233, 0.5) 50%, transparent 100%);
}

/* ── 4-column grid ── */
.lf-footer__grid {
    display: grid;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
}

/* ── Glass cards ── */
.lf-footer__card {
    padding: 1.5rem 1.4rem 1.6rem;
    border: 1px solid var(--lf-border);
    border-radius: var(--lf-radius);
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    backdrop-filter: blur(6px);
    transition: border-color var(--lf-transition), transform var(--lf-transition), box-shadow var(--lf-transition);
}
.lf-footer__card:hover {
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(14, 165, 233, 0.12) inset;
}

/* ── Brand pill badge ── */
.lf-footer__pill {
    display: inline-flex;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #c2e8ff;
    border: 1px solid rgba(14, 165, 233, 0.35);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(14, 80, 180, 0.18));
    margin-bottom: 0.9rem;
}

/* ── Logo ── */
.lf-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
    text-decoration: none;
}
.lf-footer__logo strong {
    color: var(--lf-accent);
}
.lf-footer__logo-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--lf-white);
}

/* ── Description ── */
.lf-footer__desc {
    margin-top: 1rem;
    max-width: 32ch;
    color: var(--lf-soft);
    font-size: 0.93rem;
    line-height: 1.72;
}

/* ── Contact list ── */
.lf-footer__contact-list {
    margin-top: 1.1rem;
    display: grid;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin-left: 0;
}
.lf-footer__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--lf-soft);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color var(--lf-transition);
}
a.lf-footer__contact-item:hover {
    color: var(--lf-accent);
}
.lf-footer__contact-item svg {
    width: 15px;
    height: 15px;
    fill: var(--lf-accent);
    flex-shrink: 0;
}

/* ── Social buttons ── */
.lf-footer__social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
}
.lf-footer__social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lf-border);
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: background var(--lf-transition), border-color var(--lf-transition),
                transform var(--lf-transition), box-shadow var(--lf-transition);
}
.lf-footer__social-btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}
.lf-footer__social-btn:hover {
    transform: translateY(-3px);
}
.lf-footer__social-btn--ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(220, 39, 67, 0.45);
}
.lf-footer__social-btn--fb:hover {
    background: #1877F2;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(24, 119, 242, 0.45);
}
.lf-footer__social-btn--yt:hover {
    background: #FF0000;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(255, 0, 0, 0.4);
}

/* ── Call CTA button ── */
.lf-footer__cta-btn {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.62rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, #0284c7 0%, #0EA5E9 100%);
    transition: transform var(--lf-transition), box-shadow var(--lf-transition);
}
.lf-footer__cta-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}
.lf-footer__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--lf-accent-glow);
}

/* ── Column headings ── */
.lf-footer__heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e8edf5;
}
.lf-footer__heading-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lf-accent);
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--lf-accent-glow);
}

/* ── Link lists ── */
.lf-footer__links {
    display: grid;
    gap: 0.28rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.lf-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.38rem 0.4rem;
    border-radius: 8px;
    color: var(--lf-soft);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--lf-transition), background var(--lf-transition),
                transform var(--lf-transition), text-shadow var(--lf-transition);
}
.lf-footer__links a svg {
    width: 14px;
    height: 14px;
    fill: var(--lf-muted);
    flex-shrink: 0;
    transition: fill var(--lf-transition);
}
.lf-footer__links a:hover {
    color: #ffffff;
    background: rgba(14, 165, 233, 0.1);
    transform: translateX(4px);
    text-shadow: 0 0 16px rgba(14, 165, 233, 0.4);
}
.lf-footer__links a:hover svg {
    fill: var(--lf-accent);
}

/* ── "See all" link ── */
.lf-footer__see-all {
    display: inline-block;
    margin-top: 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lf-accent);
    text-decoration: none;
    transition: opacity var(--lf-transition), transform var(--lf-transition);
}
.lf-footer__see-all:hover {
    opacity: 0.78;
    transform: translateX(3px);
}

/* ── Trust badges (col 4) ── */
.lf-footer__badges {
    margin-top: 1.3rem;
    display: grid;
    gap: 0.45rem;
    list-style: none;
    padding: 0;
}
.lf-footer__badges li {
    position: relative;
    padding-left: 1.2rem;
    color: #cdd5e0;
    font-size: 0.86rem;
}
.lf-footer__badges li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lf-green);
    font-size: 0.8rem;
}

/* ── Partner / related services ── */
.lf-footer__partners {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.1rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.82rem;
}
.lf-footer__partners-label {
    color: var(--lf-muted);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.lf-footer__partners ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}
.lf-footer__partners a {
    color: #c4cfe2;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.1rem;
    transition: color 0.22s ease;
}
.lf-footer__partners a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--lf-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}
.lf-footer__partners a:hover {
    color: var(--lf-accent);
}
.lf-footer__partners a:hover::after {
    transform: scaleX(1);
}

/* ── Bottom bar ── */
.lf-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.25rem;
    padding: 1.15rem 0 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.lf-footer__bottom p {
    color: var(--lf-muted);
    font-size: 0.84rem;
}
.lf-footer__bottom p a {
    color: var(--lf-soft);
    text-decoration: none;
    transition: color var(--lf-transition);
}
.lf-footer__bottom p a:hover {
    color: var(--lf-accent);
}
.lf-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.lf-footer__legal a {
    color: var(--lf-muted);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color var(--lf-transition);
}
.lf-footer__legal a:hover {
    color: var(--lf-white);
}
.lf-footer__legal li + li::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    margin-right: 1rem;
    background: rgba(255,255,255,0.16);
    vertical-align: middle;
}

/* ── Floating action buttons ── */
.lf-fab {
    position: fixed;
    right: 1.1rem;
    z-index: 500;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    transition: transform var(--lf-transition), box-shadow var(--lf-transition);
}
.lf-fab svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}
.lf-fab:hover {
    transform: translateY(-3px);
}

/* WhatsApp FAB */
.lf-fab--whatsapp {
    bottom: 5.4rem;
    background: #25D366;
    padding: 0.82rem 1.1rem;
    font-size: 0.86rem;
}
.lf-fab--whatsapp:hover {
    box-shadow: 0 14px 38px rgba(37, 211, 102, 0.55);
}

/* Call FAB */
.lf-fab--call {
    bottom: 1.25rem;
    background: linear-gradient(135deg, #0284c7, #0EA5E9);
    padding: 0.82rem 1rem;
    font-size: 0.84rem;
}
.lf-fab--call:hover {
    box-shadow: 0 14px 38px var(--lf-accent-glow);
}

/* Ripple ring on hover */
.lf-fab--whatsapp::after,
.lf-fab--call::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    opacity: 0;
    transform: scale(0.84);
    transition: opacity var(--lf-transition), transform var(--lf-transition);
}
.lf-fab--whatsapp:hover::after,
.lf-fab--call:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ── Responsive: tablet (2 cols) ── */
@media (min-width: 680px) {
    .lf-footer__wrap {
        padding-top: 4rem;
    }
    .lf-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem;
    }
    .lf-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ── Responsive: desktop (4 cols) ── */
@media (min-width: 1024px) {
    .lf-footer__wrap {
        padding-top: 4.5rem;
    }
    .lf-footer__grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 2rem;
        padding-bottom: 3rem;
    }
    .lf-footer__fab {
        right: 1.5rem;
    }
}

/* ── Responsive: small mobile (icon-only FABs) ── */
@media (max-width: 520px) {
    .lf-fab--whatsapp,
    .lf-fab--call {
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }
    .lf-fab--whatsapp span,
    .lf-fab--call span {
        display: none;
    }
    .lf-footer__partners {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
