/* =====================================================
   PREMIUM FOOTER — Modern Design
===================================================== */

.footer-premium {
    background: linear-gradient(to bottom, #0d1a4e, #060e2c);
    padding: var(--space-lg) var(--space-md) var(--space-sm);
    text-align: center;
    margin-top: var(--space-lg);
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeUp 0.8s ease-out forwards;

    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.footer-premium .footer-copy {
    color: rgba(255, 255, 255, 0.8) !important;
}


/* GOLD TOP BAR */
.footer-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f4b23a;
}



/* CONTENT */
.footer-content {
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* FLEX LOGO + TEXT */
.footer-logo-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: var(--space-md);
}

/* LOGO */
.footer-logo {
    height: 60px;
}

/* TEXT BOX */
.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* BRAND NAME */
.footer-brand-name {
    color: var(--primary-gold);
    font-size: var(--fs-lg);
    font-weight: var(--fw-extrabold);
    letter-spacing: 1.8px;
}

/* TAGLINE */
.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    letter-spacing: 4px;
    margin-top: 4px;
    font-weight: var(--fw-medium);
}

/* COPYRIGHT */
.footer-copy {
    margin-top: var(--space-sm);
    opacity: 0.75;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--fw-regular);
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */
@media (max-width: 600px) {
    .footer-premium {
        padding: var(--space-md) var(--space-sm) var(--space-xs);
    }

    .footer-logo-flex {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .footer-logo {
        height: 50px;
    }

    .footer-brand-name {
        font-size: var(--fs-md);
    }

    .footer-brand-tagline {
        font-size: 10px;
        letter-spacing: 3px;
    }
}


/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes footerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}