/*
 * Finland CTA Component Styles
 * Extracted from finland-cta.blade.php component
 * Version: 1.0
 * Date: 2025-11-19
 */

/* ============================================
   CTA SECTION BASE STYLES
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1C1C1B 0%, #1C1C1B 100%);
    padding: 100px 0;
    text-align: center;
}

/* ============================================
   INSTANT BADGE
   ============================================ */
.instant-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    animation: pulse-opacity 2s infinite;
}

@keyframes pulse-opacity {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

/* ============================================
   TEXT HIGHLIGHT
   ============================================ */
.text-highlight {
    color: #f5edd5;
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f5edd5;
}

/* ============================================
   CTA BUTTONS CONTAINER
   ============================================ */
.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   PRIMARY ACTION BUTTON
   ============================================ */
.primary-action-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1rem;
    background: #dbb15f !important;
    color: #ffffff !important;
    border: none !important;
}

.primary-action-btn:hover {
    background: #c99d3d !important;
    box-shadow: 0 10px 25px rgba(219, 177, 95, 0.3) !important;
    transform: translateY(-2px);
}

/* ============================================
   SECONDARY ACTION BUTTON
   ============================================ */
.secondary-action-btn {
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   CTA OR SEPARATOR
   ============================================ */
.cta-or {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.cta-or::before, .cta-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.cta-or::before {
    right: 100%;
    margin-right: 10px;
}

.cta-or::after {
    left: 100%;
    margin-left: 10px;
}

/* ============================================
   BENEFITS ROW
   ============================================ */
.benefits-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-item i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.benefit-item:hover {
    color: white;
}

.benefit-item:hover i {
    color: white;
}

/* ============================================
   ANIMATED PULSE RING
   ============================================ */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
    0% {
        width: 400px;
        height: 400px;
        opacity: 0.2;
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
    }
}

/* ============================================
   DECORATIVE CIRCLES
   ============================================ */
.cta-circle {
    position: absolute;
    top: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.6;
    filter: blur(50px);
}

.cta-circle-left {
    left: -150px;
    background: radial-gradient(circle, rgba(219, 177, 95, 0.4), rgba(26, 35, 126, 0.2));
}

.cta-circle-right {
    right: -150px;
    background: radial-gradient(circle, rgba(245, 237, 213, 0.4), rgba(219, 177, 95, 0.2));
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .cta-section {
        padding: 70px 0;
    }

    .benefits-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .primary-action-btn, .secondary-action-btn {
        width: 100%;
        max-width: 300px;
    }

    .display-4 {
        font-size: 2rem;
    }
}
