/* ================= FACILITIES PAGE ================= */

/* ---------- HERO ---------- */
.facilities-hero {
    background: var(--mecri-bg);
    padding: 80px 0;
    text-align: center;
}

.facilities-hero h1 {
    color: var(--mecri-blue);
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
    background: linear-gradient(
        135deg,
        var(--mecri-blue),
        var(--mecri-blue-light)
    );
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

/* shine effect */
.img-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-20deg);
}

/* label */
.img-placeholder::before {
    content: "Image Coming Soon";
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

/* sizes */
.img-placeholder.large {
    height: 320px;
}

.img-placeholder.small {
    height: 180px;
}

/* ---------- FACILITY SECTIONS ---------- */
.facility-block {
    margin-bottom: 60px;
}

.facility-block h3 {
    margin-bottom: 15px;
}

.facility-block p {
    color: var(--mecri-text-muted);
}

/* ---------- EQUIPMENT CARDS ---------- */
.equipment-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-6px);
}

.equipment-body {
    padding: 18px;
}

.equipment-body h5 {
    margin-bottom: 8px;
}

.equipment-body p {
    font-size: 0.9rem;
    color: var(--mecri-text-muted);
}

/* ---------- TRUE BRAND BLUE SECTION ---------- */
.mecri-blue {
    background-color: var(--mecri-blue) !important;
    color: #fff;
}

.mecri-blue p {
    color: rgba(255,255,255,0.85);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .img-placeholder.large {
        height: 220px;
    }

    .img-placeholder.small {
        height: 160px;
    }
}