/* ===================================
   Part: Footer
   ================================== */
.footer {
    background: var(--color-darker);
    padding: var(--space-lg) 0 var(--space-sm);
    color: var(--color-light);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-sm);
}

/* Brand Section */
.footer-brand-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-light);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    line-height: 1.1;
}

.footer-tagline {
    font-family: 'Pinyon Script', cursive;
    /* Premium feeling font */
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-top: var(--space-xs);
    opacity: 0.9;
}

/* Navigation Section */
.footer-nav {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
}

.footer-nav-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 0.6rem 5rem;
    padding: 0;
}

.footer-nav-list a {
    color: var(--color-light);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    opacity: 1;
    color: var(--color-primary);
    transform: translateX(6px);
}

/* Contact & Info Section */
.footer-info-section {
    flex: 1;
    min-width: 250px;
    text-align: right;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    font-family: var(--font-body);
}

.footer-tel {
    display: block;
    color: var(--color-light);
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-tel:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
    /* Prevent stretching */
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(10, 193, 223, 0.4);
}

/* Bottom Copyright */
.footer-bottom {
    text-align: center;
    padding-top: var(--space-sm);
}

.footer-bottom .copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-nav {
        justify-content: center;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1.5rem 0;
    }

    .footer-nav-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 2rem;
    }

    .footer-nav-list a:hover {
        transform: translateX(0) scale(1.1);
    }

    .footer-info-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}