/* Kaizora Brand Font */
@font-face {
    font-family: 'Codec Warm';
    src: url('../font/Codec-Warm-Bold-trial.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Footer Section - Acelia Reference Style */
.footer-section {
    background-color: var(--color-deep-navy);
    padding: 0 0 2.5rem;
    position: relative;
}

/* CTA Bar */
.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-heading {
    font-size: 1.75rem;
    font-weight: 400;
    color: #fff;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Giant Brand Text */
.footer-brand {
    text-align: center;
    padding: 3rem 0 0;
}

.footer-brand-text {
    font-size: clamp(5rem, 14vw, 16rem);
    line-height: 0.85;
    color: #fff;
    opacity: 1;
    user-select: none;
    letter-spacing: -0.04em;
    font-family: 'Codec Warm', sans-serif;
    text-transform: uppercase;
}

/* Footer Content Row */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0 2.5rem;
    gap: 4rem;
}

.footer-description {
    max-width: 400px;
}

.footer-description p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(2, 91, 188, 0.1);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.footer-nav a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-cta-heading {
        font-size: 1.3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }

    .footer-brand-text {
        font-size: clamp(2.5rem, 10vw, 6rem);
    }
}

@media (max-width: 480px) {
    .footer-cta {
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .footer-cta-heading {
        font-size: 1.1rem;
    }

    .footer-content {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
}