/* Global Footer & CTA Styles */
/* Extracted from style.css to ensure consistency across all pages */

/* Big CTA Section */
.big-cta-section {
    position: relative !important;
    height: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: white !important;
    background: #000 !important;
    overflow: hidden !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    transform: none !important;
    will-change: auto !important;
}

.big-cta-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('../assets/cta_collage_new.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    animation: none !important;
    transform: none !important;
    image-rendering: auto !important;
}

.big-cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48) !important;
    pointer-events: none;
}

.big-cta-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 0 20px !important;
    max-width: 800px !important;
    color: white !important;
}

.big-cta-content h2 {
    font-size: var(--text-4xl) !important;
    margin-bottom: 32px !important;
    color: white !important;
    line-height: 1.2 !important;
    font-family: "Outfit", sans-serif !important;
    font-weight: 500 !important;
}

/* Button Styles */
.btn-white-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    color: #000 !important;
    font-size: var(--text-sm) !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
    border-radius: 100px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
    font-family: "Inter", sans-serif !important;
}

.btn-white-pill:hover {
    background: #f5f5f5 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1) !important;
    color: #000 !important;
}

/* Footer Container */
.footer {
    background: #000 !important;
    color: #fff !important;
    padding: 80px 0 40px !important;
    border-top: 1px solid #222 !important;
}

.footer .container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 48px !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
    gap: 40px !important;
    margin-bottom: 60px !important;
}

/* Footer Typography */
.footer-col h4 {
    font-size: var(--text-base) !important;
    margin-bottom: 24px !important;
    color: white !important;
    font-family: "Outfit", sans-serif !important;
    font-weight: 600 !important;
}

.footer-link {
    display: block !important;
    color: #999 !important;
    font-size: var(--text-sm) !important;
    margin-bottom: 12px !important;
    transition: color 0.2s !important;
    text-decoration: none !important;
    font-family: "Inter", sans-serif !important;
}

.footer-link:hover {
    color: #FF6A3D !important;
    /* Primary Brand Color */
    text-decoration: underline !important;
}

.footer-desc {
    color: #999 !important;
    font-size: var(--text-sm) !important;
    line-height: 1.6 !important;
    max-width: 300px !important;
    font-family: "Inter", sans-serif !important;
}

.footer-logo {
    margin-bottom: 20px !important;
    display: block !important;
}

.footer-logo-img {
    height: 32px !important;
    width: auto !important;
}

.footer-bottom {
    border-top: 1px solid #333 !important;
    padding-top: 40px !important;
    display: flex !important;
    justify-content: space-between !important;
    color: #666 !important;
    font-size: var(--text-xs) !important;
    font-family: "Inter", sans-serif !important;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .footer .container {
        padding: 0 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .footer-bottom>div {
        justify-content: center !important;
    }
}

/* Standard Footer Wrapper & Layout Classes (Ported from content-studio) */
.footer-wrapper-full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    width: 100%;
    align-items: stretch !important;
    justify-content: flex-start !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    perspective: 1000px !important;
    transform-style: preserve-3d !important;
    will-change: transform !important;
}

.big-cta-section-flex {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: auto !important;
}

.footer-base {
    padding: 40px 0;
    background: #000;
    border-top: 1px solid #222;
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
}

/* Mobile CTA Refinements */
@media (max-width: 768px) {
    .big-cta-content h2 {
        font-size: 24px !important;
        margin-bottom: 24px !important;
    }

    .big-cta-content {
        padding-bottom: 60px !important;
    }

    .btn-white-pill {
        font-size: 14px !important;
        padding: 12px 24px !important;
    }
}