/* CONTACT INFO SECTION */
.contact-section{
    padding:70px 0;
    background:#f8f9fb;
}

.contact-section .row{
    row-gap:30px;
}
/* Contact Hero */
.contact-hero{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:100px 0;
    overflow:hidden;
}

.contact-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.contact-hero .container{
    position:relative;
    z-index:2;
}

.contact-hero-content{
    text-align:center;
    color:#fff;
}

.contact-title{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}

.contact-subtitle{
    font-size:20px;
    line-height:1.8;
    margin-bottom:30px;
    color:rgba(255,255,255,.9);
}

.contact-breadcrumb{
    margin-bottom:25px;
}

.contact-breadcrumb .breadcrumb{
    background:none;
    padding:0;
    margin:0;
}

.contact-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.contact-breadcrumb .active{
    color:#ff4f9a;
}

.contact-hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.contact-hero-buttons .btn-primary{
    background:#ff4f9a;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.contact-hero-buttons .btn-outline-light{
    border:2px solid #fff;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
}
.contact-hero-buttons .btn-outline-light:hover{
	border:2px solid #fff;
    background:#fff;
	color: #888888 !important;
    padding:14px 35px;
    border-radius:50px;
}
.contact-hero-buttons .btn:hover{
    transform:translateY(-3px);
}
.contact-card .btn-primary, .contact-card .btn-primary:hover{
	color:#fff !important;
}
.contact-card .btn-success, .contact-card .btn-success:hover{
	color:#fff !important;
}
@media(max-width:768px){

    .contact-title{
        font-size:40px;
    }

    .contact-subtitle{
        font-size:16px;
    }

    .contact-hero{
        min-height:400px;
        padding:70px 0;
    }

}
.contact-card{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border:1px solid #eee;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:all .3s ease;
}

.contact-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(255,45,117,.15);
}

.contact-icon{
    width:70px;
    height:70px;
    margin:0 auto 15px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff2d75,#ff6ea9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
}

.contact-card h4{
    font-size:24px;
    margin-bottom:10px;
    color:#222;
    font-weight:700;
}

.contact-card p{
    margin:0;
    color:#666;
    line-height:1.6;
    font-size:15px;
}

.contact-card a{
    color:#555;
    text-decoration:none;
}

.contact-card a:hover{
    color:#ff2d75;
}

.contact-card.hours-card{
    min-height:180px;
}

@media(max-width:991px){
    .contact-card{
        min-height:200px;
    }
}

@media(max-width:767px){
    .contact-card{
        min-height:auto;
        padding:25px 15px;
    }

    .contact-card h4{
        font-size:20px;
    }

    .contact-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }
}