/* ================================
   FITNESS GYM MARKETING STYLES
   Premium Conversion Landing Look
==================================*/

.cta-section{
    padding: 80px 0;
    background: radial-gradient(circle at top, #0f172a 0%, #020617 100%);
    color: #ffffff;
}

/* Headings */
.cta-title{
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #ffffff;
}

.cta-subtitle{
    font-size: 16px;
    color: #94a3b8;
}

/* Glass Card (Core UI Block) */
.glass-card{
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.glass-card:hover{
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.4);
}

/* Headings inside cards */
.glass-card h3{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.glass-card p{
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Buttons Base */
.custom-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    margin-top: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Button Variants */
.btn-contact{
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.btn-contact:hover{
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scale(1.02);
}

.btn-call{
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.btn-call:hover{
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: scale(1.02);
}

.btn-chat{
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.btn-chat:hover{
    background: linear-gradient(135deg, #059669, #047857);
    transform: scale(1.02);
}

/* Right stats block */
.glass-card h4{
    font-size: 26px;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 5px;
}

.glass-card .col-6 p{
    font-size: 13px;
    color: #94a3b8;
}

/* List styling */
.glass-card ul{
    padding-left: 18px;
    color: #cbd5e1;
}

.glass-card ul li{
    margin-bottom: 6px;
}

/* Divider */
.glass-card hr{
    border-color: rgba(255,255,255,0.1);
    margin: 20px 0;
}

/* Responsive */
@media(max-width: 768px){
    .cta-title{
        font-size: 30px;
    }

    .glass-card{
        padding: 20px;
    }
}