/* --- FOOTER CTA REDESIGN (AlkhemyLab Identity - Light / Angelus) --- */

.section-footer-cta-reborn {
    /* Palette */
    --color-bg-light: #FFFFFF;
    --color-bg-gray: #F5F5F5;
    --color-mars: #7A1F24;
    --color-mars-dark: #58161A;
    --color-text-dark: #333333;
    --color-text-gray: #757575;
    --color-gold: #D4AF37;

    background: linear-gradient(135deg, #FFFFFF 70%, #F5F5F5 30%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: var(--color-text-dark);
    text-align: center;
}

/* Background Effects */
.footer-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Clean background, maybe a subtle pattern if needed, but keeping clean */
}

.footer-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(192, 192, 192, 0.4) 1px, transparent 1px),
        /* Silver particles */
        radial-gradient(rgba(196, 30, 58, 0.2) 1px, transparent 1px);
    /* Mars particles */
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.6;
    z-index: 2;
    animation: particleDrift 60s linear infinite;
}

@keyframes particleDrift {
    0% {
        background-position: 0 0, 25px 25px;
    }

    100% {
        background-position: 100px 100px, 125px 125px;
    }
}

.footer-glow-spot {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
    /* Very subtle red glow */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

/* Container */
.footer-container {
    position: relative;
    z-index: 3;
}

/* Typography */
.footer-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
    color: var(--color-text-dark);
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-gray);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Info Card */
.footer-info-card {
    background: #FFFFFF;
    border: 1px solid rgba(192, 192, 192, 0.3);
    /* Silver border */
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(196, 30, 58, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 24px;
    color: var(--color-mars);
    /* Mars Red Icon */
    margin-right: 1rem;
    margin-top: 4px;
    font-size: 1.1rem;
}

.info-content strong {
    color: var(--color-text-dark);
    font-weight: 600;
    margin-right: 5px;
}

.info-content {
    color: var(--color-text-gray);
    font-size: 1rem;
}

/* CTA Button */
.btn-footer-cta {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-mars);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    transition: all 0.4s ease;
    z-index: 10;
}

.btn-footer-cta:hover {
    background: var(--color-mars-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .section-footer-cta-reborn {
        padding: 50px 0;
    }

    .footer-title {
        font-size: 2rem;
    }

    .footer-info-card {
        padding: 1.5rem;
    }

    .btn-footer-cta {
        width: 100%;
        padding: 18px 20px;
    }
}