/* ===== BRANCH SECTION ===== */
.branch-section {
    padding: clamp(20px, 4vw, 50px) 0;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

/* ===== BRANCH CARD ===== */
.branch-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
    

/* Text */
.branch-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.branch-location {
    color: #666;
    font-size: 0.9rem;
}

