/* ===================================
   CTA BADGE STYLING
   Voor "Gratis & Vrijblijvend" badges
   =================================== */

/* Button met badge styling */
.btn {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.btn-text {
    font-size: 1rem;
    font-weight: 600;
}

.btn-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-primary .btn-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary .btn-badge {
    background: rgba(0, 71, 171, 0.15);
    color: var(--japandi-charcoal);
}

/* Grote "Gratis Kennismakingsgesprek" Badge */
.free-consultation-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    animation: badge-pulse 3s infinite ease-in-out;
}

.free-consultation-badge i {
    font-size: 2rem;
    color: white;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.badge-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.badge-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    opacity: 0.9;
}

/* Pulse animatie voor badge */
@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 20, 147, 0.6);
        transform: scale(1.02);
    }
}

/* Hover effect op badge */
.free-consultation-badge:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.7);
    transition: all 0.3s ease;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .free-consultation-badge {
        flex-direction: column;
        text-align: center;
        padding: 18px 25px;
        gap: 10px;
    }

    .free-consultation-badge i {
        font-size: 1.75rem;
    }

    .badge-content {
        align-items: center;
        text-align: center;
    }

    .badge-title {
        font-size: 1.1rem;
    }

    .badge-subtitle {
        font-size: 0.85rem;
    }

    .btn-text {
        font-size: 0.95rem;
    }

    .btn-badge {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}

@media (max-width: 480px) {
    .free-consultation-badge {
        padding: 15px 20px;
        border-radius: 35px;
    }

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

    .badge-subtitle {
        font-size: 0.8rem;
    }
}

/* Extra styling voor buttons met badges */
.btn-primary:hover .btn-badge,
.btn-secondary:hover .btn-badge {
    background: rgba(255, 255, 255, 0.4);
}

/* Full-width button aanpassingen */
.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-full .btn-badge {
    margin-top: 2px;
}

/* Contact CTA specifieke styling */
.contact-cta .btn {
    min-width: 220px;
}

/* Hero CTA aanpassingen */
.hero-cta .btn {
    min-height: 70px;
    padding: 15px 35px;
    justify-content: center;
}

.hero-cta .btn-text {
    font-size: 1.1rem;
}

.hero-cta .btn-badge {
    font-size: 0.8rem;
}
