.top-content-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.business-info-text {
    flex: 1;
}

.business-main-pic {
    width: 50%;
}

.business-main-pic img {
    width: 100%;
    border-radius: 4px;
    background: #e0e0e0;
}

.section-title {
    position: relative;
    font-size: 3vh;
    font-weight: bold;
    margin-bottom: 3rem;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: #d81b60;
}

.has-icon::before {
    font-family: "FontAwesome";
    position: absolute;
    left: -20px;
    top: -15px;
    font-size: 50px;
    color: rgba(216, 27, 96, 0.12);
    z-index: -1;
    pointer-events: none;
}

.icon-calendar::before { content: "\f073"; } 
.icon-gallery::before { content: "\f03e"; }  
.icon-map::before { content: "\f278"; }      

.contact-bar-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 25px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.contact-item {
    text-align: center;
    flex: 1;
    border-left: 1px solid #eee;
}

.contact-item:last-child { 
    border-left: none;
}

.contact-item a {
    text-decoration: underline;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.icon-circle i {
    color: #d81b60;
    font-size: 25px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
}


.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #e0e0e0;
    border-radius: 2px;
}

.gallery-item {
    padding: 0 10px;
    outline: none;
}

.gallery-item img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.slick-prev:before, .slick-next:before {
    color: #d81b60; 
    font-size: 25px;
}

#map {
    border-radius: 4px;
    margin-top: 15px;
    z-index: 1;
}

@media (max-width: 768px) {
    .top-content-wrapper {
        flex-direction: column-reverse;
    }
    .business-main-pic {
        width: 100%;
    }
    .contact-bar-card {
        flex-direction: column;
        gap: 20px;
    }
    .contact-item {
        border-left: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .contact-item:last-child {
        border-bottom: none;
    }
}

.section-title.has-icon {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: bold;
}

.section-title.has-icon::before {
    position: absolute;
    right: -25px;
    top: -10px;
    font-size: 30px;
    color: rgb(216 27 96 / 19%);
    z-index: -1;
    pointer-events: none;
    padding-top: 8px;
}
.icon-calendar::before {
    content: "\f073"; 
}

.icon-gallery::before {
    content: "\f03e"; 
}

.icon-map::before {
    content: "\f278"; 
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: #d81b60;
}