/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.page-footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 0 0 64px 0;
    width: 100%;
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    padding-bottom: 64px;
    gap: 32px;
    text-align: center;
}

.cta-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
}

.cta-button-footer {
    background-color: var(--primary-orange);
    color: var(--text-dark);
    /* or white depending on contrast, usually dark on orange */
    color: #000000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: inline-block;
}

.cta-button-footer:hover {
    transform: scale(1.05);
    background-color: #FF8051;
    /* Slightly lighter orange */
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-light);
    margin-bottom: 48px;
    opacity: 0.5;
}

/* Main Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 5%;
    /* Align with general container branding */
    flex-wrap: wrap;
    gap: 48px;
}

/* Branding Column */
.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    height: 32px;
    /* Adjust based on actual asset */
    width: auto;
}

.footer-logo-img {
    height: 100%;
    width: auto;
}

.availability-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.availability-role {
    color: var(--text-white);
    font-weight: 500;
    display: block;
}

/* Socials Column */
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.socials-title {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    opacity: 0.8;
    transform: translateX(4px);
}

.social-icon-box {
    width: 32px;
    height: 32px;
    background-color: var(--surface-card);
    border-radius: 50%;
    /* Optional: if icons need circle bg, request image had icons in plain or circles? Image shows icons in circles/boxes. Let's use circle bg for cleaner look */
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.social-icon {
    font-size: 18px;
    color: var(--text-white);
}

.social-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    word-break: break-all;
    /* For long URLs */
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 48px;
    }

    .cta-text {
        font-size: 24px;
    }
}