/* CTA Section */
.cta-section {
    background-color: var(--main-color);
    background-image: url('../img/5150216_m.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: 14px;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 2px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-cta-white {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-cta-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-cta {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: var(--main-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.clubmed-site .btn-cta {
    color: var(--main-color);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 20px;
        min-height: 300px;
    }

    .cta-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .cta-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta-white {
        width: 100%;
        max-width: 320px;
        padding: 14px 30px;
        font-size: 15px;
    }

    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}
