#hero_grid_wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.hero_grid_container {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.hero_grid_item {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .hero_grid_item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .hero_grid_item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.hero_grid_image_bg {
    width: 100%;
    padding-bottom: 125%;
    /* 4:5 Aspect Ratio */
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero_grid_item:hover .hero_grid_image_bg {
    transform: scale(1.05);
}

.hero_grid_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 20px;
    z-index: 3;
    pointer-events: none;
}

.hero_grid_title {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero_grid_item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.hero_grid_item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.hero_grid_item:hover::after {
    background: rgba(0, 0, 0, 0.25);
}

/* Top bar contact info styling */
.top_contact_info {
    font-family: 'PT Sans', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top_contact_info span {
    margin-left: 20px;
    margin-right: 0 !important;
}

.top_contact_info a {
    color: #222221 !important;
    transition: color 0.3s ease;
}

.top_contact_info a:hover {
    color: #000 !important;
}

.top_contact_info i {
    margin-right: 8px !important;
    color: #222221 !important;
}

@media screen and (max-width: 960px) {
    .top_contact_info span {
        display: block;
        margin-left: 0;
        line-height: normal;
        margin-bottom: 5px;
    }
}