/* =====================================
   GIFT SHOP MARKETING SOLUTIONS
   Premium Emotional Conversion Theme
===================================== */

.cta-section{
    padding: 80px 0;
    background: radial-gradient(circle at top, #1f2937 0%, #0b1220 100%);
    color: #fff;
}

/* Title */
.cta-title{
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.cta-subtitle{
    font-size: 16px;
    color: #cbd5e1;
}

/* Glass Card */
.glass-card{
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.glass-card:hover{
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.4);
}

/* Headings */
.glass-card h3{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.glass-card p{
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Highlight bullets */
.glass-card ul{
    padding-left: 18px;
    margin-top: 10px;
}

.glass-card ul li{
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 6px;
}

/* Buttons */
.custom-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    margin-top: 12px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* CTA colors (gift theme = warm + premium) */
.btn-contact{
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.btn-contact:hover{
    transform: scale(1.03);
    background: linear-gradient(135deg, #d97706, #b45309);
}

.btn-call{
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

.btn-call:hover{
    transform: scale(1.03);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-chat{
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.btn-chat:hover{
    transform: scale(1.03);
    background: linear-gradient(135deg, #059669, #047857);
}

/* Stats section */
.glass-card h4{
    font-size: 26px;
    font-weight: 700;
    color: #fbbf24;
}

.glass-card .col-6 p{
    font-size: 13px;
    color: #94a3b8;
}

/* Divider */
.glass-card hr{
    border-color: rgba(255,255,255,0.12);
    margin: 18px 0;
}

/* Emoji/industry text */
.glass-card p br{
    line-height: 1.8;
}

/* Hover glow effect */
.glass-card:hover{
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

/* Responsive */
@media(max-width: 768px){
    .cta-title{
        font-size: 30px;
    }

    .glass-card{
        padding: 20px;
    }
}