/* Section 10: Final Call to Action Styles */
.final-cta-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 40px 20px;
}

.final-cta-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* CTA Content */
.cta-content {
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 0.8rem;
}

/* CTA Button */
.cta-button {
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* CTA Note */
.cta-note {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 1.2rem;
    margin-bottom: 0;
}

/* WhatsApp Option */
.whatsapp-option {
    margin-top: 2.5rem;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.divider span {
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid rgba(37, 211, 102, 0.5);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25d366;
    transform: translateY(-2px);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
    color: #25d366;
}

.whatsapp-note {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-top: 0.8rem;
    margin-bottom: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-text {
    display: none;
}

/* WhatsApp Button - Desktop Hover State */
@media (min-width: 901px) {
    .whatsapp-float:hover {
        width: auto;
        border-radius: 30px;
        padding: 0 20px;
        gap: 10px;
    }

    .whatsapp-float:hover .whatsapp-text {
        display: inline;
        font-size: 0.95rem;
        font-weight: 600;
        white-space: nowrap;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .final-cta-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 2.1rem;
    }

    .cta-text {
        font-size: 1.05rem;
    }

    .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }

    .whatsapp-option {
        margin-top: 2rem;
    }

    .whatsapp-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 600px) {
    .final-cta-section {
        padding: 40px 20px;
    }

    .final-cta-container {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1.5rem;
        box-sizing: border-box;
    }

    .cta-note {
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .whatsapp-option {
        margin-top: 1.8rem;
        width: 100%;
    }

    .divider {
        margin-bottom: 1.2rem;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        box-sizing: border-box;
    }

    .whatsapp-note {
        font-size: 0.8rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
