:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-4e7b3d9 */.contact-section{
    position:relative;
    overflow:hidden;
    padding:100px 20px;
    background:linear-gradient(
        135deg,
        #fafafa 0%,
        #f3f4f6 50%,
        #e5e7eb 100%
    );
}

.contact-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.contact-header{
    text-align:center;
    margin-bottom:60px;
}

.contact-badge{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:10px 18px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.contact-header h2{
    font-size:52px;
    color:#111827;
    margin-bottom:15px;
}

.contact-header h2 span{
    color:#2563eb;
}

.contact-header p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    font-size:18px;
    line-height:1.7;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-card,
.map-card{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(15px);
    border-radius:24px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.icon{
    width:55px;
    height:55px;
    background:#eff6ff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-item h4{
    margin-bottom:6px;
    color:#111827;
}

.contact-item a{
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

.contact-item p{
    color:#6b7280;
    line-height:1.8;
}

.contact-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.contact-btn{
    text-decoration:none;
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.whatsapp-btn{
    background:#22c55e;
    color:#fff;
}

.call-btn{
    background:#2563eb;
    color:#fff;
}

.contact-btn:hover{
    transform:translateY(-3px);
}

.map-card iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:none;
    border-radius:18px;
}

.contact-bubble{
    position:absolute;
    border-radius:50%;
    background:rgba(37,99,235,.06);
}

.bubble1{
    width:280px;
    height:280px;
    left:-80px;
    top:-80px;
    animation:floatBubble 8s infinite ease-in-out;
}

.bubble2{
    width:220px;
    height:220px;
    right:-50px;
    bottom:-50px;
    animation:floatBubble 10s infinite ease-in-out;
}

@keyframes floatBubble{
    50%{
        transform:translateY(-20px);
    }
}

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-header h2{
        font-size:38px;
    }

}

@media(max-width:576px){

    .contact-header h2{
        font-size:30px;
    }

    .contact-card,
    .map-card{
        padding:22px;
    }

    .contact-buttons{
        flex-direction:column;
    }

}/* End custom CSS */