/* ============================================
   MEGA FOOTER
   ============================================ */
.mega-footer__main {
    background: #1a1a2e;
    color: rgba(255,255,255,0.85);
    padding: 64px 0 48px;
}

.mega-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
    gap: 48px;
}

/* Brand column */
.mega-footer__col--brand { }

.mega-footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mega-footer__logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mega-footer__logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}

.mega-footer__logo-sub {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.15;
}

.mega-footer__desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.mega-footer__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.mega-footer__stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 1px;
}

.mega-footer__brand-cta {
    display: flex;
    gap: 10px;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

/* Column headings */
.mega-footer__heading {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

/* Links column */
.mega-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-footer__links li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mega-footer__links li a::before {
    content: '\2192';
    font-size: 0.8rem;
    color: var(--blue);
}
.mega-footer__links li a:hover { color: #fff; }

/* Contact list */
.mega-footer__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mega-footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.mega-footer__contact-list li svg {
    flex-shrink: 0;
    color: var(--blue);
}

.mega-footer__contact-list li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.mega-footer__contact-list li a:hover { color: #fff; }

/* Area list */
.mega-footer__area-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mega-footer__area-list li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    padding-left: 12px;
    position: relative;
}

.mega-footer__area-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
}

/* Footer bottom */
.mega-footer__bottom {
    background: #141425;
    padding: 16px 0;
}

.mega-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-footer__copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.mega-footer__legal {
    display: flex;
    gap: 20px;
}

.mega-footer__legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}
.mega-footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* Hide old footer */
.footer { display: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .mega-footer__main { padding: 48px 0 32px; }

    .mega-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mega-footer__brand-cta { flex-direction: row; }
    .mega-footer__brand-cta .btn { flex: 1; justify-content: center; }

    .mega-footer__area-list { grid-template-columns: repeat(3, 1fr); }

    .mega-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .mega-footer__legal { justify-content: center; }

    .mega-footer__main + .mega-footer__bottom { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .mega-footer__area-list { grid-template-columns: 1fr 1fr; }
}
