.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #002266 100%);
    color: var(--primary-contrast);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Floating Bubbles Effect */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-bubble 15s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 40px;
    height: 40px;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 35%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 60px;
    height: 60px;
    left: 50%;
    animation-duration: 15s;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 65%;
    animation-duration: 22s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 80%;
    animation-duration: 14s;
    animation-delay: 5s;
}

.bubble:nth-child(7) {
    width: 70px;
    height: 70px;
    left: 90%;
    animation-duration: 17s;
    animation-delay: 2s;
}

.bubble:nth-child(8) {
    width: 110px;
    height: 110px;
    left: 15%;
    animation-duration: 25s;
    animation-delay: 6s;
}

@keyframes float-bubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-120vh) scale(1.5);
        opacity: 0;
    }
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary-contrast);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.final-cta p {
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta .hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.final-cta .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-contrast);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.final-cta .btn-outline:hover {
    background-color: var(--primary-contrast);
    color: var(--primary);
    border-color: var(--primary-contrast);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 6rem 0;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .final-cta .hero-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 0 2rem;
    }
}