/* FOOTER SECTION - "THE OMEGA TERMINAL" */
/* Concept: The ultimate anchor. A visually heavy, premium, and glowing finish to the experience. */

.site-footer {
    position: relative;
    background-color: #000;
    color: #fff;
    padding: 120px 0 40px;
    z-index: 25;
    /* Highest layer to sit purely on top of everything at bottom */
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    /* Clean cut */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* 1. SEPARATOR TRANSITION */
/* A massive top glow to separate from the map */
.site-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Background Texture */
.footer-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(20, 20, 20, 1) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(20, 20, 20, 1) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 255, 255, 0.02) 1px, rgba(255, 255, 255, 0.02) 2px);
    background-size: 100% 100%, 100% 100%, 100% 20px;
    z-index: 0;
    opacity: 0.5;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 2. THE LOGO & IDENTITY */
.footer-logo-box {
    margin-bottom: 40px;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
    transition: transform 0.5s ease;
}

.footer-logo-box:hover {
    transform: scale(1.05) rotate(1deg);
}

.footer-logo-img {
    height: 100px;
    /* Prominent size */
    width: auto;
}

/* 3. SLOGAN & CTA */
.footer-hero-content {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.footer-hero-content::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-magenta), transparent);
}

.footer-slogan {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 0, 0, 1);
}

.footer-slogan span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.footer-sub-slogan {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--color-cyan);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: block;
}

.premium-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 60px;
    background: #fff;
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    /* Capsule shape */
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.1),
        /* Outer Ring */
        0 10px 40px rgba(0, 229, 255, 0.3);
    /* Glow */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.premium-cta-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-magenta));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.premium-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.2),
        0 20px 60px rgba(188, 19, 254, 0.4);
    color: #fff;
}

.premium-cta-btn:hover::before {
    opacity: 1;
}

/* 4. CONTENT GRID (3 Columns) */
.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.f-col-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-col-title i {
    color: var(--color-cyan);
}

.f-list {
    list-style: none;
    padding: 0;
}

.f-item {
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    transition: color 0.3s;
}

.f-item a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s;
}

.f-item a:hover {
    color: #fff;
    padding-left: 5px;
}

.f-item.highlight {
    color: #fff;
    font-weight: 500;
}

/* Contact Specifics */
.contact-row-f {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #bbb;
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-magenta);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-row-f:hover .contact-icon-box {
    background: var(--color-magenta);
    color: #fff;
    box-shadow: 0 0 15px var(--color-magenta);
}

/* Socials Large */
.social-orb-container {
    display: flex;
    gap: 15px;
}

.social-orb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
}

.social-orb:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* 5. BOTTOM BAR */
.footer-bottom-bar {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-slogan {
        font-size: 2.5rem;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-hero-content::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .f-col-title {
        justify-content: center;
    }

    .contact-row-f {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .social-orb-container {
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
    }
}