/* ============================================================
 * CTA FINAL SECTION
 * Final call-to-action section with action cards and social links
 * ============================================================ */

.cta_final {
    position: relative;
    width: 100%;
    min-height: 500px;
}



/* ============================================================
 * CONTAINER & WRAPPER
 * ============================================================ */

.cta_final__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta_final__wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ============================================================
 * MAIN BOX
 * ============================================================ */

.cta_final__box {
    width: 100%;
    max-width: 900px;
    padding: 50px 40px;
    border-radius: 12px;
    border: 2px solid var(--color-border);
}

.cta_final__box.glass {
    background: var(--color-surface);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================================
 * HEADER
 * ============================================================ */

.cta_final__header {
    text-align: center;
    margin-bottom: 50px;
}

.cta_final__title {
    margin-bottom: 15px;
}

.cta_final__subtitle {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.cta_final__description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
 * CTA CARDS GRID
 * ============================================================ */

.cta_final__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.cta_final__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border: 2px solid rgba(0, 207, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background: rgba(0, 207, 255, 0.02);
    cursor: pointer;
}

.cta_final__card:hover {
    border-color: rgba(0, 207, 255, 0.8);
    background: rgba(0, 207, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 207, 255, 0.2);
}

.cta_final__card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.cta_final__card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.cta_final__card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.4;
}

.cta_final__card:hover .cta_final__card-description {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
 * SOCIAL SECTION
 * ============================================================ */

.cta_final__social {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 207, 255, 0.2);
    text-align: center;
}

.cta_final__social-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.cta_final__social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta_final__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(0, 207, 255, 0.5);
    color: #00cfff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta_final__social-link:hover {
    border-color: #00cfff;
    background: rgba(0, 207, 255, 0.1);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 207, 255, 0.3);
}

/* ============================================================
 * THEME VARIANTS
 * ============================================================ */

/* Dark theme (default) */
.cta_final.theme-dark .cta_final__card {
    border-color: rgba(0, 207, 255, 0.3);
    background: rgba(0, 207, 255, 0.02);
}

.cta_final.theme-dark .cta_final__card:hover {
    border-color: rgba(0, 207, 255, 0.8);
    background: rgba(0, 207, 255, 0.08);
}

.cta_final.theme-dark .cta_final__social-link {
    border-color: rgba(0, 207, 255, 0.5);
    color: #00cfff;
}

.cta_final.theme-dark .cta_final__social-link:hover {
    border-color: #00cfff;
    background: rgba(0, 207, 255, 0.1);
}

/* Light theme */
.cta_final.theme-light .cta_final__card {
    border-color: rgba(13, 110, 253, 0.3);
    background: rgba(13, 110, 253, 0.02);
}

.cta_final.theme-light .cta_final__card:hover {
    border-color: rgba(13, 110, 253, 0.8);
    background: rgba(13, 110, 253, 0.08);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}

.cta_final.theme-light .cta_final__card-description {
    color: rgba(0, 0, 0, 0.6);
}

.cta_final.theme-light .cta_final__card:hover .cta_final__card-description {
    color: rgba(0, 0, 0, 0.8);
}

.cta_final.theme-light .cta_final__social-link {
    border-color: rgba(13, 110, 253, 0.5);
    color: #0d6efd;
}

.cta_final.theme-light .cta_final__social-link:hover {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* ============================================================
 * RESPONSIVE DESIGN
 * ============================================================ */

@media (max-width: 768px) {
    .cta_final {
        min-height: auto;
    }

    .cta_final__box {
        padding: 40px 20px;
    }

    .cta_final__header {
        margin-bottom: 30px;
    }

    .cta_final__cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .cta_final__card {
        padding: 25px 15px;
    }

    .cta_final__social {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .cta_final__box {
        border-radius: 8px;
        padding: 20px 15px;
    }

    .cta_final__card-icon {
        font-size: 2rem;
    }

    .cta_final__card-title {
        font-size: 1rem;
    }

    .cta_final__social-links {
        gap: 15px;
    }

    .cta_final__social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}