.uptm-facilities {
    margin-top: 70px;
    padding-top: 20px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.fac-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .05em;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.fac-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.fac-intro {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 420px;
}

.fac-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.fac-tags span {
    background: #e9eef7;
    color: var(--navy);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
}

.fac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: #0d2456;
    color: white;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.fac-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .6),
            transparent);
    transform: skewX(-20deg);
}

.fac-btn:hover::before {
    animation: shine 1s ease;
}

.fac-right {
    margin-top: 30px;
}

.fac-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.fac-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.card-image img {
    height: 220px;
    object-fit: cover;
}

.fac-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
}

.fac-overlay span {
    font-size: 13px;
    opacity: .85;
}

.fac-overlay strong {
    font-size: 24px;
}

.card-stat {
    background: var(--navy);
    color: white;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-label {
    font-size: 14px;
    opacity: .8;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-stat p {
    font-size: 14px;
    opacity: .9;
}

@media(max-width:1024px) {

    .fac-title {
        font-size: 34px;
    }

}

@media(max-width:768px) {

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fac-cards {
        grid-template-columns: 1fr;
    }

    .fac-title {
        font-size: 30px;
    }

}

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.wa-float svg {
    width: 30px;
    height: 30px;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
