/* ================================
   REAL ESTATE MARKETING SECTION
   PREMIUM CONVERSION STYLE
================================ */

.cta-section{
    padding: 90px 0;
    background: radial-gradient(circle at top, #0f172a, #020617);
    position: relative;
    overflow: hidden;
}

/* soft animated glow background */
.cta-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background: rgba(59,130,246,0.25);
    filter: blur(120px);
    top:-200px;
    left:-150px;
    border-radius:50%;
}

.cta-title{
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.cta-subtitle{
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 0;
}

/* glass effect card */
.glass-card{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 40px;
    color: #fff;
    transition: 0.3s ease;
    height: 100%;
}

.glass-card:hover{
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.4);
}

/* headings */
.glass-card h3{
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.glass-card p{
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA buttons */
.custom-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 500;
    margin-top: 12px;
    width: 100%;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

/* Email */
.btn-contact{
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
}

/* Call */
.btn-call{
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

/* WhatsApp */
.btn-chat{
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.custom-btn:hover{
    transform: scale(1.03);
    opacity: 0.95;
}

/* social icons */
.fa-stack{
    transition: 0.3s ease;
}

.fa-stack:hover{
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* RESPONSIVE */
@media (max-width: 768px){
    .cta-title{
        font-size: 2.2rem;
    }

    .glass-card{
        padding: 25px;
    }
}